SAS ods pdf 脚注共 2 行



我想在pdf文件中输出SAS结果。在脚注中,我希望在页面的右下角有 2 行:

  • 文档研究
  • 第 1 页,共 10 页

下面是一个示例:

options nodate nonumber;
data work.animals;
    input name $ weight;
    datalines;
    monkey 20
    shark 500
    lion 200
    wolf 120
    buffalo 400
    ;
run;
ods pdf file = 'C:sasdataanimals.pdf';
ods escapechar= '!';
proc print data=work.animals;
    title 'Animals';
    footnote j = r 'Page !{thispage} of !{lastpage}';
run;
ods pdf close;
ods listing;

使用这个:

footnote j = r "Doc Research !{newline} Page !{thispage} of !{lastpage}";

相关内容

  • 没有找到相关文章

最新更新