目前,当我启动附录页面时,我有附录 A。在上下文表中,我看到了项目 A。我怎样才能将“A”替换为“附录”。我正在使用回忆录类,我也在使用 babel,但我已经能够更改附录名称,如下所示。
\addto\captionsdutch{%
\renewcommand{\appendixname}%
{Appendix}%
}
答案1
如果我理解正确,要在目录中添加“附录”一词,您可以重新定义\cftappendixname
;如果您还想隐藏附录的编号(在目录中和文档正文中),您可以\thechapter
在附录之前重新定义(并调整\cftchapternumwidth
)。这里有一个小例子:
\documentclass{memoir}
\usepackage[dutch]{babel}
\addto\captionsdutch{%
\renewcommand{\appendixname}%
{Appendix}%
}
\renewcommand*\cftappendixname{\appendixname}
\begin{document}
\tableofcontents*
\chapter{Test Regular Chapter}
\appendix
\addtocontents{toc}{\setlength\cftchapternumwidth{1em}}
\renewcommand\thechapter{}
\chapter{Test Appendix}
\end{document}