October 2009
Beginner
636 pages
13h 35m
English
In an ODS RTF example, we defined an ODS escape character (ODS ESCAPECHAR=) so that we could code a special sequence to insert page numbers into the document in the form "Page X of Y". This capability is also available when creating PDF output with ODS. The ESCAPECHAR functions to use with ODS PDF output are {thispage} for the "X" position and {lastpage} for the "Y" position. Each ESCAPECHAR function is enclosed in curly braces and preceded by the escape character. In the following code, the ODS escape character is set to the caret (^).
Consider the following set of FOOTNOTE statements:
ODS ESCAPECHAR='^'; ODS PDF FILE="Footnotes.pdf"; footnote justify=left 'Page ^{thispage} of ^{lastpage}'; footnote2 ...Read now
Unlock full access