在新的章节之后继续对段落进行编号

在新的章节之后继续对段落进行编号

我需要按节对文档的段落进行编号,但段落数不会随着新定义的节而改变,我希望此示例能够更好地解释我刚才描述的内容。我正在使用 lyx,任何可以创建此类文档的解决方案都会被广泛接受。

  1. 第一部分

    1 第一段

    2第二段

  2. 第一部分

    3 第三段

    第四段

我设法编写了该代码,但段落仍然重置了其编号,这是我的尝试。

在此处输入图片描述

在此处输入图片描述

答案1

在此处输入图片描述

\documentclass{article}

\usepackage{remreset}
\makeatletter
\@removefromreset{subsection}{section}
\renewcommand\thesubsection{\arabic{subsection}}
\makeatother

\begin{document}

\section{aaa}
\subsection{}
xxxx
\subsection{}
xxxx
\section{bbb}
\subsection{}
xxxx
\subsection{}
xxxx

\end{document}

或者....

在此处输入图片描述

\documentclass{article}

\usepackage{enumitem}
\begin{document}

\section{aaa}

\begin{enumerate}
\item xxxx
\item xxxx
\end{enumerate}

\section{bbb}

\begin{enumerate}[resume]

\item xxxx
\item xxxx
\end{enumerate}

\end{document}

相关内容