Epson LX-80 User Manual - Page 54

INPUT, number, LPRINT, CHR$M, printing, u.ses, Master, Select, number;M, BASIC, see Appendix F.

Page 54 highlights

For any combination, just add up the values of each of the modes you want and use the total as the number after ESCape "!". For example, to calculate the code for expanded italic underlined pica, add the following numbers together: underline 128 italic 64 expanded 32 pica -4 224 To print this combination, therefore, you use ESCape "!" followed by the number 224. In BASIC the command is CHR$(27)"!" CHR$(224). To try this number or any other, enter and run this short program, which will ask you for a Master Select number and then give you a sample of printing using that code. Again, if you are using Applesoft BASIC, see Appendix F. 10 INPUT "Master Se1 ect number" ; M 20 LPRINT CHR$( 27) " ! "CHR$(M) 30 LPRINT "This sample of printing u.ses " 40 LPRINT "Master Select number";M 50 LPRINT CHR$( 27) "@" In this program, you can use any number you calculate with the formula above, but remember that emphasized can't combine with compressed or elite. If you try to combine emphasized with either of the two narrow pitches, you won't harm your printer; it will simply use a priority list in its memory to determine which mode to use. This priority list causes a combination of emphasized and elite to produce elite only, a combination of emphasized and compressed to produce emphasized only, and a combination of all three to produce compressed elite. Master Select is a powerful code that gives you an easy way to produce multiple combinations with a single command. To see double-strike emphasized italic printing, for example, you need only one ESCape code instead of three. 48

  • 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

For any combination, just add up the values of each of the modes
you want and use the total as the number after ESCape “!“. For
example, to calculate the code for expanded italic underlined pica, add
the following numbers together:
underline
italic
expanded
pica
128
64
32
-4
224
To print this combination, therefore, you use ESCape “!” followed
by the number 224. In BASIC the command is CHR$(27)“!”
CHR$(224).
To try this number or any other, enter and run this short program,
which will ask you for a Master Select number and then give you a
sample of printing using that code. Again, if you are using Applesoft
BASIC, see Appendix F.
10
INPUT
"Master
Se1
ect
number”
;
M
20
LPRINT
CHR$(
27)
!
“CHR$(M)
30
LPRINT
“This
sample
of
printing
u.ses
40
LPRINT
“Master
Select
number”;M
50
LPRINT
CHR$(
27)
“@”
In this program, you can use any number you calculate with the
formula above, but remember that emphasized can’t combine with
compressed or elite. If you try to combine emphasized with either of
the two narrow pitches, you won’t harm your printer; it will simply
use a priority list in its memory to determine which mode to use. This
priority list causes a combination of emphasized and elite to produce
elite only, a combination of emphasized and compressed to produce
emphasized only, and a combination of all three to produce com-
pressed elite.
Master Select is a powerful code that gives you an easy way to
produce multiple combinations with a single command. To see
double-strike emphasized italic printing, for example, you need only
one ESCape code instead of three.
48