附录名称前的“附录”

附录名称前的“附录”

我在论文中遇到了一些问题appendix。目前我的设置如下

\documentclass[english]{uvamath}
\usepackage[title]{appendix}

normal chapters etc.

\begin{appendix}
\addappheadtotoc
\chapter{Name}
text
\end{appendix}
\end{document}

现在的问题是,章节标题显示为“A. 名称”,但我希望它是“附录 A. 名称”(在目录中以及附录本身中)。另外,我希望在附录部分上方显示“附录”。目录中已经是这种情况,因为\addappheadtotoc

但不在附录本身中。我该如何修复此问题?

答案1

这在文档第 2 节中有描述。appendix使用appendices环境,并在加载包时输入一些参数。我认为同时调用title和看起来很奇怪titletoc,所以我建议不要这样做。

代码

\documentclass[english]{book}
\usepackage[title,toc,titletoc,page]{appendix}
\begin{document}
normal chapters etc.
\tableofcontents
\begin{appendices}
\chapter{Name}
text
\end{appendices}
\end{document}

相关内容