更改 Latex 部分编号显示
我正在尝试更改我正在处理的 Latex 文档中节编号的显示方式。 我想做的是这样的:
部分标题
(i) 正常粗细的小节标题
(a) Lorem ipsum(没有使用小节标题)...
我想出了以下内容,但在缩进等方面是不正确的。
\renewcommand{\thesubsection}{(\textnormal{\roman{subsection}})} \renewcommand{\thesubsubsection}{\indent(\textnormal{\alph{subsubsection}})}
有人能指出我正确的方向吗? 谢谢!
I'm trying to change how section numbering is displayed in a Latex document I'm working on. What I want to do is this:
Section Title
(i) Subsection title in normal weight
(a) Lorem ipsum (no subsubsection title being used)...
I've come up with the following, but it's not right in terms of indenting etc.
\renewcommand{\thesubsection}{(\textnormal{\roman{subsection}})}
\renewcommand{\thesubsubsection}{\indent(\textnormal{\alph{subsubsection}})}
Can anyone point me in the right direction? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
titlesec
包。titlesec
手册位于此处 ,并且其他地方也有大量其他资源。Use the
titlesec
package. Thetitlesec
manual is here, and plenty of other resources are available elsewhere.我没有直接的答案,但是 回忆录包 提供了一些定制帮助,并且有很好的文档记录。
I don't have a direct answer, but the memoir package provides some help with customization and is very well documented.