如何更改小节标签?

如何更改小节标签?

以下代码在 Foo 旁边生成 1,在 Bar 旁边生成 1.1。

\section{Foo}
\subsection{Bar}

我如何在 Foo 旁边生成 1,在 Bar 旁边生成 1a?如何在下一个子部分生成 1b,等等?

答案1

您必须更改 的数字打印机制\subsection。最简单的方法是使用:

\renewcommand{\thesubsection}{\thesection\alph{subsection}}

在此处输入图片描述

\documentclass{article}
\renewcommand{\thesubsection}{\thesection\alph{subsection}}
\begin{document}
\section{A section}
\subsection{A subsection}
\subsection{A subsection}
\subsubsection{A subsubsection}
\end{document}​

相关内容