Epson FX-286 User Manual - Page 59

Pica Printing, Changing Widths, FOR X=65 TO 105, LPRINT CHR$X, NEXT X: LPRINT: LPRINT, FX-286

Page 59 highlights

Pica Printing The first exercise is a simple three-line program to print a sample line of characters in pica, the standard width. Enter this program: 40 FOR X=65 TO 105 50 LPRINT CHR$(X); 60 NEXT X: LPRINT: LPRINT Now run the program. You should get the results you see below, 10 pica characters per inch. ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_'abcdefghi Changing Widths Now you can try other widths. As explained in Chapter 4, the FX-286 uses the same pattern of dots for pica, elite, and condensed characters, but it changes the horizontal spaces between the dots to produce the three different widths. In elite mode there are 12 characters per inch, and in condensed there are 17.16. The FX-286 prints in elite when it receives the ESCape 'WI" command (Escape ":" in Proprinter mode) and prints in con- densed when it receives the ASCII 15 command. Print a sample line of elite characters by adding the following line to your previous program. (Simply type this line and press RETURN; you do not need to retype the other lines.) 20 LPRINT CHR$(27)"M"; or 20 LPRINT CHR$(27)":"; This line uses the command for elite, ESCape "M" (or ":"), to turn on that mode. When you run the program, your printout should look like the one below. ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_'abcdefghi 5-3

  • 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
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223

Pica Printing
The first exercise is a simple three-line program to print a sample
line of characters in pica, the standard width. Enter this program:
40
FOR X=65 TO 105
50 LPRINT CHR$(X);
60 NEXT X: LPRINT: LPRINT
Now run the program. You should get the results you see below, 10
pica characters per inch.
ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_'abcdefghi
Changing Widths
Now you can try other widths. As explained in Chapter
4,
the
FX-286
uses the same pattern of dots for pica, elite, and condensed
characters, but it changes the horizontal spaces between the dots to
produce the three different widths.
In elite mode there are
12
characters per inch, and in condensed
there
are
17.16.
The
FX-286
prints in elite when it receives the
ESCape
‘WI” command (Escape ":" in Proprinter mode) and prints in
con-
densed when it receives the ASCII
15
command. Print a sample line of
elite characters by adding the following line to your previous pro-
gram. (Simply type this line and press
RETURN; you
do not need to
retype
the
other lines.)
20 LPRINT CHR$(27)"M";
or
20 LPRINT CHR$(27)":";
This line uses the command for elite, ESCape “M” (or “:“), to turn
on that mode.
When
you run the program, your printout should look
like the one below.
ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_'abcdefghi
5-3