各ページの右下に「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;