更改附录名称

更改附录名称

我正在尝试更改附录的名称。这是我所做的:

\begin{appendices}
\input{muonSF}
\input{Wmass}
\input{BDTCrossCheck}
\end{appendices}

使用附录包。我的问题是我需要将附录的名称更改为 Anexo(西班牙语中的附录),并且我需要在所有附录前添加一个仅包含单词 Anexo 的页面。

我怎样才能做到这一点?

答案1

使用\appendixpage来获取 样式的标题\part;要更改此标题中显示的名称,您需要重新定义\appendixpagename;要更改附录使用的名称,您需要重新定义\appendixname。这里有一个小例子(我假设您正在使用babelspanish选项):

\documentclass{book}
\usepackage[spanish]{babel}
\usepackage{appendix}

\addto\captionsspanish{%
  \renewcommand\appendixname{Anexo}
  \renewcommand\appendixpagename{Anexos}
}

\begin{document}

\appendixpage
\begin{appendices}
\chapter{Anexo Uno}
\chapter{Anexo Dos}
\end{appendices}

\end{document}

答案2

您还可以使用巴别塔 (Babel)Johannes Braams 编写的软件包。你只需要包含它并指定你想要在文档中显示的语言:西班牙语俄语, ETC。

\include[spanish]{babel}

有关于它的详细信息加拿大运输安全局以及更多实际示例维基百科

我认为指出这一点是个好主意,因为这比一直重新定义名称更为实用。

答案3

如果你使用该appendix包,并且只想将名称更改为其他名称,而不是附录,单行解决方案是:

\renewcommand\appendixpagename{YourAppendixName}

相关内容