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