\setcounter{tocdepth}{4} \setcounter{secnumdepth}{3} 解释: tocdepth:设置在 ToC 的显示的章节深度 secnumdepth:设置章节的编号深度 更改后可以得到如下结果: \documentclass{book} \setcounter{tocdepth}{3} \setcounter{secnumdepth}{4} \begin{document} \tableofcontents \section{section} \subsection{...
注意,只有将\setcounter{tocdepth}{2}命令放置在\tableofcontents的前面,它才会生效。 我们打开.toc文件,可以发现尽管文档中的目录仅生成了一部分,但.toc文件中依旧保存了所有的目录信息: \contentsline {section}{\numberline {1}A section}{1}{}% \contentsline {subsection}{\numberline {1.1}A subsection}...
\usepackage{xcolor} \usepackage{tocloft} % For manipulating Table of Content virtical spacing %\setlength\cftparskip{-2pt} \setlength\cftbeforesecskip{2pt} %spacing between the sections \setlength\cftaftertoctitleskip{30pt} % space between the first section and the text ``Table of Contents'...
\enspace inserts a space of .5em in text or math mode; \quad inserts a space of 1em in text or math mode; \qquad inserts a space of 2em in text or math mode; \kern <len> inserts a skip of <len> (may be negative) in text or math mode (a plain TeX skip); \hskip <len...
\renewcommand{\contentsname} {\bfseries{TableofContents}}} 1. 2. 3. 4. 要操纵目录与图、小节和章节列表之间的虚拟间距,请使用tocloft软件包。本文中使用的两个选项是cftbeforesecskip和cftaftertoctitleskip。 tocloft 包提供了控制目录、图表列表和表格列表的排版方法。
我们可以用 \tableofcontents 命令来生成整个文档的目录,LATEX 会自动设定目录包含的章节层次,也可以用 \setcounter 命令来指定目录层次深度。如果不想让某个章节标题出现在目录中,可以使用以下带 * 的命令来声明章节。\tableofcontents \setcounter{tocdepth}{2} \chapter*{...} \section*{...} \subsection*...
\tableofcontents Hello world! \end{document} 添加章节# Copy \section{} \subsection{} \subsubsection{} 添加段落# Copy \paragraph{} \subparagraph{} \subsubparagraph{} 添加包# 当需要用到非默认存在的包时,需要在导言区中添加,如 Copy \documentclass{article} ...
\tableofcontents \setcounter{tocdepth}{2} %设置深度为2 如果不希望章节等层次结构出现在目录中,可以通过加*号避免。 \chapter*{...} \section*{...} 值得一提的是,当章节、图表等结构发生变化后,需要执行两遍才能得到正确结构,LaTeX这样被设计据分析是因为当时的电脑内存容量有限。
\renewcommand{\contentsname} {\bfseries{Table of Contents}}} 要操纵目录与图、小节和章节列表之间的虚拟间距,请使用tocloft软件包。本文中使用的两个选项是cftbeforesecskip和cftaftertoctitleskip。 tocloft 包提供了控制目录、图表列表和表格列表的排版方法。
\maketitle会生成标题页,article类下标题和正文在一页,book和report类则不同。使用\newpage插入新页,\pagenumbering用于设定页码格式,\tableofcontents插入目录。章节结构包括\part、\chapter、\section、\subsection等,不同级别允许在特定文档类中使用。例如,\section*用于创建不编号的标题。标题编号默认...