我正在使用 Overleaf for TeX 编辑器。我想从介绍,而是从 开始\listoftables
。我怎样才能继续\listoftables
用罗马数字计数并从简介处开始用阿拉伯数字计数?
这主要的流程如下:
\begin{document}
% new lengths for a harmonized width of the plots
\newlength{\plotwidth}
\setlength{\plotwidth}{0.7\columnwidth}
\newlength{\plotheight}
\setlength{\plotheight}{0.66\plotwidth}
\newlength{\semiwidth}
\setlength{\semiwidth}{0.35\columnwidth}
\newlength{\semiheight}
\setlength{\semiheight}{0.66\semiwidth}
% the titlepage
\pagenumbering{alph}
\pagestyle{empty}
\include{sections/titlepage}
% the preface
\pagenumbering{roman}
\pagestyle{plain}
\include{sections/abstract}
\include{sections/task}
\include{sections/declaration}
% the table of contents and the lists of figures and tables
\tableofcontents
\include{sections/notation}
\include{sections/acronyms}
\listoffigures
\listoftables
% the actual content
\pagestyle{headings}
\pagenumbering{arabic}
\include{sections/introduction}
\include{sections/body}
\include{sections/implementation}
\include{sections/experiments}
\include{sections/results}
\include{sections/discussion}
% the bibliography
\bibliographystyle{unsrt} % only numbers
\bibliography{literature}
% the appendix
\appendix
\include{sections/appendix}
% the theses
\pagestyle{empty}
\include{sections/statements}
\end{document}
% end of file
答案1
解决方案是来自@barbarabeeton的建议。使用\clearpage
将保持罗马计数直到结束\listoftables
。
更改后:
% the table of contents and the lists of figures and tables
\tableofcontents
\include{sections/notation}
\include{sections/acronyms}
\listoffigures
\listoftables
\clearpage
% the actual content
\pagestyle{headings}
\pagenumbering{arabic}
\include{sections/introduction}
\include{sections/body}
\include{sections/implementation}
\include{sections/experiments}
\include{sections/results}
\include{sections/discussion}