我正在尝试为我的论文附录格式化一个模板,但遇到了一个让我头疼的问题。我希望我的附录有一个标题,上面写着附录 A - “附录章节标题”。或者只是“附录章节标题”。
这对我的第一个附录章节有效,但我的第二章也显示附录 A - “第二个附录章节标题”,尽管章节标题是附录 B。
下面的代码是一个哈希表,但这是我能找到的唯一选项,它实际上将标题变成了附录,而不是第 A 章、第 B 章等。
\documentclass[12pt,a4paper]{book}
\usepackage{fancyhdr}
\usepackage[titletoc,title]{appendix}
\begin{document}
\begin{appendices}
\appendixpage
\appendix
\fancyhead[LO,RE]{Appendix \thechapter \ -- \leftmark}
\input{Appendix1}
\input{Appendix2}
\end{appendices}
\end{document}
附录章节以此内容开头:
\chapter{Example title 1}
Appendix text.
我最乐意将附录章节分开并使用\input
,但对于其余部分则保持灵活。