Here is the relevant (I think!) bit of my code:
Code: Select all
\documentclass{report}
\usepackage{fancyhdr}
\fancypagestyle{plain}{
\fancyhf[]{}
}
\begin{document}
\pagestyle{empty}
\include{MainApprovalSheet}
\include{Abstract}
\newpage
\pagenumbering{roman}
\tableofcontents
\listoffigures
\listoftables
\pagenumbering{arabic}
\pagestyle{fancyplain} %
\lhead{} \rhead{} \cfoot{\thepage}
\input{intro}
\input{other_brilliant_stuff :)}
\end{document}
I'd be most grateful for any advice. Thanks.