我正在尝试将阑尾
附录 A
A.1 A.2 A.3
这是我目前所做的
\appendix
%\renewcommand\thesection{\Alph{subsection}}
\renewcommand{\thesubsection}{\arabic{subsection}}
谁能告诉我我在这里做错了什么?
谢谢
答案1
如果article
使用类,就不需要\renewcommand{\thesubsection}{...}
因为\appendix
重新定义\thesection
而使用\Alph
等等。
\documentclass[a4paper,10pt]{article}
\usepackage{blindtext}
\begin{document}
\tableofcontents
\blinddocument
\appendix
\section{An appendix section}
\subsection{An appendix subsection}
\subsection{Another appendix subsection}
\section{Another appendix section}
\subsection{Just another appendix subsection}
\subsection{Yet Another appendix subsection}
This is an appendix.
\end{document}