/* The following SAS program may be used to create a driver (LJIVPSB) that will produce graphs on 11 x 17 inch (B-size) paper on the HP LaserJet 4V and 4MV printers. Note that the driver supports the PostScript language. It is assumed that the new driver entry will be stored in the SASHELP.DEVICES catalog. If you do not have update access to this catalog, create the driver entry in your own catalog, GDEVICE0.DEVICES. You may do this by uncommenting the LIBNAME statement below and changing SASHELP to GDEVICE0 on the PROC GDEVICE statement. NOTE: THIS CODE IS FOR USE WITH RELEASE 6.08 AND ABOVE OF SAS/GRAPH SOFTWARE. */ *libname gdevice0 'YOUR.LIBRARY.NAME'; proc gdevice c=SASHELP.devices nofs; copy q800plus from=sashelp.devices newname=ljivpsb; mod ljivpsb des='HP LaserJet 4MV-PS (B-size) (600 DPI)' xmax=11 ymax=17 xpixels=6600 ypixels=10200 hsize=10 vsize=16 horigin=0.5 vorigin=0.5 prompt=0 fillinc=3 gepilog='04'x prows=129 pcols=100 gprolog= '252150532D41646F62652D322E300A'x '3C3C2F44656665727265644D6564696153656C656374696F6E20747275650A'x '2F4D65646961506F736974696F6E20330A'x '2F5061676553697A65205B37393220313232345D0A'x '3E3E20736574706167656465766963650A'x charrec=( 1,137,110,'/Courier', 'Y', 2,137,110,'/Courier-Oblique', 'Y', 3,137,110,'/Courier-Bold', 'Y', 4,137,110,'/Courier-BoldOblique', 'Y', 5,137,110,'/Times-Roman', 'Y', 6,137,110,'/Times-Italic', 'Y', 7,137,110,'/Times-Bold', 'Y', 8,137,110,'/Times-BoldItalic', 'Y', 9,137,110,'/Helvetica', 'Y', 10,137,110,'/Helvetica-Oblique', 'Y', 11,137,110,'/Helvetica-Bold', 'Y', 12,137,110,'/Helvetica-BoldOblique', 'Y', 13,137,110,'/Symbol', 'Y', 14,137,110,'/AvantGarde-Book', 'Y', 15,137,110,'/AvantGarde-BookOblique', 'Y', 16,137,110,'/AvantGarde-Demi', 'Y', 17,137,110,'/AvantGarde-DemiOblique', 'Y', 18,137,110,'/Bookman-Demi', 'Y', 19,137,110,'/Bookman-DemiItalic', 'Y', 20,137,110,'/Bookman-Light', 'Y', 21,137,110,'/Bookman-LightItalic', 'Y', 22,137,110,'/Helvetica-Narrow', 'Y', 23,137,110,'/Helvetica-Narrow-Bold', 'Y', 24,137,110,'/Helvetica-Narrow-BoldOblique', 'Y', 25,137,110,'/Helvetica-Narrow-Oblique', 'Y', 26,137,110,'/NewCenturySchlbk-Roman', 'Y', 27,137,110,'/NewCenturySchlbk-Bold', 'Y', 28,137,110,'/NewCenturySchlbk-Italic', 'Y', 29,137,110,'/NewCenturySchlbk-BoldItalic', 'Y', 30,137,110,'/Palatino-Roman', 'Y', 31,137,110,'/Palatino-Bold', 'Y', 32,137,110,'/Palatino-Italic', 'Y', 33,137,110,'/Palatino-BoldItalic', 'Y', 34,137,110,'/ZapfChancery-MediumItalic', 'Y', 35,137,110,'/ZapfDingbats', 'Y'); run; quit;