回忆录:如何在目录中更改附录页面名称

回忆录:如何在目录中更改附录页面名称

我使用memoir类并想更改所谓的附录页(第一个类似于部分的页面,开始附录,由 实现\appendixpage)上显示的标题。这可以通过 实现\renewcommand{\appendixpagename}{...}。但是,目录仍然显示默认标题“附录”。(特别是,我想重命名附录标题,因为文档不是英文的。使用像 这样的包选择语言babel显然没有多大作用。)

问题:如何将附录标题更改为目录?提前致谢!

梅威瑟:

\documentclass{memoir}

%\usepackage[ngerman]{babel}

\begin{document}

\renewcommand{\appendixpagename}{Anhänge}

\tableofcontents

\chapter{Awesome chapter}

\begin{appendices}
\appendixpage
\chapter{Great appendix}
\end{appendices}

\end{document}

答案1

为了将目录中的条目从“附录”更改为“修订版”,请使用\renewcommand{\appendixtocname}{Anhänge}

\documentclass{memoir}

\usepackage[ngerman]{babel}

\begin{document}

\renewcommand{\appendixpagename}{Anhänge}
\renewcommand{\appendixtocname}{Anhänge}
\tableofcontents

\chapter{Awesome chapter}

\begin{appendices}
\appendixpage
\chapter{Great appendix}
\end{appendices}

\end{document}

相关内容