我正在尝试用罗马字体列举我的目录,并将计数器设置为仅用于第一章的阿拉伯语。我有三页,所以我猜这会弄乱一切。这些是我一开始拥有的一些包:
以下是与格式化相关的所有内容:
\setcounter{tocdepth}{3}
\renewcommand{\figurename}{Figure}
\renewcommand{\listfigurename}{List of Figures}
\begin{document}
(....) title page, abstract I use \thispagestyle{empty}
\tableofcontents
\clearpage (...)
词汇表:
\clearpage
\thispagestyle{plain}
\chapter*{Glossary of Acronyms}
\pagenumbering{roman}
\listoffigures
\thispagestyle{plain}
\addcontentsline{toc}{chapter}{List of Figures}
\listoftables
\thispagestyle{plain}
\addcontentsline{toc}{chapter}{List of Tables}
\chapter{Introduction}
\setcounter{page}{1}
我的问题是:目录以 1,2,3 编号,并且我希望它是罗马数字,但在词汇表页面上继续正确计数。
答案1
我不太明白你到底想做什么,但据我所知,你希望目录中的页码为罗马数字(i、ii、iii、...),但其他页面为阿拉伯数字(1、2、3、...),并从 1 开始。使用以下代码可以轻松实现:
\documentclass{report}
\begin{document}
\setcounter{page}{1}
\pagenumbering{roman}
\tableofcontents
\clearpage
\setcounter{page}{1}
\pagenumbering{arabic}
\chapter{Introduction}
\end{document}
现在,您在评论中提到了某种词汇表,但您的代码中却没有显示。为了帮助您解决这个问题,我们需要有关您如何创建此词汇表的更多信息。