跳过一个子图

跳过一个子图

我想创建这样的子图。跳过第二行的第一个图像(编号也是如此),并且图像垂直对齐。有人能帮忙吗?

答案1

这将提供您在问题中展示的基本布局。它使用该subfig包在一个更大的环境中布局多个子图figure。为了使下行与上行右侧对齐,在行的开头添加了一些水平间距,以将所有内容向右移动相当于一个子图的宽度。

\documentclass{article}
\usepackage{subfig, graphicx}
\begin{document}

  \begin{figure}
      \centering
      \captionsetup[subfigure]{justification=centering}
      \subfloat[]{\includegraphics[width=.2\textwidth]{example-image-a}}\quad
      \subfloat[]{\includegraphics[width=.2\textwidth]{example-image-a}}\quad
      \subfloat[]{\includegraphics[width=.2\textwidth]{example-image-a}}\quad
      \subfloat[]{\includegraphics[width=.2\textwidth]{example-image-a}}

      \hspace*{.2\textwidth}\quad
      \subfloat[]{\includegraphics[width=.2\textwidth]{example-image-a}}\quad
      \subfloat[]{\includegraphics[width=.2\textwidth]{example-image-a}}\quad
      \subfloat[]{\includegraphics[width=.2\textwidth]{example-image-a}}

      \caption{Optional caption}\label{fig:myfigure}
  \end{figure}

\end{document}

子图对齐不均匀

相关内容