I'm trying to recreate a national math exam in LaTeX, but I'm struggling to put a figure besides the number of the question.
The original idea was to make the final product like this:
Question 16 (here woukd lie the centered picture, with the question number at the margin of the paper)
Here would be the statement of the question
And here would be the answer options, aligned with the statement.
a) Alternative A
b) Alternative B
c) Alternative C
d) Alternative D
e) Alternative E
But when I tried to type:
\item
\begin{figure}[H]
\centering
\includegraphics[scale=0.4]{figure.png}
\end{figure}
If the hemisphere, the cylinder and the right circular cone have the same volume, it is true that
\begin{enumerate}[a)]
\item $h-R+2R=0$
\item $2h-2R-3H=0$
\item $2h-R+3H=0$
\item $2h+2R-H=0$
\item $h-3R+H=0$
\end{enumerate}
it made the final text like this:
When I desired to make the text like this:
How can I turn the first image like the second?
(I made the second image on Paint, I don't know how to do it properly in LaTeX)



\includegraphics. – Fran Feb 10 '24 at 14:14