18'Demo near letter quality character set.
24)LPRINT CHR$(27) "B" CHR$(4) ; 'Select NLQ.
30 LPRINT "This line shows NEAR LETTER QUALITY!" 40 LPRINT CHRS(27) "B" CHR$(5) ; 'Select draft. 50 LPRINT "This line shows standard Drint."
In this program, line 20 selects NLQ characters with the
<ESC > “B” CHR$(4) command. Line 30 prints a sample before line40 switchs
This line shows NEAR LETTER QUALITY! This, 1ine shows
If you are using with the IBM mode, change the following lines to the program given above.
20 LPRINT CHR$(27) "4" ; 'Select NLQ.
44)LPRINT CHR$(27) "5" ; 'Select draft.
Table
Near letter quality commands
H Italic printing
Italic letters are letters that are slanted to the right.
| Table | |
| Italic commands | |
Function | Mode | Control code |
ItalicON | STAR | <ESC > “4” |
| IBM | < ESC > “I”1 |
ItalicOFF | STAR | < ESC > “5” |
| IBM | < ESC > “I”0 |
Use this program with STAR mode to see italic characters:
36