「 LaTex 」使用多级标题

一.前言

一般的论文,三级标题就够用,因为四级标题的格式就恢复成正文了。

二.技术实现

1.插入库,代码如下:

\setcounter{secnumdepth}{4}

2.插入标题命令,代码如下:

\section{一级标题}  
\subsection{二级标题}   
\subsubsection{三级标题}  

3.插入分论点,代码如下:

\begin{enumerate}
\item[1)]Accurately and effectively...
\item[2)]Realizing the model-free...
\item[3)]The experiment on...
\end{enumerate}

*\item[ ], [ ]里的内容随意发挥,黑点等等。

*亲测有效

发布了193 篇原创文章 · 获赞 616 · 访问量 19万+

猜你喜欢

转载自blog.csdn.net/Robot_Starscream/article/details/104288659