如何由多幅图像制作一个紧密的网格?

如何由多幅图像制作一个紧密的网格?

在 LaTeX 中,如何排版一个图像网格,使图像之间没有空格,外边缘有标签,如下图所示?表格?子图?还是其他?

例如它应该是什么样子

答案1

这是六张图片。你将其设置\tabcolsep为 0,并将每行向后移动一点,以消除行和列之间的空间:

在此处输入图片描述

\documentclass{article}
\usepackage{graphicx}
\usepackage{array}

\setlength{\tabcolsep}{0pt}

\begin{document}
        \begin{table}
            \centering
            \caption{Picture grid.\label{tab:picturegrid}}
                \begin{tabular}{ccc}
                     \includegraphics[width=0.3\linewidth]{homer-simpson.png}
                    & \includegraphics[width=0.3\linewidth]{homer-simpson.png}
                    & \includegraphics[width=0.3\linewidth]{homer-simpson.png}\\[-4pt]
                     \includegraphics[width=0.3\linewidth]{homer-simpson.png}
                    & \includegraphics[width=0.3\linewidth]{homer-simpson.png}
                    & \includegraphics[width=0.3\linewidth]{homer-simpson.png}\\[-4pt]
                \end{tabular}%
        \end{table}
\end{document}

相关内容