KTUG 한국 텍 사용자 그룹

Menu

KTUG :: Q&A 마당

subfigure는 오래되어 subfig나 subcaption을 쓰라고 권장합니다.
https://ctan.org/pkg/subfigure
http://faq.ktug.org/faq/SubfigPackage 를 참조하세요.

psfig는 오래되어 graphicx나 epsfig로 쓰라고 권장합니다.
https://ctan.org/pkg/psfig

그림 세개만 단순히 넣으시려면 폭만 적당히 넓히시고, \vspace로 빈 공간을 주셔도 됩니다.

\begin{figure}
\centering
\includegraphics[width=0.4\textwidth]{test1}
\includegraphics[width=0.4\textwidth]{test2}

\vspace{1cm}

\includegraphics[width=0.4\textwidth]{test3}
\caption{Test}\label{fig:test}
\end{figure}

KTUG 한국 텍 사용자 그룹