将图像和段落绑定在一起

将图像和段落绑定在一起

我有多个文本块,每个文本块都与一张图片相关联。我试图将每个图片与其关联的段落单独包装起来,依此类推。我希望下一个文本块和图像在前一个之后开始,并且不相互重叠。以下是我一直在使用的示例代码。以及相应的结果。

%Image for First text block
\begin{wrapfigure}{r}{0.2\textwidth}
    \includegraphics[width=0.19\textwidth]{demo}
\end{wrapfigure}
%First Text
\entry{Abbreviated}{uh-bree-vee-ey-tid}{Adjective}{Constituting a shorter or smaller version of}
\\
%Image for Second text block
\begin{wrapfigure}{r}{0.2\textwidth}
    \includegraphics[width=0.19\textwidth]{demo}
\end{wrapfigure}
%Second Text
\entry{Aberration}{ab-uh-rey-shuh n}{Noun}{The act of deviating from the ordinary, usual, or normal type.}

我得到的输出是,

在此处输入图片描述

而我希望第二个文本和图像块在第一个块结束时开始。

在此处输入图片描述

我如何将图像和文本绑定在一起?

相关内容