何回も忘れてしまうので、自分の備忘録として書きます。
rtfやpdfに出力するときのページ縦横設定のオプションです。
portraitとかlandscapeとかいわれてもピンとこないです。hとかvでいいのに。
【縦ページ設定】
options orientation=portrait;
ods pdf;
proc gslide;
note h = 5
j = c c = red 'ページ設定 縦は'
j = c c = red 'orientation=portrait'
;
run;
quit;
ods pdf close;
【横ページ設定】
options orientation=landscape;
ods pdf;
proc gslide;
note h = 5
j = c c = red 'ページ設定 横は'
j = c c = red 'orientation=landscape'
;
run;
quit;
ods pdf close;
0 件のコメント:
コメントを投稿