I want to write my CV in LaTeX. I would like to wrap the figure of my photo with the text that describe my personal information. I would like to wrapfigure with a description text. I'm using the following code:
\begin{wrapfigure}{r}{1cm}
\includegraphics[height=20mm]{Foto-CV.jpg}
\end{wrapfigure}
\begin{description}
\item[Surname] \emph{my surname}
\item[Name] \emph{my name}
\item[Date of Birth:] aa/bb/cccc
\end{description}
When I do this, LaTeX wraps the figure with the text following the description not with the description itself.
Is there something am I missing? Or maybe there is another package better suited for this...
Thanks in advance for your help!