答案1
对于你的下一个问题,请查看 我刚刚被要求写一个最简单的例子,那是什么?!
解决方案 1
更改编号级别的数量(降至\paragraph
)。
\documentclass{article}
\setcounter{secnumdepth}{4}
\begin{document}
\section{section}
\subsection{subsection}
\subsubsection{subsubsection}
\paragraph{paragraph}
\end{document}
titlesec
如果您想更改标题级别的格式,可以查看该包\paragraph
。
解决方案 2
使用提供附加级别的不同文档类(书籍)(\chapter
)。
\documentclass{book}
\setcounter{secnumdepth}{4}
\begin{document}
\chapter{chapter}
\section{section}
\subsection{subsection}
\subsubsection{subsubsection}
\end{document}