I would like to have the whole description list centered or indented a couple of cm.
Right now it looks like this:
Code: Select all
This is text in another paragraph.
Abbr1 Desc1
Abbr two Desc2
This is text in another paragraph.
Code: Select all
This is text in another paragraph.
Abbr 1 Desc1
Abbr two Desc2
This is text in another paragraph.
Code: Select all
\usepackage{enumitem}
\begin{document}
This is text in another paragraph
\begin{description}[style=multiline, leftmargin=3cm]
\item[Abbr 1] Desc1
\item[Abbr two] Desc2
\end{description}
This is text in another paragraph
\end{document}