Epson LX-80 User Manual - Page 45

Near Letter Quality Mode, WIDTH LPRINT 255

Page 45 highlights

In fact, if you need even more than the 132 characters per line that compressed gives you, you can combine elite and compressed for a mode we call compressed elite. It is not really another pitch, because the size of the characters is the same as in the compressed mode; only the space between the characters is reduced. You can see this mode, which allows 160 characters to fit on a line, if you replace line 30 in your last program with this line: 30 LPRINT CHR$(15); With this addition, the program turns on compressed but doesn't turn off elite, giving you the printout below: ~~DEF~~]Jr~#M~~i~~~~'i~~'~, I."- &&f$l If your printout is different, you may need a WIDTH statement such as the one below: 5 WIDTH LPRINT 255 The format for your system will probably be different. Consult your BASIC manual. Near Letter Quality Mode The examples so far in this chapter are in the draft mode, and you have already learned how to turn on the NLQ mode with SelecType, but you can also see the NLQ mode with the following program: 10 LPRINT CHRrG(27) "x"CHR$(l); 20 FOR X=65 TO 105 30 LPRINT CHR$(X); 40 NEXT X: LPRINT Note that you use a lowercase x, not a capital X, in line 10. Because of the high resolution of the NLQ mode, it prints only in pica, not in elite or compressed. 39

  • 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

In fact, if you need even more than the 132 characters per line that
compressed gives you, you can combine elite and compressed for a
mode we call compressed elite. It is not really another pitch, because
the size of the characters is the same as in the compressed mode; only
the space between the characters is reduced. You can see this mode,
which allows 160 characters to fit on a line, if you replace line 30 in
your last program with this line:
30 LPRINT CHR$(15);
With this addition, the program turns on compressed but doesn’t
turn off elite, giving you the printout below:
~~DEF~~]Jr~#M~~i~~~~‘i~~‘~,
I.“-
&&f$l
If your printout is different, you may need a WIDTH statement
such as the one below:
5 WIDTH LPRINT 255
The format for your system will probably be different. Consult
your BASIC manual.
Near Letter Quality Mode
The examples so far in this chapter are in the draft mode, and you
have already learned how to turn on the NLQ mode with SelecType,
but you can also see the NLQ mode with the following program:
10
LPRINT
CHRrG(27)
“x”CHR$(l);
20
FOR
X=65
TO
105
30
LPRINT
CHR$(X);
40
NEXT
X:
LPRINT
Note that you use a lowercase x, not a capital X, in line 10. Because
of the high resolution of the NLQ mode, it prints only in pica, not in
elite or compressed.
39