The commands for changing the character pitch, font, and paper tray are HP PCL commands that need to be embedded in the text document from the UNIX workstation. The following PostScript code when downloaded to the LaserWriter 16/600 PS or LaserWriter Select 360 prints out a few pages of examples that provide the HP PCL escape sequences to obtain those samples:
%=========================================================
% Begin PostScript code
%
/LaserJetIII /ProcSet findresource
/FontReport get exec
%
% End PostScript code
%=========================================================
Note: Prior to downloading the HP PCL escape sequences, if the printer's interface (parallel, serial, or Ethernet) is set for PostScript then it must be put into PCL5 emulation by including the following PostScript at the beginning of the print job:
%=========================================================
% Begin PostScript code
%
currentfile /LaserJetIII statusdict /emulate get exec
%
% End PostScript code
%=========================================================
As provided in the example pages that will be printed, the font and pitch selections are changed with the following escape sequences:
.
PCL Command | What The PCL Command Does | Notes |
<esc>(s#T | typeface selection | # corresponds to 1 of 4 typefaces available |
<esc>(s1P | proportional spacing ON | must be enabled for certain typefaces to be printed |
<esc>(s#H | pitch selection | # is usually 10 or 16.66 which is built-in |
For Paper Tray Selection |
<esc>&l#h | to select a specific tray | l=lowercase L, and # corresponds to a number below |
0 | source current (default) |
1 | upper tray |
2 | manual feed |
3 | manual feed envelope |
4 | lower tray |
5 | middle tray |
6 | envelope feeder |
Note: <esc> is the escape character in all of the sequences. To enter <esc>, press the Ctrl-P keys followed by the Esc key. You must use an ASCII text editor like DOS EDIT. You cannot enter the <esc> character in some Windows-based editors like Notepad. |