PDA

View Full Version : latex page numbering


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}

xadder
April 24th, 2008, 02:22 AM
I can't remember the details of why, but try setting the numbering style after the new sections start, e.g.:


\documentclass[]{report}
\begin{document}
\pagenumbering{alph}
%\input{Title}
TITLE IS HERE, ALPHABETICAL
%To add a blank page without header or footer
\newpage
\thispagestyle{empty}
\mbox{}
\include{abstract}
%
ABSCTRACT SHOULD HAVE ROMAN
\pagenumbering{roman}
\tableofcontents
\listoffigures
\cleardoublepage
\include{Introduction}
\pagenumbering{arabic}

TEXT IS HERE, ARABIC

BLA BLA
%\include{conclusion}
\end{document}

dhap
April 25th, 2008, 05:28 AM
Thanks, I was playing around my code and found that this one works:


\documentclass[a4paper, 12pt]{book}
\begin{document}

\pagenumbering{alph}
\input{Title}
\cleardoublepage
\thispagestyle{empty}


\pagenumbering{roman}
\include{abstract}
\tableofcontents
\listoffigures
\cleardoublepage


\pagenumbering{arabic}
\include{Introduction}

BLAH BLAH

\end{document}