“S” CHR$( l), and finally off in line 90. Again, everything prints
on one line because of the semicolons.
CHANGING THE PRINT PITCH
In “printer talk,” character width is called pitch. Normally,
SG-lo/15 prints 10 characters per inch. This is called pica pitch
because it’s the same spacing as a standard pica typewriter.
SG- lo/ 15 can also print 12 characters per inch. This is called
elite pitch because it is the same spacing as an elite typewriter.
Condensed print is approximately 17 characters per inch.
Condensed pitch allows you to get 136 columns of printing on
an 8 ‘/z inch page.
Proportional spacing provides an alternative to the block-style
output of a defined pitch. It moves its print head only as far as
each character needs. Thus, the print head moves further for “M”s
and “W”s than for “1”s and “i”s.
The table below shows four options of this command.
Table 5-5
Print Ditch commands
Pitch
Pica 1 Characters/inch Mode Control code
1 10 STAR < ESC > “B” CHR$(l)
or CHR!fX18)
IIBM I <ESC> -Y -1
Elite 12
Condensed 17
or CHR$( 18)
STAR <ESC> “B” CHR!$(2)
IBM < ESC > “M”
STAR < ESC > “B” CHR!$(3)
or CHR$(lS)
Proportional ON
Proportional OFF
IBM CHR$( 15)
STAR <ESC> “p” 1
IBM <ESC > “p” 1
STAR <ESC > “p” 0
I - I IBM I,<Esc> 99 0
Let’s see how these four pitches look. Try this program with
STAR mode:
1Q 'Demo all pitches.
24) LPRINT CHR$ (27) "B" CHR$(3) ; ‘Select condensed
pitch.
I 41