小节内的自动段落编号

小节内的自动段落编号

我正在尝试在 LaTeX 中创建与 word 文档(附示例)类似的格式,但在实现上遇到了很多问题。该文档是一篇文章,每个段落都需要编号和缩进 20mm,因此最好只声明一次此设置,而不是用 \paragraph 或类似命令引入每个段落。

在此处输入图片描述

我的 MWE 如下:

\documentclass[11pt, twoside]{article}
\usepackage[top=2.5cm,bottom=2.5cm,right=1.8cm,left=1.8cm]{geometry}
\usepackage{fontspec} % Needed to run XeLaTeX
\setmainfont{Arial}
\usepackage{titlesec}
\titleformat{\section} 
    {\normalfont\huge}{\makebox[2cm][l]{\thesection}}{0pt}{} 
\titleformat{\subsection} 
    {\normalfont\bfseries}{\makebox[2cm][l]{\thesubsection}}{0pt}{}
\titleformat{\subsubsection} 
    {\normalfont\bfseries}{\makebox[2cm][l]{\thesubsubsection}}{0pt}{}

\titleformat{\paragraph}
    {\normalfont}{\makebox[2cm][l]{\theparagraph}}{0pt}{} 

\setcounter{secnumdepth}{5}

\begin{document}
\section{This Section Header}
\paragraph{Main text.}
\subsection{Sub Section header}
\paragraph{Sub section text} 
\subsubsection{Sub Sub Section header}
\paragraph{Sub Sub section text part 1} 
\paragraph{Sub Sub section text part 2}
\end{document}

其结果为:

在此处输入图片描述

但我不确定如何自动进行段落编号。如能得到任何帮助我将不胜感激!

相关内容