* 참고 : http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002217095.htm#a003064891
http://support.sas.com/techsup/technote/ts659/ts659.html
NEVER : 페이지 나누기 적용 안함. 그래픽 프로시져는 보통 하나의 페이지를 사용하지만,
NEVER옵션 적용시 한페이지에 overprint(덧인쇄)가 된다.
NO : 각 프로시져의 시작시 페이지 나누기를 안함. 단지 페이지가 채워지거나, Startpage=NOW 지정할 경우 새 페이지 시작.
NOW : NOW옵션 적용시 바로 페이지 나누기 적용.
YES : 각 프로시져가 시작할 경우 페이지 나누기가 적용됨.
* ODS pdf file='c:\test.pdf' startpage=no;
ODS pdf file='c:\test.pdf' startpage=NEVER;
* ods pdf file="&sysver..pdf" notoc startpage=no;
goptions device=gif horigin=0 in vorigin=5 in hsize=4 in vsize=4 in;
proc print data=sashelp.class;
quit;
proc gchart data=sashelp.class;
format height 3.0;
vbar3d height;
run;
quit;
goptions horigin=4 in vorigin=5 in;
proc gchart data=sashelp.class;
format weight 3.0;
vbar3d weight;
run;
quit;
proc print data=sashelp.class;
quit;
ODS pdf close;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!