是否可以这样设置环境,即用数字索引章节,用字母索引子章节?
我的意思是我希望得到以下结果:
1 第一部分
1.a 第一小节
1.b 第二小节
...
2 第二部分
2.a 第一小节
2.b 第二小节
...
答案1
重新定义\thesubsection
为\thesection.\alph{subsection}
。 (\alph
替换默认的\arabic
;您也可以选择,例如\Alph
、\roman
和\Roman
。)
\documentclass{article}
\renewcommand{\thesubsection}{\thesection.\alph{subsection}}
\begin{document}
\section{First}
\subsection{First-first}
\section{Second}
\end{document}