I'm currently experiencing an odd pagenumbering problem. My document begins with a title page with 'alph' numbering (not displayed in document), and followed by contents, list of figures and list of tables which should have roman numeral numbering. From the Introduction onwards page numbering should be numeric. My problem is that the final page of the list of tables has the page number 1, and the first page of the introduction is page number 2, as opposed to vi and 1. The transition from the alph to the roman numbering is fine howvever.
The section in question of my header is shown below, does anyone have any idea what I can change to get the first page of the introduction reading 1 instead of 2!?
Code: Select all
\pagenumbering{alph}
\input{./title.tex}
\pagenumbering{roman}
\setcounter{page}{1}
\begin{abstract}
Abstract inserted here
\end{abstract}
\tableofcontents
\listoffigures
\listoftables
\pagenumbering{arabic}
\setcounter{page}{1}
\fancyfoot[LE,RO]{\footnotesize{\textsl{Page \thepage\ of \pageref{lastpageofdoc}}}}
\input{Introduction}
John