LaTeX使⽤titlesec宏包改变章节编号形式的⽅法
1.titleformat宏包命令详解
LaTeX中可以⽤titlesec宏包中的titleformat命令来改变标题形式:
导⼊宏包:
\usepackage{titlesec}
改变标题的代码如下:
\titleformat{command}[shape]{format}{label}{sep}{before}[after]
不要看晕了,改变章节号的形式,主要修改label参数
各个参数含义如下:
command 是要重新定义的各种标题命令,⽐如 \part,\chapter,\section,\s section,\s s
section,\paragraph,\subparagraph等;
shape 是⽤来设定段落形状的,可选的参数有hang、block、display等,详见 titlesec ⽂档;
format ⽤于定义标题外观,⽐如使标题居中、字体加粗等;
label ⽤于定义定义标题的标签,就是标题内容前⾯的标号;
sep 定义标题的标签与标题内容之间的间隔距离;
before ⽤于在标题内容前再加些内容;
after ⽤于在标题内容后再加些内容。
举个例⼦
\titleformat{\chapter}{\centering\Huge\bfseries}{第\,\thechapter\,章}{1em}{}
format参数将章标题设置为居中(\centering)显⽰、字号为 \Huge,字体被加粗显⽰\bfseries ; label 参数将标题的标签设置为 “第xxx 章”格式;sep 参数设置标签与标题内容之间以⼀个字(1em)的宽度为间隔。
以上设置的章标题效果如下图所⽰:
2.修改编号的⽅法
刚才我们已经知道,编号的样式可以由label参数修改。
现在进⼀步讲,怎样把章节编号修改成下⾯那样:
其他的编号形式如下:
\arabic (1, 2, 3, ...)
\alph (a, b, c, ...)
\Alph (A, B, C, ...)
\roman (i, ii, iii, ...)
\Roman (I, II, III, ...)
\fnsymbol (∗, †, ‡, §, ¶, ...)
其实,默认的编号\thesubsection有点类似下⾯的代码:
\renewcommand\thesection{\arabic{section}}
\renewcommand\thesubsection{\thesection.\arabic{subsection}}
也就是说1.1这样的编号相当于把label修改成\arabic{section}.\arabic{subsection}
如果我们要把标题的编号改成图中的形式,就可以这么写:
\titleformat{\section}[block]{\LARGE\bfseries}{第 \arabic{section} 章}{1em}{}
\titleformat{\subsection}[block]{\Large\bfseries}{ \Roman{subsection}}{1em}{}
\titleformat{\subsubsection}[block]{\large\bfseries}{\Roman{subsection}-\alph{subsubsection}}{1em}{} \titleformat{\paragraph}[block]{\normalsize\bfseries}{[\arabic{paragraph}]}{1em}{}
温馨提⽰,章节号从paragraph开始就没有记了
可以⽤以下命令设置计数层次
\setcounter{secnumdepth}{数字}
⽐如想让paragraph计数,就设置为
\setcounter{secnumdepth}{4}参考连接:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论