2017-11-07 16 views

답변

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}