I would like to modify the enumeration in such a way that:
- there is no margin on the left (in the default enumeration, the numbering is indented from the left)
- there is a vertical space between two items.
Can anyone help me?
I would like to modify the enumeration in such a way that:
Can anyone help me?
For all of your list spacing needs, you should use the enumitem package. For no indentation, and a blank line between items:
\documentclass{article}
\usepackage{enumitem}
\begin{document}
\noindent This is some text.
\begin{enumerate}[leftmargin=*,itemsep=\baselineskip]
\item Foo
\item Bar
\end{enumerate}
\end{document}
For some other questions involving list spacing see:
enumitem for more information.)
– Alan Munn
Jul 04 '12 at 03:26
[ ... ] from this answer to the examples in that question.
– Alan Munn
Jul 04 '12 at 03:52
enumitempackage. – Peter Grill Jul 04 '12 at 02:09