Seite 1 von 1
Subfigure Querformat
Verfasst: Sa 29. Jun 2013, 18:48
von Gast
Guten Tag,
ich hab meine Diplomarbeit nun nahezu fertig geschrieben und nutze für die Bilderanordnung subfigure packages z.b.
\begin{figure}[H]
\centering
\subfigure[eins]{
\includegraphics[width=0.8\textwidth]{eins.pdf}
} \subfigure[zwei]{
\includegraphics[width=0.8\textwidth]{zwei.pdf}
}
\caption{blub}
\end{figure}
nun würde ich gerne vier Grafiken auf eine Horizontale Seite anordnen. Auch mithilfe des subfigures Befehls. Es sind vier gleich große Grafiken die dann jeweils über eine viertel seite gehen soll.
Weiß jemand wie man des so anordnen kann?
schonmal danke für eure Hilfe
Verfasst: Sa 29. Jun 2013, 19:18
von Epllus
So?
\documentclass{scrartcl}
\usepackage{mwe}
\usepackage{subfigure}
\usepackage{rotating}
\begin{document}
\begin{sidewaysfigure}
\centering
\subfigure[eins]{%
\includegraphics[width=0.49\textheight]{example-image-a}}
\hfill
\subfigure[zwei]{%
\includegraphics[width=0.49\textheight]{example-image-a}}
\hfill
\subfigure[drei]{%
\includegraphics[width=0.49\textheight]{example-image-b}}
\hfill
\subfigure[vier]{%
\includegraphics[width=0.49\textheight]{example-image-c}}
\caption{blub}
\end{sidewaysfigure}
\end{document}
Bitte beachte außerdem immer ein
vollständiges Minimalbeispiel zu machen.
Grüße
Epllus
Bessere Alternative
Verfasst: Sa 29. Jun 2013, 21:01
von Stamm-
Das Paket
subfigure ist
seit langem überholt. Der direkte Nachfolger ist
subfig. Es gibt auch noch
subcaption (aus dem Bündel
caption).
Verfasst: So 30. Jun 2013, 01:07
von Johannes_B
Hier mal eine Möglichkeit mit dem Paket pdflscape.
\documentclass{scrartcl}
\usepackage{mwe}
\usepackage{pdflscape}
\usepackage{subfig}
\begin{document}
\setcounter{lofdepth}{2}%subcaps into lof, same for lot
\listoffigures
\blindtext[4]
\begin{landscape}
\begin{figure}
\centering
\subfloat[list entry1][sub caption1]%
{\includegraphics[width=0.45\textheight]{example-image-a}}\hfil
\subfloat[list entry][sub caption]%
{\includegraphics[width=0.45\textheight]{example-image-b}}\vfil
\subfloat[list entry][sub caption]%
{\includegraphics[width=0.45\textheight]{example-image-c}}\hfil
\subfloat[list entry][sub caption]%
{\includegraphics[width=0.45\textheight]{example-image-a}}
\caption{collective caption}
\end{figure}
\end{landscape}
\end{document}
Bitte wirf aber auch einen Blick ins Caption-Bundle (bereits von Stammgast verlinkt).