I want to use wrapfigure in the enumerate environment. For example,
\documentclass[11pt, a4paper]{article}
\usepackage{graphicx}
\usepackage{float}
\usepackage{wrapfig}
\begin{document}
\normalsize
{\bf Multiple Choice: }
\begin{enumerate}
\item \begin{wrapfigure}{r}{4.5cm}
\includegraphics[scale=0.5]{Exam1_Fig1.jpg}
\end{wrapfigure}
As shown in the figure. This rock is phaneritic and contains quartz, K-feldspar, and plagioclase in nearly equal amounts. What is it? \\
(A) rhyolite \\
(B) basalt \\
(C) diorite \\
(D) ash-flow tuff \\
(E) granite \\
\end{enumerate}
\end{document}
However, the figure inserted is not wrapped by the text, but put in a strange position. How to fix the problem?
Thank you!

minipage, note that you can usewrapfigureinside it. – corwin.amber Sep 23 '21 at 15:51