Latex 中的附录编号(Alph.arabic)

Latex 中的附录编号(Alph.arabic)

我正在尝试将阑尾

附录 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}

在此处输入图片描述

相关内容