我想在每页的右下角有一个格式为“X OF Y PAGES”的页码。我为 pdf 结果尝试了以下代码,但它只是从字面上显示“Page *{thispage} of &num”。有人能帮忙吗?谢谢!
* create the file with the number of pages */
ods results;
ods pdf file="c:\temp\pagenumb.pdf" compress=0;
footnote j=r "Page *{thispage} of &num";
%pdf_code;
ods pdf close;