In a moderncv document, using an itemize in a cvitem produces extra spacing after the itemized list.
Here's a minimum working example:
\documentclass{moderncv}
\moderncvstyle{casual}
\moderncvcolor{green}
\name{John}{Smith}
\begin{document}
\makecvtitle
\section{List section}
\cvitem{Some category}{
\begin{itemize}
\item the first
\item the second
\item the third
\end{itemize}
}
\cvitem{Another category}{
\begin{itemize}
\item number one
\item number two
\item number three
\end{itemize}
}
\cvitem{text}{with a description}
More text.
\end{document}
I can add a \vspace{-1em} after each itemize to remove the space, but that seems like fighting the LaTeX rather than embracing it. Is there a setting I can change to remove the extra spacing here?


