显示附录章节如:“附录”,以及章节如“附录 A:我的附录标题”

显示附录章节如:“附录”,以及章节如“附录 A:我的附录标题”

我希望将我的附录章节设为:“附录”,并将章节设为“附录 A:我的附录标题”“附录 B:我的第二个标题”,方法如下:

\chapter{Appendix}
\section{My appendix title}
\section{My second title}

我遇到的第一个问题是“附录 A:” - 章节编号和章节名称相互重叠。以下是问题的图片:

在此处输入图片描述

为此,我使用了包\usepackage[title]{appendix}和命令:

\begin{appendices}
\renewcommand{\appendixname}{Appendix}
\gdef\thechapter{\arabic{equation}}
\gdef\thesection{\appendixname\Alph{section}}
\end{appendices}

我希望章节计数器从内容继续而不是从开始 0,但是在这个例子中2,并且部分内容如下:

\gdef\thesection{Appendix \Alph{section}\colon\ } %And then get section name and the dots

通过这一行,我收到一条错误消息,比如它太长了之类的,因为如果我不把这一行写得太长,我就不会收到错误。不知道为什么。

不管我是否使用该包,都只需说:\appendix对我来说是一样的,我只是尝试了两者,看看是否能够得到我想要的。

答案1

使用subappendices环境,titletoc包选项,并重新定义\thesection

\documentclass{book}
\usepackage[titletoc]{appendix}

\begin{document}

\tableofcontents

\backmatter
\begin{subappendices}
\renewcommand\thesection{\Alph{section}}
\chapter{Appendices}
\section{My first title}
\section{My second title}
\end{subappendices}

\end{document}

在此处输入图片描述

相关内容