I am including an image with the graphicx package in an enumerated list.
\begin{enumerate}
\item
\includegraphics[width=100px]{my_image.png}
\end{enumerate}
The list item number appears on the bottom left of the image. I tried to place the list item number above left of the image with a new line to no avail.
\begin{enumerate}
\item
\newline
\includegraphics[width=100px]{my_image.png}
\end{enumerate}
How do I place the list item number above left of the image?
