付録のセクション文字の後にドットを付ける方法

付録のセクション文字の後にドットを付ける方法

付録のセクションを文字で列挙したいのですが、成功しました。しかし、文字の後にドットを配置するにはどうすればよいでしょうか? 最初の数行のように \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}

関連情報