4

I would like to modify the enumeration in such a way that:

  1. there is no margin on the left (in the default enumeration, the numbering is indented from the left)
  2. there is a vertical space between two items.

Can anyone help me?

Jonas Stein
  • 8,909

1 Answers1

4

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:

Alan Munn
  • 218,180
  • I mean a vertical space, not a horizontal space. So I want an empty line between two items of the list. – Michael Widyuan Jul 04 '12 at 03:05
  • @MichaelWidyuan See my edit. (And read the documentation for enumitem for more information.) – Alan Munn Jul 04 '12 at 03:26
  • Thanks a lot! Sorry to ask so much, but is there a way to make it automatic? – Michael Widyuan Jul 04 '12 at 03:31
  • @MichaelWidyuan Surely you can figure this out from either the documentation or the first linked question. Hint: apply the stuff in the [ ... ] from this answer to the examples in that question. – Alan Munn Jul 04 '12 at 03:52