按数字而不是字母对子附录进行编号

按数字而不是字母对子附录进行编号

我正在使用附录包来管理论文各章中的多个子附录,但我希望所有附录都用 A 表示,并按数字而不是字母进行编号。例如:在第 2 章中,我希望它们是:
2.A.1
2.A.2
2.A.3
...
而不是:
2.A
2.B
2.C
...

我的主文件如下所示:

\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}

%to manage multiple appendices
\usepackage{appendix}

\begin{document}

\begin{titlepage}
...
\end{titlepage}

\tableofcontents

\listoffigures

\listoftables

%include Abstract to the table of contents
\addcontentsline{toc}{chapter}{Abstract}
\include{chapters/abstract}

%\chapter{Introduction}
\include{chapters/introduction}

%\chapter{First paper}
\include{chapters/chapter02}

%\chapter{Second paper}
\include{chapters/chapter03}

%\chapter{Conclusion}
\include{chapters/conclusion}

\end{document}

每章如下:

\chapter{...}
\section{...}
\section{...}
...
\pagebreak

\begin{subappendices}
\section{...}
\section{...}
...
\end{subappendices}

相关内容