带标题的枚举列表

带标题的枚举列表

我需要一个包含环境等标题的枚举列表description。我查看了该enumitem包,但不确定是否/如何使用它来达到预期的效果。我希望列表如下所示:

  1. 苹果
    苹果是红色的,含有铁。
  2. 香蕉
    香蕉是黄色的,含有钾。

答案1

您可以创建一个如下命令\item[description title]

\newcommand\descitem[1]{\item{\bfseries #1}\\}

\\如果不想换行,可以删除。标题的样式很容易更改。

您的enumerate环境将如下所示:

\begin{enumerate}
  \descitem{Apples} Apples are red, and contain iron.
  \descitem{Bananas} Bananas are yellow and contain potassium.
\end{enumerate}

相关内容