PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : [B] Caption nicht gleicher hoehe von bild und table [/B]



xathana
05-03-2006, 19:16
Hallo Leute,

ich habe mit :

\begin{figure}[ht]
\begin{minipage}{0.5\textwidth}
\centering
\includegraphics[width=0.84\textwigth]{chapter/bild.png}
\figcaption{das bild}
\label{pic:bild1}
\end{minipage}

\begin{minipage}{0.5\textwidth}
\centering
\begin{tabular}{|c|c|}
\hline
aa & bb \\
12 & 13 \\
\hline
\end{tabular}
\tabcaption{tabelle zum bild}
\label{tabel1}
\end{minipage}
\end{figure}


ein bild links erstellt und rechts eine tabelle. das problem besteht darin das beide caption nicht auf gleicher hoehe sind. Sondern der caption der tabelle an der unterkannte des bildes beginnt und somit oberhalb des bild captions.

weis jemand Rat???

thanks
[B][B]
Xathana

Quax
05-03-2006, 20:55
damit geht es bei mir:

\begin{figure}[ht]
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics[width=0.9\textwidth]{}
\caption{das bild} \label{pic:bild1}
\end{minipage}
\begin{minipage}[b]{0.5\linewidth}
\centering
\begin{tabular}{|c|c|}
\hline
aa & bb \\
12 & 13 \\
\hline
\end{tabular}
\caption{tabelle zum bild} \label{tabel1}
\end{minipage}
\end{figure}