SAS ods pdf 两行脚注

SAS ods pdf footnote on 2 lines

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

这是一个例子:

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:\sasdata\animals.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}";