Document 1:
\documentclass[12pt,a4paper]{mwrep}
\usepackage{enumitem}
\begin{document}
List of items:
\begin{itemize}
\item Item one,
\item Item two,
\item Item three
\end{itemize}
\end{document}
Document 2:
\documentclass[12pt,a4paper]{mwrep}
\begin{document}
List of items:
\begin{itemize}
\item Item one,
\item Item two,
\item Item three
\end{itemize}
\end{document}
Those documents look different because of \usepackage{enumitem} line. I want to use this package (for \setlist[itemize]{label=--}) but I don't want it to change spacing of my lists. How can it be done?
I found on my own that using \begin{itemize}[topsep=0pt] will do what I want. I don't want to add this parameter to every occurence of \begin{itemize} in my document. How can I use \renewcommand to do what I need?
\setitemize{topsep=0pt}- even better that\renewcommand;) – Ichibann Nov 20 '11 at 14:22