图形标题位于图形阵列中

图形标题位于图形阵列中

我有一组 7 个数字(第 1 行有 4 个数字,第 2 行有 3 个数字),我想将它们放在一起,并且我希望标题位于第八个数字(第 2 行第 4 列)的位置。如下所示:

在此处输入图片描述

我该如何做呢?

答案1

您可以在里面\caption设置:tabularfigure

在此处输入图片描述

\documentclass{article}

\usepackage[margin=1in]{geometry}% Just for this example
\usepackage{graphicx}

\begin{document}

\begin{figure}
  \centering
  \begin{tabular}{ *{4}{p{.2\linewidth}} }
    \includegraphics[width=\linewidth]{example-image-a} &
    \includegraphics[width=\linewidth]{example-image-a} &
    \includegraphics[width=\linewidth]{example-image-a} &
    \includegraphics[width=\linewidth]{example-image-a} \\
    \raisebox{-\height}{\includegraphics[width=\linewidth]{example-image-b}} &
    \raisebox{-\height}{\includegraphics[width=\linewidth]{example-image-b}} &
    \raisebox{-\height}{\includegraphics[width=\linewidth]{example-image-b}} &
    \caption{Here is my caption. I would like it to be located in this position.}
  \end{tabular}
\end{figure}

\end{document}

可能需要注意图像(如上图所示B)的垂直对齐相对于\caption(“将其提升”到位)的位置。

相关内容