我正在尝试将一些数据集打印到 PDF 中。谁能告诉我如何将最后 4 个proc print
语句放入单个页面上的 2 x 2 中,同时将第一个语句留在它自己的页面上(就像现在一样)?
title;
options nodate nonumber nocenter orientation=portrait spool;
ods pdf file="I:\ASR\201410\bio.pdf" color=yes style=fancyprinter;
ods pdf startpage=NEVER;
ods escapechar='';
ods pdf text='S={just=CENTER preimage="I:/asr/logo.png" posttext=""';
ods pdf text= "S={just=c font_weight=bold font_size=12pt font_face=Arial}Fall 2013 - Annual Statistical Report";
ods pdf text= "S={just=c font_weight=bold font_size=12pt font_face=Arial}Department of Biology";
proc print data=IntApps_AY_cnt_p noobs; TITLE "Applications"; run;
ods pdf startpage=now;
proc print data=enroll_cnts_np noobs; TITLE "New Student Enrollment"; run;
ods pdf startpage=now;
proc print data=enroll_cnts_p noobs; TITLE "Total Enrollment"; run;
ods pdf startpage=now;
proc print data=TuitionScholarships_cnt_p noobs; TITLE "Stipends"; run;
ods pdf startpage=now;
proc print data=asr_degs_cnts_p noobs; TITLE "Academic Year 2012-2013 Awarded Degrees"; run;
ods layout end;
ods all close;
谢谢
捷通