答案1
这是使用 来实现的一种方法tabular
。
% figtextprob.tex SE 554582
%\documentclass{memoir} % or the article/report/book class with tabularx
\documentclass{article} \usepackage{tabularx}
\usepackage{graphicx} % for including graphical images
\usepackage{mwe} % provides some sample images
\begin{document}
\begin{tabular}{m{0.5cm}m{0.2\textwidth}m{0.7\textwidth}}
(H) & \includegraphics[width=0.2\textwidth]{example-image-a} & His colleague
asks him, ``Why are you so cold?'' \\
\end{tabular}
\begin{tabular}{m{0.5cm}m{0.2\textwidth}m{0.7\textwidth}}
(I) & \includegraphics[width=0.2\textwidth]{example-image-b} & Bill replies,
``I forgot my coat, and it started snowing while I was walking to work!'' \\
\end{tabular}
\end{document}
如果您使用类( 、和类memoir
的超集),则不需要包。book
report
article
tabularx
如果所有内容都适合放在一页上,则将所有条目放入一页,tabular
否则每个条目一个条目,tabular
以便可以自动完成分页。
根据您的文档调整长度。
如果您想了解有关tabular
设置的更多信息,请阅读第 11 章 行和列在memoir
手册中(> texdoc memnoir
)。