0
첨부 된 그림과 같이 한 페이지에 3 개의 하위 그림 4 세트를 정렬하고 싶습니다. 각 4 세트의 하위 구성에서 고유 한 숫자와 캡션을 갖기를 원합니다. 하위 메뉴를 배치 할 수있는 분기로 페이지를 분할 할 수 있습니까? .한 페이지에 여러 개의 하위 숫자가 배열되어 있습니다.
첨부 된 그림과 같이 한 페이지에 3 개의 하위 그림 4 세트를 정렬하고 싶습니다. 각 4 세트의 하위 구성에서 고유 한 숫자와 캡션을 갖기를 원합니다. 하위 메뉴를 배치 할 수있는 분기로 페이지를 분할 할 수 있습니까? .한 페이지에 여러 개의 하위 숫자가 배열되어 있습니다.
보조 구성 컬렉션을 minipage
안에 배치 할 수 있습니다. 각각 하나의 번호는 \subcaption
이고 그 자체는 \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}