2017-11-07 4 views
0

添付写真のように1ページに3セットの4つのサブ図を配置したいと思います。私は、4つのサブセットのそれぞれに独自のFigure数とキャプションを持たせたいと思っています。 サブページを配置できる四半期にページを分割することはできますか? enter image description here1ページに複数のサブ図が配置されています

答えて

0

minipageの中にサブ構成のコレクションを配置することができます。それぞれの番号は\subcaptionで、それ自体は\captionです。間隔は必要に応じて変更できます。

enter image description here

\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} 
関連する問題