各节持续编号

各节持续编号

我想展示:

I. Factor completely.

   1.  some polynomial

   2.  some other polynomial

II. Reduce each expression.

   3.  some rational expression

   4.  some other rational expression

但我希望每个部分都保持编号,这样如果我在某个部分添加另一个问题,就不必重新编号所有内容。我知道如果我使用\begin{questions} \end{questions}它,我可以做到这一点,但我无法插入部分编号和说明。或者至少,我不知道如何插入。

答案1

如果您使用列表来创建问题,则可以使用resume提供的功能enumitem,正如本问题中所述,恢复列表

\documentclass[12pt]{article}
\usepackage{enumitem}
\begin{document}
\section{Factor completely}
\begin{enumerate}
  \item  some polynomial
  \item some other polynomial
\end{enumerate}
\section{Reduce each expression.}
\begin{enumerate}[resume]
  \item some rational expression
  \item some other rational expression
\end{enumerate}
\end{document} 

在此处输入图片描述

相关内容