
부록의 섹션을 문자로 열거하고 싶었는데 성공했습니다. 그런데 글자 뒤에 점을 어떻게 넣을 수 있나요? 처음 몇 줄처럼 \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}