我正在尝试更改正在处理的Latex文档中章节编号的显示方式。我想做的是这样的:

节标题
(i)正常重量的小节标题
(a)Lorem ipsum(未使用小节标题)...

我想出了以下内容,但是就缩进等而言,这是不对的。
\renewcommand{\thesubsection}{(\textnormal{\roman{subsection}})}\renewcommand{\thesubsubsection}{\indent(\textnormal{\alph{subsubsection}})}
谁能指出我正确的方向?谢谢!

最佳答案

使用titlesec包。 The titlesec manual is here以及其他许多资源。

09-28 04:05