2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/list-item-sep/list-item-sep.tex
2017-01-08 06:52:34 +01:00

19 lines
377 B
TeX

\documentclass[varwidth=true, border=2pt]{standalone}
\usepackage[utf8]{inputenc}
\usepackage{enumitem}
\begin{document}
A normal list:
\begin{itemize}
\item one
\item two
\item three
\end{itemize}
Less spearation:
\begin{itemize}[noitemsep]
\item one
\item two
\item three
\end{itemize}
\end{document}