4

I want to use a "roman" page numbering in tableofcontents, listoffigures, listoftables and in the chapter called "simboli" and, then, restart the page numbering with "arabic" style in the following chapters.

I've used the following code

\begin{document}
\pagestyle{scrheadings}
\input{cap/title}
\newpage
\pagenumbering{Roman}
\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables
\newpage
\input{cap/Simboli}
\setcounter{table}{0}
\setcounter{equation}{0}
\setcounter{figure}{0}
\pagenumbering{arabic}
\input{cap/01}

The restult is that tableofcontents, listoffigures, listoftables are correctly numbered but the chapter "simboli" uses "arabic" numeration. A side-effect is that the first page of "cap/01" is the number "3" (but I can fix it).

Thanks.

egreg
  • 1,121,712

1 Answers1

2

Here's a suggested solution. The main idea is to insert \newpage -- \clearpage will work as well -- before \pagenumbering{arabic}.

\documentclass{scrreprt}
\pagestyle{scrheadings}
% ... remainder of preamble
\begin{document}
\pagenumbering{Roman}
\input{cap/title}
\newpage
\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables
\newpage
\input{cap/Simboli}

\newpage % <- this is new
\setcounter{table}{0}
\setcounter{equation}{0}
\setcounter{figure}{0}
\pagenumbering{arabic}
\input{cap/01}
% ... remainder of document
\end{document}
Mico
  • 506,678