如何通过 ODS 选项以 pdf 格式排列图表
how to arrange the plots in pdf via ODS options
假设我有一个名为 %mplot
的宏,每次调用它都会生成 2 个图。
我想在第一页放置 2 个绘图,然后在第二页放置 6 个绘图,然后在最后一页放置 4 个绘图。 (我测试过一页最多6个图)
我猜代码应该是这样的
ods ... ;
%mplot(t1);
%mplot(t2);
ods ...;
%mplot(t3);
%mplot(t4);
%mplot(t5);
%mplot(t6);
%mplot(t7);
%mplot(t8);;
ods ...;
%mplot(t9);
%mplot(t10);
查看 ODS PDF STARTPAGE 选项:
ods pdf startpage=no;
假设我有一个名为 %mplot
的宏,每次调用它都会生成 2 个图。
我想在第一页放置 2 个绘图,然后在第二页放置 6 个绘图,然后在最后一页放置 4 个绘图。 (我测试过一页最多6个图)
我猜代码应该是这样的
ods ... ;
%mplot(t1);
%mplot(t2);
ods ...;
%mplot(t3);
%mplot(t4);
%mplot(t5);
%mplot(t6);
%mplot(t7);
%mplot(t8);;
ods ...;
%mplot(t9);
%mplot(t10);
查看 ODS PDF STARTPAGE 选项:
ods pdf startpage=no;