我正在“文章”文档类中写一篇论文。
当它进入我的附录时,我希望这两个部分的标题显示为“附录 A。一些符号”和“附录 B。一些更多符号”。所以我试了一下
\appendix
\section{Some notation}
\section{Some more notation}
但是,我得到的标题是“A 一些符号”和“B 一些更多符号”。我该如何解决这个问题?
我阅读了旧的相关帖子,但答案似乎不太好。
答案1
该包的选项和环境可以title
做到这一点:appendices
appendix
\documentclass{article}
\usepackage[title]{appendix}
\begin{document}
\section{title 1}
\section{title 2}
\begin{appendices}
\section{Some Notation}
\section{Some More Notation}
\end{appendices}
\end{document}