In a arbitrarily LaTeX document, I would like to have the page number printed only if the number of pages is strictly greater than 1. (In a single-paged document, the page number should not be printed.)
I would like the number to be printed at the bottom of the page, centered (i.e., inside
\cfoot{}
form the 
How do I do this?
I am thinking of a construction like
Code: Select all
\if\count{\pagenumber}>1
\cfoot{\thepage}
\else
\cfoot{}
\fi
Thank you in advance!