Epson LX-90 User Manual - Parallel 8620 PIC for LX-90 - Page 33

Superscript and Subscript, LPRINT The formula for water is H, LPRINT 0.

Page 33 highlights

In this program, you can use any number you calculate by using 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. The list below shows the results of trying to combine emphasized with either or both of these modes. Emphasized + compressed + emphasized Emphasized + elite + elite Emphasized + compressed + elite 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 underlined printing, for example, you need only one ESCape code instead of three. Indeed, Master Select is such a powerful feature that it may occasionally be more powerful than you want it to be. Because it controls seven different modes, a Master Select code will cancel any of those seven that are not selected. For example, suppose that you have a page in elite and want part of it in double-strike. If you use ESCape "I" 16 to turn on double-strike, your LX-90 will begin printing in double-strike pica instead of double-strike elite because the 16 code does not include elite. Use 17 for double-strike elite. Superscript and Subscript Your LX-90 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 "SO" turns on superscript and ESCape "Sl" 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);"Sl";"2";CHR$(27);"T"; 30 LPRINT "0." 40 LPRINT CHR$(27);"@" T h e f o r m u l a f o r w a t e r i s H2 O 30

  • 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

In this program, you can use any number you calculate by using 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. The
list below shows the results of trying to combine emphasized with
either or both of these modes.
Emphasized + compressed + emphasized
Emphasized + elite + elite
Emphasized + compressed + elite
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 underlined printing, for example, you
need only one ESCape code instead of three.
Indeed, Master Select is such a powerful feature that it may occa-
sionally be more powerful than you want it to be. Because it controls
seven different modes, a Master Select code will cancel any of those
seven that are not selected. For example, suppose that you have a page
in elite and want part of it in double-strike. If you use ESCape "I"
16
to
turn on double-strike, your LX-90 will begin printing in double-strike
pica instead of double-strike elite because the
16
code does not include
elite. Use 17 for double-strike elite.
Superscript and Subscript
Your LX-90 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
“SO”
turns on superscript and ESCape
"Sl"
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);"Sl";"2";CHR$(27);"T";
30
LPRINT "0."
40
LPRINT CHR$(27);"@"
The formula for water is H
2
O
30