I've got a report document that consists of daily and weekly reports. Each week gets its corresponding shorthanded five days report on one page and a more detailed full week report on the second page. So it's two pages for each week. Each list of five days and each full week report gets a signature line in its footer. So if there are only one paged week reports there will be a signature line on every page but the title page (title page without headers and footers actually works like a charm).
Each week is started by a \newpage command and there is a \newpage between the daily and the full week report. So it looks somehow like this:
[titlepage]
[
- day 1 | lorem ipsum
- day 2 | lorem ipsum
- day 3 | lorem ipsum
- day 4 | lorem ipsum
- day 5 | lorem ipsum
_______________
signature #pageno
\newpage
]
[
full week lorem ipsum
_______________
signature #pageno
\newpage
]
Now, on a week report that does not fit on a single page I'd like to have the signature line only on the last page of the detailed week report. That is, I'd like to suppress the signature line on every page that does not end with \newpage, i.e. that is automatically wrapped because of its content being to long.
Any advice would be greatly appreciated.
\pagestyle{empty}or\pagestyle{plain}generally so the footer isn't used on the automatic pages then on the forced pages you can use\thispagestyle{fancy}or whatever page style you are using to get the page style required. As always it would be much easier to answer (and test the code) if you supplied a full small working example in the question. – David Carlisle Nov 22 '12 at 22:23