I am using moderncv to write my CV. Therefore, I want to use a bulleted list withing \cvitem. In principle this works, but an extra line is added so that it is not on the same height as the first argument of \cvitem. Here is an example:
It should look like this:
Language - first
- second
But it looks like this:
Language
- first
- second
Here is the minimal code
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{orange}
\firstname{John}
\familyname{Doe}
\begin{document}
\cvitem{test}{
\begin{itemize}
\item some bulleted item
\end{itemize}
}
\end{document}
Thanks for your help.