如何为枚举创建标题

如何为枚举创建标题

我想要进行以下形式的枚举:

Here are some important points:
    1. Stay productive
    2. Discuss people, instead of ideas
    3. Drink lots of beer

但是,\begin{enumerate}在列表开始前插入了一个较大的垂直空间。我该如何处理?我想要粘贴到列表中的文本可以是特定的小标题(如上例所示),也可以是普通段落,我希望其中包含枚举,但不要将文本主体分成多个段落(即枚举后也没有空格)。

顺便说一下,这是我现在得到的信息:

Here are some important points:



    1. Stay productive
    2. Discuss people, instead of ideas
    3. Drink lots of beer

答案1

您可以enumitem使用nolistsep作为选项来执行此操作。

\documentclass[12pt,ngerman]{article}

\usepackage{enumitem}

\begin{document}

\noindent Here are some important points:

\begin{enumerate}[nolistsep]%[topsep=0pt,partopsep=0pt,itemsep=0pt]
\item aaa
\item bbb
\item ccc
\end{enumerate}

\noindent and here are some more

\end{document} 

在此处输入图片描述

答案2

\documentclass[12pt,ngerman]{scrartcl}

\usepackage{paralist}

\begin{document}

Here are some important points:

\begin{compactenum}
\item aaa
\item bbb
\item ccc
\end{compactenum}


\end{document}

在此处输入图片描述

相关内容