如何在 LaTeX 中对小节下方的章节进行编号?

如何在 LaTeX 中对小节下方的章节进行编号?

我想用 LaTeX 制作章节。

对于有分区的文档chapter

  • 1.1 = 部分
  • 1.1.1 = 小节
  • 1.1.1.1 = 小节

1.1.1.1.1 怎么样?

我必须使用什么才能使较低级别的部分编号为 1.1.1.1.1?

答案1

您必须\setcounter{secnumdepth}{5}在文档中插入序言,然后该命令\paragraph{title}才相当于您所说的\subsubsubsection{title}

在我看来给段落和小节编号并不是一个好主意。这会让文本的可读性大大降低。

\documentclass{report}
\setcounter{secnumdepth}{5} % seting level of numbering (default for "report" is 3). With ''-1'' you have non number also for chapters
 %\setcounter{tocdepth}{5} % if you want all the levels in your table of contents
\begin{document}
\chapter{chapter title (depth 0)}
\section{section title (depth 1)}
\subsection{subsection title (depth 2)}
\subsubsection{subsubsection title (depth 3)}
\paragraph{paragraph title (depth 4)}
\subparagraph{Subparagraph title (depth 5)} % last existing level
\end{document}

在此处输入图片描述

相关内容