左侧为图片,右侧为对应文字

左侧为图片,右侧为对应文字

我有一些数字,想将它们添加到左侧,并在右侧添加相应的文本,并用字母表示顺序,如下图所示。在此处输入图片描述

答案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的超集),则不需要包。bookreportarticletabularx

如果所有内容都适合放在一页上,则将所有条目放入一页,tabular否则每个条目一个条目,tabular以便可以自动完成分页。

根据您的文档调整长度。

如果您想了解有关tabular设置的更多信息,请阅读第 11 章 行和列memoir手册中(> texdoc memnoir)。

相关内容