通过使用,\usepackage[titletoc]{appendix}
我设法使附录在目录中显示为:“附录 A”而不是“A”。问题是现在在我的标题中,它只显示 A 而不是附录 A。
这有点混乱,但我尝试提供一个最小的工作示例(我正在使用 documentclass report):
\begin{appendices}
\chapter{This is my first Appendix} \label{appendix_first}
\input{Chapters/Appendix A}
\end{appendices}
对于标题,我使用:
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[L,C]{}
\fancyhead[L]{\rightmark}
\fancyhead[C]{}
\fancyhead[R]{}
\fancyfoot[C]{\thepage}
下面的代码可以在没有可用章节时显示相应部分。我认为它并不那么重要,但是为了完整性而包含进去(取自此链接:没有章节时的章节标题)
\renewcommand{\sectionmark}[1]{\markright{\thesection.~#1}}
\renewcommand{\chaptermark}[1]{%
\markboth{\thechapter{}: #1}{\thechapter{}: #1}%
因此,我查看了这份文档:http://mirrors.ibiblio.org/CTAN/macros/latex/contrib/appendix/appendix.pdf
在(第 3 页)中,它说:
“header 在页眉中的每个附录前添加一个名称(例如,'附录')。名称由 的值给出\appendixname
。请注意,这是具有章节的类的默认行为。”
所以我认为这可能是一个解决方案,但我不知道如何实现它。
那么,我该怎么做才能使附录 A 显示在标题中而不仅仅是 A?谢谢。