这是我的问题,我不知道如何在枚举数字的底部添加图片或文字。因此我甚至无法编写代码。枚举的底部有一张图片或/和两张图片或/和小文本。
我没有找到重复的另一个问题。那么,有人知道如何修复它吗?
修改引文:电路基础第 4 版 - C. Alexander、M. Sadiku (McGraw-Hill,2009) 第 444 页
答案1
在这里,我使用堆栈将图像或文本放置在标签下方。
\documentclass{article}
\usepackage[usestackEOL]{stackengine}
\renewcommand\useanchorwidth{T}
\usepackage{graphicx}
\begin{document}
\begin{enumerate}
\item first
\item[\refstepcounter{enumi}\stackunder{\theenumi.}{%
\includegraphics[scale=.02]{example-image}}] second
\item[\refstepcounter{enumi}\stackunder{\theenumi.}{%
\tiny Boo!}] third
\item[\refstepcounter{enumi}\stackunder{\theenumi.}{%
\Shortstack{\includegraphics[scale=.02]{example-image}\\
\includegraphics[scale=.02]{example-image-B}}}] fourth
\item fifth
\end{enumerate}
\end{document}
如果枚举标签后面的文本不止一行,您可能希望\smash
标签避免干扰项目的行距。例如,如果上述 MWE 中的项目 4 是多行的,则可能会这样写,并使用破碎的标签:
\item[\refstepcounter{enumi}\smash{\stackunder{\theenumi.}{%
\Shortstack{\includegraphics[scale=.02]{example-image}\\
\includegraphics[scale=.02]{example-image-B}}}}] fourth
item in a long list of items. The number four follows the
number three and occurs prior to the number five. If you look
closely, you will see that the smashed label allows even spacing
in the item.