2011-01-10 10 views
6

Wie kann ich mehrere Zahlen einfügen, von denen jede eine Beschriftung und Beschriftung hat, ohne Minipage zu verwenden.mehrere Abbildung in Latex mit Bildunterschriften

Ich schrieb diesen Code, aber nur gibt es eine Bildunterschrift :(

\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

Sie wissen, es gibt einen [Stapelaustausch Website] (http://tex.stackexchange.com/) für Latex-Fragen ... – Will

+0

Diese Frage scheint off-topic zu sein, da es sich um Latex handelt. – Thomas

Antwort

14

Blick auf die Subfloats Abschnitt http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions

\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} 
Verwandte Themen