从词汇表中删除上一章标题

从词汇表中删除上一章标题

我的设置如下:

\chapter{Conclusion}
blah blah ...

\glsaddall
\printglossary[type=\acronymtype]
\printglossary[type=main]

\printbibliography

现在,我使用的 documentclass 总是在每页顶部打印当前章节的名称。参考书目中的标题是正确的(“参考书目”),但词汇表中的标题是“结论”。

我猜想该\printglossary命令可能因为某种原因没有完成上一章。我该如何修复这个问题?

谢谢

答案1

通过强制标题可以修复此问题:

\markboth{Acronyms}{Acronyms}
\printglossary[type=\acronymtype]

\markboth{Glossary}{Glossary}
\printglossary[type=main]

\printbibliography

我要感谢用户“touhami”在评论中提出这一建议。

相关内容