词汇表包和页码

词汇表包和页码

我正在使用该glossaries包来维护首字母缩略词列表和词汇表。

我的问题是缩略词列表太大。目前它占据了 2 页。

第一页的页码为vi,这正是我想要的。但是,第二页的页码为1,这是不正确的。应该是vii。有人能帮我吗?

我的主文件如下所示:

\begin{document}

\input{glossary} % The Glossary and Acronym entries.

\pagenumbering{alph}
\setcounter{page}{1}
\maketitle

\input{abstract}
\input{acknowledgments}

\pagenumbering{roman}
\setcounter{page}{1}

\tableofcontents
\addcontentsline{toc}{chapter}{Contents}

\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}

\listoftables
\addcontentsline{toc}{chapter}{List of Tables}

\lstlistoflistings
\addcontentsline{toc}{chapter}{List of Listings}

\printglossary[type=\acronymtype] % Acronym list

\pagenumbering{arabic}
\setcounter{page}{1}

% Document body

\printglossary[title={Index of Terms},toctitle={Index of Terms}]
\end{document}

答案1

我猜你需要一个\clearpage\cleardoublepage,这取决于你想要什么以及你的 documentclass,紧接着\printglossary。然后你的计数器重置将不会执行,直到下一个常规页面。

这是假设你指的是第一个词汇表,因为我无法测试你的代码。

相关内容