October 2009
Beginner
636 pages
13h 35m
English
Setting custom page margins is even easier in ODS PRINTER output than it was for RTF output. All you have to do is adjust the settings for the SAS system options for margins: TOPMARGIN=, BOTTOMMARGIN=, LEFTMARGIN=, and RIGHTMARGIN=. For example, for smaller margins, use the following:
OPTIONS LEFTMARGIN=.25in RIGHTMARGIN=.25in
TOPMARGIN=.25in BOTTOMMARGIN=.25in;
With the preceding options and OPTION NOCENTER also in effect, a PROC PRINT of data set GALLERY looks as shown in Figure 5.35. Notice that the top and left margins are now 0.25 inches. The right margin looks wider, but that is because the table is not wide enough to use the entire page width. These settings enable you to maximize the available space on a page. ...
Read now
Unlock full access