我想制作一个带有图片的枚举列表,文字下方是图片。类似这样的
我minipage
之前已经尝试过,正如提到的在枚举列表中包含图形的最佳方法是什么?。但是结果好像不是我想要的。图片不是放在文字下面,而是放在文字旁边,很烦人。还有其他办法吗?
答案1
就实现您的格式化目标而言,是否将图像包含在 中并不重要minipage
。重要的是留空行\item
在线和图像/小页面代码之间。
\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}