来自以下答案:https://tex.stackexchange.com/a/270484/201720,
可以通过字母引用附录,这就是我想要实现的。但是,我不希望输出如下:
相反,我想要的是以下内容:
- 我想在“附录”前添加章节编号
- 我想要的不是“图表附录”,而是“附录 A:图表附录
换句话说,我希望输出是这样的(就我而言,附录为第 9 节):
有没有办法做到这一点?
我可以写(来自https://tex.stackexchange.com/a/30123/201720):
\section{Appendices}
\subsection*{Appendix A: Graph Appendix} \label{appendix:a}
\addcontentsline{toc}{subsection}{\protect\numberline{}Appendix A: Graph Appendix}
This is the graph appendix. It is appendix \ref{appendix:a}.
因为我不想对子节进行编号。但是当我这样做时,LaTeX 引用了第 9 节(我想是因为星号 *),所以我得到了这个:
答案1
您可以使用appendix
带有选项的包[title]
。要获取编号的附录部分,只需将其放在调用之前即可\start{appendices}
。
\documentclass{article}
\usepackage[title]{appendix}
\usepackage{lipsum}
\begin{document}
\section{One}
\lipsum[1]
\section{Two}
\lipsum[2]
\section{Appendices}
\begin{appendices}
\section{Alpha}
\lipsum[3]
\section{Beta}
\lipsum[4]
\end{appendices}
\end{document}