Epson LQ-1000 User Manual - Page 73

Superscript and Subscript, International Characters, formula for water is

Page 73 highlights

Superscript and subscript Your LQ can also print superscripts and subscripts, which you can use for mathematical formulas, footnotes, and other items that require numbers or letters above or below the usual print line. ESCape "S0" turns on superscript and ESCape "S1" turns on subscript. ESCape "T" turns off either one. You can see them in action with the program below : 10 LPRINT "The formula for water is H"; 20 LPRINT CHR$(27)"S1";"2"CHR$(27)"T"; 30 LPRINT "0." 40 LPRINT CHR$(27)"@" The formula for water is H O . 2 Now that you see how to use the ESCape sequences for superscript and subscript, you can devise your own examples. International characters As you know, languages other than English require a few extra characters. The LQ has provided for printing in many languages by having 13 sets of international characters in its ROM (Read Only Memory). In order to print any of these characters, you first select one of the following character sets and then use the individual characters within that set. 0 USA 1 France 2 Germany 3 United Kingdom 4 Denmark I 5 Sweden 6 Italy 7 Spain 8 Japan 9 Norway 10 Denmark II 11 Spain II 12 Latin America You can select any character set with an ESCape code. In BASIC it has the following format: LPRINT CHR$(27)"R"CHR$(n) 5-15

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185

Superscript and subscript
Your LQ can also print superscripts and subscripts, which you can
use for mathematical formulas, footnotes, and other items that
require numbers or letters above or below the usual print line. ESCape
“S0” turns on superscript and ESCape
"S1"
turns on subscript. ESCape
“T” turns off either one. You can see them in action with the program
below :
10 LPRINT "The formula for water is H";
20 LPRINT CHR$(27)"S1";"2"CHR$(27)"T";
30
LPRINT "0."
40
LPRINT CHR$(27)"@"
The
formula for water is
H
2
O.
Now that you see how to use the ESCape sequences for superscript
and subscript, you can devise your own examples.
International characters
As you know, languages other than English require a few extra
characters. The LQ has provided for printing in many languages by
having
13
sets of international characters in its ROM (Read Only
Memory).
In order to print any of these characters, you first select one of the
following character sets and then use the individual characters within
that set.
0
USA
7
Spain
1
France
8
Japan
2
Germany
9
Norway
3
United Kingdom
10
Denmark II
4
Denmark I
11
Spain II
5
Sweden
12
Latin America
6
Italy
You can select any character set with an ESCape code. In BASIC it
has the following format:
LPRINT CHR$(27)"R"CHR$(n)
5-15