Seite 1 von 1

Subfloat Bilder mit Captionbeside

Verfasst: Fr 13. Sep 2013, 14:50
von akrapovic
Hallo ich möchte gerne zwei Bilder mit SubFloat nebeneinanders stehen haben.
Rechts neben den zwei Bildern voll die Caption mit einer Legende in Form einer Tabelle stehen.
\begin{figure}[!ht]
   \begin{captionbeside}
   [TEXT1]{TEXT11\\
    \begin{tabular}[h]{ll}
        a&a\\
        b&b\\ 
        c&c\\ 
    \end{tabular}}[r]
   \includegraphics[width=0.35\textwidth]{BILD}
  \end{captionbeside}
\end{figure}
\begin{figure}[H]
   \centering
   \subfloat[TEXT1]{\includegraphics[width=0.26\textwidth]{BILD1}}
       \hspace{0.1\textwidth}
   \subfloat[TEXT2]{\includegraphics[width=0.55\textwidth]{BILD1}}
   \caption{TEXT3}
\end{figure}
Die zwei Codes müssten irgendwie miteinander fusioniert werden, damit das klappt. Leider kriege ich das nicht hin.

Verfasst: Fr 13. Sep 2013, 15:52
von Johannes_B
Wo liegt denn das Problem?
\documentclass{scrartcl}
\usepackage{subfig}
\begin{document}
\begin{figure}[!ht]
	\begin{captionbeside}
		[TEXT1]{TEXT11\\
			\begin{tabular}[h]{ll}
				a&a\\
				b&b\\
				c&c\\
			\end{tabular}}[r]
		\subfloat[Text]{
		\rule{0.35\textwidth}{.35\textwidth}}
		\subfloat[Text]{
		\rule{0.35\textwidth}{.35\textwidth}}
		\end{captionbeside}
	\end{figure} 
\end{document}