
我試圖用羅馬文列舉我的目錄,並僅為第一章設定阿拉伯語計數器。我有三頁,所以我想這把事情搞砸了。這些是我一開始就有的一些包包:
這是我與格式化相關的所有內容:
\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}
現在,您在註釋中提到了某種術語表,但是它沒有顯示在您的程式碼中。為了幫助您完成此任務,我們需要有關如何建立此術語表的更多資訊。