2
\documentclass[11pt]{article}
\usepackage{enumitem}
\begin{document}
Some text here.
\begin{enumerate}
\item a
\item b
\item c
\end{enumerate}
Some more text.
\end{document}

Assume item a contains multiple lines of text. How can I increase the spacing between each line in item a ?

chelsea
  • 235

2 Answers2

4

The before key allows to change the \baselineskip:

\documentclass[11pt]{article}
\usepackage{enumitem}
\usepackage{setspace}
\begin{document}
Some text here.
\begin{enumerate}[before=\setlength{\baselineskip}{20pt},itemsep=-10pt]
\item a more text more text more text more text more text more text more text more text more text more text more text more text more text more text 
\item b
\item c
\end{enumerate}
Some more text.
\end{document}
0

Since you're already using the enumitem package you can set the parsep and itemsep parameters. parsep controls the amount of space between paragraphs, itemsep that between items: see other page on this site.

\documentclass[11pt]{article}
\usepackage{enumitem}
\begin{document}
    Some text here.
    \begin{enumerate}[parsep=20pt,itemsep=10pt]
        \item a
        \item b
        \item c
    \end{enumerate}
    Some more text.
\end{document}
JPi
  • 13,595