
Character explanation and symbol description
lLower case “ l ”  Informations
 Informations
Sequence only applies for 9 needle printer
Sequence only applies for 24 needle printer
In the following you will find an example for a MTPL sequence with a Basic programming example:
Set to a form length of 72 lines:
| 
 | CSI | n | t | |
| 
 | 
 | 
 | with n=72 | 
 | 
| Transmission | ASCII | CSI | "72" | "t" | 
| 
 | hex. | 9B | 37 32 | 74 | 
| 
 | dec. | 155 | 55 50 | 116 | 
100 REM Sample for the CSI n t sequence in ASCII, 110 REM using formulars with 72 lines.
120 REM Please note, in 
140 LPRINT CHR$(155);"72";"t": REM mixed syntax;
150 REM set form length up to 72 lines
160 REM The same sequence written in hexadecimal syntax
170LPRINT CHR$(&H9B);CHR$(&H37);CHR$(&H32);CHR$(&H74);
180REM set form length up to 12 lines
190REM The same sequence written in decimal syntax
200LPRINT CHR$(155);CHR$(55);CHR$(50);CHR$(116);
210REM set form length up to 72 lines
