I have the following in my top-level document:
Code: Select all
\documentclass[12pt]{book}
\usepackage[pdftex]{graphicx}
...
\begin{document}
\pagenumbering{roman}
\title{blah blah blah}
\date{December 2010}
\maketitle
\bibliographystyle{plainnat}
\tableofcontents
\listoffigures
\pagenumbering{arabic}
\setcounter{page}{1}
\include{Introduction}
...
The list of figures takes several pages, which start out with roman page numbers, until the last page of the list of figures, which has the arabic numeral 1! Thus, the first page of the introduction has arabic number 3!
I tried moving the lines
Code: Select all
\pagenumbering{arabic}
\setcounter{page}{1}
to the Introduction.tex file. It fixed that problem, but put page 1 of the Introduction on an even page, so that all the remaining pages had the binding on the outside of the page, instead of the inside where it should be.
Any help would be much appreciated.