自定义行间距和枚举左侧的间距

自定义行间距和枚举左侧的间距

我想以这样的方式修改枚举:

  1. 左侧没有边距(在默认枚举中,编号从左侧缩进)
  2. 两个项目之间有垂直空间。

谁能帮我?

答案1

对于所有列表间距需求,您都应该使用包enumitem。如需无缩进,并在项目之间留空行:

\documentclass{article}
\usepackage{enumitem}
\begin{document}
\noindent This is some text.
\begin{enumerate}[leftmargin=*,itemsep=\baselineskip]
\item Foo
\item Bar
\end{enumerate}
\end{document}

有关列表间距的其他一些问题,请参见:

相关内容