1

I would like to make an enumerated list with pictures below the text. Something like this

enter image description here

I have tried the minipage before, as mentioned in What's the best way to include graphics in an enumerated list?. But the result seems not really what I want. Instead of putting the picture below the text, it put the picture beside the text, which is very annoying. Is there any other way?

Edoardo
  • 35
  • 3

1 Answers1

0

It shouldn't matter, in terms of achieving your formatting objective, whether or not you encase the image in a minipage. What's crucial is to leave an empty line between the \item line and the image/minipage code.

enter image description here

\documentclass{article} % or some other suitable document class
\usepackage[demo]{graphicx} % remove 'demo' option in real document

\begin{document} \begin{itemize} \item Morlet wavelet

\includegraphics{my_pic_1} % note the blank line before this line

\item Gabor wavelet

\begin{minipage}{\linewidth} % note the blank line before this line \includegraphics{my_pic_2} \end{minipage}

\item Mexican Hat wavelet

\includegraphics{my_pic_3} % note the blank line before this line

\end{itemize} \end{document}

Mico
  • 506,678