I tried to use the following code
Code: Select all
\begin{wrapfigure}{r}{75mm}
\vspace{-12mm}
\begin{center}
\includegraphics[width=70mm]{NoTouch}
\vspace{-5mm}
\caption{Do Not Touch if Hot}
\end{center}
\vspace{-8mm}
\end{wrapfigure}
Code: Select all
\begin{wrapfigure}{r}{75mm}
\vspace{-12mm}
\begin{center}
\includegraphics[width=70mm]{NoTouch}
\vspace{-5mm}
\caption{Do Not Touch if Hot}
\end{center}
\vspace{-8mm}
\end{wrapfigure}
Code: Select all
\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage{wrapfig}
\begin{document}
\begin{itemize}
\item Item 1
\begin{wrapfigure}{r}{75mm}
\begin{center}
\includegraphics[width=70mm]{My Pic}
\vspace{-5mm}
\caption{Caption}
\end{center}
\vspace{-10mm}
\end{wrapfigure}
\item Item 2
\item Item 3
\end{itemize}
\end{document}
Perhaps you could use a tabular environment to simulate an itemize environment; something like the following:- You must not specify a wrapfigure in any type of list environment or
or immediately before or immediately after one. It is OK to follow
a list if there is a blank line ("\par") in between.
Code: Select all
\documentclass[11pt]{article}
\usepackage[demo]{graphicx}% the demo option allows compilation without the
% actual figure; suppress it in your actual code
\usepackage{wrapfig}
\usepackage{lipsum}% justo to automatically generate some text
\begin{document}
\begin{tabular}{cp{11cm}}
$\bullet$
&
\begin{wrapfigure}{r}{75mm}
\centering
\includegraphics[width=70mm]{My Pic}
\caption{A test figure}
\label{fig:test}
\end{wrapfigure}
\lipsum[1]\\
$\bullet$ & Second item\\
$\bullet$ & Third item\\
\end{tabular}
\end{document}