带报告的罗马和阿拉伯数字

带报告的罗马和阿拉伯数字

我正在使用报告类撰写论文。我想用罗马数字写到引言部分,这很好,我使用前面的问题让它工作了。但是,我无法让阿拉伯数字从引言的第 1 页开始。如果我把 \include{tex/Introduction}\pagenumbering{arabic}引言放在第 X 页,而如果我使用\pagenumbering{arabic}\include{tex/Introduction}引言,则从第 2 页开始。我如何让引言从第 1 页开始?

答案1

我认为以下内容没有问题:

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

\cleardoublepage之前可能错过了\pagenumbering{arabic}

在此处输入图片描述

相关内容