동일한 주제에 대한 이미지를 원하면 subfigure
패키지 및 구성을 사용 합니다.
\begin{figure}
\subfigure[first image]{\includegraphics{image}\label{first}}
\subfigure[second image]{\includegraphics{image}\label{second}}
\caption{main caption}\label{main_label}
\end{figure}
예를 들어 두 개의 다른 이미지를 나란히두고 싶다면 다음을 사용할 수 있습니다.
\begin{figure}
\begin{minipage}{.5\textwidth}
\includegraphics{image}
\caption{first}
\end{minipage}
\begin{minipage}{.5\textwidth}
\includegraphics{image}
\caption{second}
\end{minipage}
\end{figure}
열에있는 이미지의 경우 소스에 [1] [2] [3] [4]가 있지만 다음과 같이 표시됩니다.
[1] [3]
[2] [4].
\afterpage
명령이 가장 좋은 대답이다.