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?
Asked
Active
Viewed 1,387 times
1
Fungie
- 111
1 Answers
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}.
egreg
- 1,121,712

\setcounter{page}{1}? – ebosi Jun 24 '16 at 11:52\pagenumberingdoes always reset the page counter!\includewill always use a new page first. Use\pagenumbering{arabic}inside thetex/Introductionfile – Jun 24 '16 at 11:56\pagenumbering{arabic}\addtocounterpage{-1}\include{tex/Introduction}. – Bernard Jun 24 '16 at 12:04\pagenumberinginsidetex/Introductionworked. Thanks. – Fungie Jun 24 '16 at 12:24reportis chosen in a case like this rather thanbook. there are very few differences, andbookhas the benefit of defining\frontmatter,\mainmatter, and\backmatter, which makes things like this so much simpler. – barbara beeton Jun 24 '16 at 13:38