|
PageFooters
PageFooters is an option for notebooks that determines the text to be inserted at the bottom of a page when it is printed.
This option is specified in the form of a compound list, PageFooters {{ll, lc, lr},{rl, rc, rr}} where {ll, lc, lr} specifies the left, center, and right footers respectively for the left pages and {rl, rc, rr} specifies the left, center, and right footers respectively for the right pages.
Setting any of these items to a string causes a line of text to be added as a footer. The default setting for all six items is None.
To add the page number at the bottom of each page, set any of the footer items to Cell[TextData[{CounterBox["Page"]}],"PageNumber"]
To add the file name at the bottom of each page, set any of the footer items to Cell[TextData[{ValueBox["FileName"]}],"Footer"].
Footers can also be specified using the dialog box accessed from the File Printing Settings Headers and Footers... menu item.
|