1

I am writing a thesis using the report class. I want to have up until the introduction in Roman numberals, This is fine and I got it to work using previous questions. However, I am having trouble getting the arabic numbering to start at page 1 on the introduction. If I put \include{tex/Introduction}\pagenumbering{arabic} the introduction starts on page X while if I use \pagenumbering{arabic}\include{tex/Introduction} the introduction starts on page 2. How do I get the introduction to start on page 1?

Fungie
  • 111

1 Answers1

1

I see no problem with the following:

\begin{filecontents}{fungie-intro.tex}
\chapter*{Introduction}
\addcontentsline{toc}{chapter}{Introduction}
\lipsum
\end{filecontents}

\documentclass{report}
\usepackage{lipsum} % just for the example

\begin{document}

\pagenumbering{roman}

\tableofcontents

\listoftables

\listoffigures

\cleardoublepage

\pagenumbering{arabic}

\include{fungie-intro}

\end{document}

You probably missed \cleardoublepage before \pagenumbering{arabic}.

enter image description here

egreg
  • 1,121,712