
Я хочу перечислить разделы в Приложениях по буквам и мне это удалось. Но как мне поставить точки после букв? Я пробовал использовать команду \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}