dhap
April 23rd, 2008, 04:26 AM
I used alphabatical, roman and arabic page numbering in my thesis. The roman and arabic page numbering surprisingly starts from a left side page (i.e., an even page). I mean, page 2 of the document is called roman-i and page 4 is called arabic-1.
The beginning of thesis looks like this (document class is report).
\begin{document}
\pagenumbering{alph}
\input{Title}
%To add a blank page without header or footer
\newpage
\thispagestyle{empty}
\mbox{}
\pagenumbering{roman}
\include{abstract}
\tableofcontents
\listoffigures
\cleardoublepage
\pagenumbering{arabic}
\include{Introduction}
.
.
.
\include{conclusion}
\end{document}
The beginning of thesis looks like this (document class is report).
\begin{document}
\pagenumbering{alph}
\input{Title}
%To add a blank page without header or footer
\newpage
\thispagestyle{empty}
\mbox{}
\pagenumbering{roman}
\include{abstract}
\tableofcontents
\listoffigures
\cleardoublepage
\pagenumbering{arabic}
\include{Introduction}
.
.
.
\include{conclusion}
\end{document}