[Tex/LaTex] Itemize – set default option

itemizelistsoptional arguments

I have plenty of lists, all with the [noitemsep] option:

\begin{itemize}[noitemsep]
    \item foo
    \item bar
\end{itemize}

Is it possible, to setup itemize to use this option by default? Or do I have to write my own "wrapper" macro around itemize.

Best Answer

Try to redefine the list default settings with enumitem. You can use a global option or limit the scope to the environment you want to use:

\documentclass{article}

\usepackage{enumitem}

\setlist[itemize]{noitemsep}

\begin{document}

\begin{itemize}
\item One
\item Two
\item Three
\end{itemize}

\end{document}

Output