如何像这样在乳胶中添加三个图形(两个在第一行,一个在下面)?

如何像这样在乳胶中添加三个图形(两个在第一行,一个在下面)?

如何像这样在乳胶中添加三个图形(两个在第一行,一个在下面)?

(a)  (b)   % // (a) and (b) should be in the first row.
(c)

我希望手稿文本出现在图(c)的右侧。

答案1

像这样:

在此处输入图片描述

代码如下:

\documentclass{article}
\usepackage{mwe}
\usepackage{graphicx}
\begin{document}

  \begin{tabular}{cc}
    \includegraphics[width=0.3\textwidth]{example-image-a}
        & \includegraphics[width=0.3\textwidth]{example-image-b}\\
    \includegraphics[width=0.3\textwidth]{example-image-c} &
  \end{tabular}

\end{document}

相关内容