我想要打印到PDF的一些數據集。任何人都可以告訴我,如何將最後的4個proc print
語句合併到單個頁面上的2 x 2中,而將第一個語句留在自己的頁面上(就像現在這樣)?sas ods列 - 使「日記樣式」文件
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;
感謝
JT
尺寸爲2 x 2的測量是什麼? –
什麼都沒有具體 - 只要他們在頁面上。這些打印出來的數據集不會很大,我也想包含一些文本。 – user1624577