用手册编号列举段落

用手册编号列举段落

我今天刚开始使用 Latex,一直在研究如何手动对枚举中的段落进行编号。我正在编写非连续顺序问题的解决方案;我试图得到的结果如下所示:

Chapter 8
8.3  Let F = 492 N, x = 33, y = 42
     Since we know the magnitude...
     (a)  ...
          ...
     (b)  ...
          ...

8.12 We know the resultant of two vectors ...
     A graphical sketch of ...
                     +--------+
                     |        |
                     | Figure |
                     |        |
                     +--------+
8.15 ...

在上述表述中,我希望能够:

  • 手动对每个列举段落的问题进行编号(8.3 -> 8.12 -> 8.15)
  • 并缩进整个段落,如上所示

我尝试了以下代码,但它会自动按递增顺序对每个项目进行编号。有人能告诉我如何手动对每个项目/每个段落进行编号吗?

\begin{enumerate}
\item
Let $F = 492 N, x = 33, y = 42$\\
Since we know the magnitude...

\item ...

\item ...
\end{enumerate}

答案1

您可以使用 \item 的可选参数:

\documentclass{article}

\begin{document}
\begin{enumerate}
\item[8.2]
Let $F = 492 N, x = 33, y = 42$\\
Since we know the magnitude...

\item[8.12] ...

\item[8.15] ...
\end{enumerate}
\end{document}

在此处输入图片描述

相关内容