附录在课程目录中效果不佳elsarticle
。
例子:
\documentclass[number,sort&compress,3p]{elsarticle}
\begin{document}
\begin{frontmatter}
\title{Example}
\author{Ben}
\begin{abstract}
Test
\end{abstract}
\end{frontmatter}
\tableofcontents
\section{Introduction}
Test
\appendix
\section{Extra material}
Extra
\end{document}
目录中的“附录 A”和“附加材料”排版重叠。有没有什么办法可以解决这个问题?
答案1
您可以通过重新定义来修复它\thesection
,\appendix
即
\appendix
\renewcommand*{\thesection}{\Alph{section}}
现在您将获得“A. 额外材料”。最初,elsarticle
在 内定义\appendix
:
\gdef\thesection{\appendixname\@Alph\c@section}%
结果是“附录 A 附加材料”。章节编号是使用\numberline
不适合的格式排版的。
或者你也可以在序言中设置
\renewcommand*{\appendixname}{}
我认为,如果不写“第 1 节”和“第 2 节”,就没有必要写“附录 A”和“附录 B”。首先,为了命名的一致性,其次因为字母编号已经表示了附录。