页码样式

页码样式

我想在目录、图表列表、表格列表和名为“simboli”的章节中使用“罗马”页码,然后在后面的章节中重新使用“阿拉伯”样式进行页码编号。

我使用了以下代码

\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}

结果是目录、图表列表、表格列表的编号正确,但“simboli”一章使用“阿拉伯”编号。副作用是“cap/01”的第一页是数字“3”(但我可以修复它)。

谢谢。

答案1

以下是建议的解决方案。主要思想是在 之前插入\newpage--\clearpage也可以\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}

相关内容