2011-01-10 2 views
6

미니 페이지를 사용하지 않고 캡션과 레이블이있는 숫자를 각각 어떻게 삽입 할 수 있습니까? 캡틴이있는 라텍스의 여러 그림

나는이 코드를 작성하지만, 단 하나의 자막 :( http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions의 Subfloats 섹션에서

\begin{figure}[htp] 

    \centering 

    \label{figur}\caption{equation...} 

    \begin{tabular}{cc} 

    % Requires \usepackage{graphicx} 

    \includegraphics[width=60mm]{explicit3185.eps}& 

    \includegraphics[width=60mm]{explicit3183.eps}\\ 

    \includegraphics[width=60mm]{explicit1501.eps}& 

    \includegraphics[width=60mm]{explicit23185.eps}\\ 

    \includegraphics[width=60mm]{explicit23183.eps}& 

    \includegraphics[width=60mm]{explicit21501.eps}\\ 

    \end{tabular} 

\end{figure} 
+8

알다시피, [스택 교환 사이트] (http://tex.stackexchange.com/) 라텍스 질문에 대한 ... – Will

+0

이 질문은 라텍스에 관한 주제이기 때문에 논란이되고 있습니다. – Thomas

답변

14

봐이

\begin{figure}[htp] 
    \centering 
    \label{figur}\caption{equation...} 

    \subfloat[Subcaption 1]{\label{figur:1}\includegraphics[width=60mm]{explicit3185.eps}} 
    \subfloat[Subcaption 2]{\label{figur:2}\includegraphics[width=60mm]{explicit3183.eps}} 
    \\ 
    \subfloat[Subcaption 3]{\label{figur:3}\includegraphics[width=60mm]{explicit1501.eps}} 
    \subfloat[Subcaption 4]{\label{figur:4}\includegraphics[width=60mm]{explicit23185.eps}} 
    \\ 
    \subfloat[Subcaption 5]{\label{figur:5}\includegraphics[width=60mm]{explicit23183.eps}} 
    \subfloat[Subcaption 6]{\label{figur:6}\includegraphics[width=60mm]{explicit21501.eps}} 

\end{figure}