I'm using roman page numbers in my introduction section, but for the remainder of the document I use arabic numbers, and this custom footer:
\cfoot{\normalsize{\thepage~/~\pageref{LastPage}}}
This leads to ugliness like:
i/16
in the introduction.
How can I specify a different footer for the introduction?

\renewcommand{\thepage}{\arabic{page}}(for arabic numbering) and\renewcommand{\thepage}{\roman{page}}(for Roman numbering), and your footer should follow suit. So, use the former at the start of your introduction and the latter at the start of whatever follows the introduction. – Werner May 14 '12 at 20:44\pagenumbering{roman}to switch the\thepagecommand between roman and arabic, and that works fine: the problem is the rest of the footer --- in the introduction I don't want the/ Npart of my3 / Npage numbering. – James May 14 '12 at 21:04