我想按字母枚举附录中的章节,并且成功了。但是我如何在字母后面加点?我尝试使用命令 \renewcommand 来处理前几行,但它在附录中不起作用。
\documentclass[12pt]{article}
\usepackage{etoolbox}
\usepackage{appendix}
\renewcommand\thesection{\arabic{section}.}
\AtBeginEnvironment{subappendices}
{\section*{Appendix}
\renewcommand\thesection{\alph{section}.}
}
\begin{document}
\section{Introduction}
Bla, bla, bla.
\begin{appendices}
\section{Proof of Proposition 1}
ABC
\end{appendices}
\end{document}