如何使用表格/数组排列图形

如何使用表格/数组排列图形

可能重复:
如何在表格中使用图像?

我正在寻找一种解决方案,用于自动对齐 tex 文件中的图形。我想让它尽可能简单。我有以下想法,但不知道如何实现。有人有什么建议吗?

\begin{tabular}{ll}
%\hline
\begin{figure} \includegraphics{pic.eps} \end{figure} & \begin{figure} \includegraphics{pic.eps} \end{figure} \\
\begin{figure} \includegraphics{pic.eps} \end{figure} & \begin{figure} \includegraphics{pic.eps} \end{figure} \\
\begin{figure} \includegraphics{pic.eps} \end{figure} & \\
%\hline
\end{tabular}

当然,如果我只输入以下内容,LaTeX 就会生成一个自动断开的两列表格,那就更好了。

\begin{tabular}{ll}
\includegraphics{pic.eps}
\includegraphics{pic.eps}
\includegraphics{pic.eps}
\includegraphics{pic.eps}
\includegraphics{pic.eps}
\end{tabular}

我希望最终结果如下

在此处输入图片描述

答案1

如果你的图形有特定的宽度(比如说大约.48\textwidth或类似的,你也可以使用subfigure包, http://ftp.twaren.net/Unix/TeX/CTAN/obsolete/macros/latex/contrib/subfigure/subfigure.pdf 使用示例 3.1(第 15 页)使用包选项raggedright。这种方法的优点是,如果您在一行中有 2 个高度不同的图像,则其他包选项和垂直对齐方式会更好。当然还有子图标题,我非常喜欢。

相关内容