I have a list with some text items and I want to add a picture to one of the items, so that the text of that item is floating to the left of the picture.
If I use wrapfigure my picture gets placed at the bottom of the page which is not what I want.
This is my tex:
\documentclass{article}
\usepackage{wrapfig}
%\usepackage{picins}
\usepackage[ngerman,english]{babel}
\usepackage{blindtext}
\begin{document}
\blindtext
\begin{enumerate}
\item\blindtext
\item
\begin{wrapfigure}{r}{5.8cm}
\rule{5.8cm}{3.2cm}
\end{wrapfigure}
\blindtext
\end{enumerate}
\blindtext
\end{document}
Any ideas?