【问题标题】:Multiple sub-figures arranged on one page多个子图排列在一页上
【发布时间】:2017-11-07 17:14:36
【问题描述】:

我想将 4 组 3 个子图排列在一页上,如附图所示。我希望 4 组子图中的每一个都有自己的图号和标题。 是否可以将页面拆分为可以放置子图的区域? .

【问题讨论】:

    标签: latex figure subfigure


    【解决方案1】:

    您可以将子图集合放在minipage 中。每一个都有多个\subcaptions 和它自己的\caption。可以根据需要更改间距。

    \documentclass{article}
    
    \usepackage{graphicx,subcaption}
    
    \begin{document}
    
    \begin{figure}
      \centering
      \begin{minipage}{.48\linewidth}
        \centering
        \subcaptionbox{First top left}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-a}}
    
        \subcaptionbox{Second top left}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-b}}
    
        \subcaptionbox{Third top left}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-c}}
    
        \caption{Top left}
      \end{minipage}\quad
      \begin{minipage}{.48\linewidth}
        \centering
        \subcaptionbox{First top right}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-a}}
    
        \subcaptionbox{Second top right}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-b}}
    
        \subcaptionbox{Third top right}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-c}}
    
        \caption{Top right}
      \end{minipage}
    
      \bigskip
    
      \begin{minipage}{.48\linewidth}
        \centering
        \subcaptionbox{First bottom left}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-a}}
    
        \subcaptionbox{Second bottom left}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-b}}
    
        \subcaptionbox{Third bottom left}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-c}}
    
        \caption{Bottom left}
      \end{minipage}\quad
      \begin{minipage}{.48\linewidth}
        \centering
        \subcaptionbox{First bottom right}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-a}}
    
        \subcaptionbox{Second bottom right}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-b}}
    
        \subcaptionbox{Third bottom right}
          {\includegraphics[width=\linewidth,height=50pt]{example-image-c}}
    
        \caption{Bottom right}
      \end{minipage}
    \end{figure}
    
    \end{document}
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-01-02
      • 1970-01-01
      • 1970-01-01
      • 2015-10-20
      相关资源
      最近更新 更多