PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Ausrichtung von caption



smoothy
06-03-2006, 08:31
Hallo,

der Code :


\begin{table}[htp]
\begin{tabular}{l l}
blubb & blubb \\
\hline
blubb & blubb \\
blubb & blubb \\
blubb & blubb \\
blubb & blubb \\
\hline
\end{tabular}
\caption{blubb blubb }
\end{table}

Mein Problem ist, dass die Caption zentriert in der Mitte des Blattes ist, doch ich möchte es direkt unter die Tabelle haben. Hat jemand eine Lösung ?

mfg smoothy

countbela666
06-03-2006, 15:52
Moin smoothy,

Über-/Unterschriftenformatierungen sind ein Fall für das Paket caption:

\documentclass{article}
\usepackage{caption}
\begin{document}
\captionsetup[table]{justification=RaggedRight,singlelinecheck=false}
\begin{table}[htp]
\begin{tabular}{l l}
blubb & blubb \\
\hline
blubb & blubb \\
blubb & blubb \\
blubb & blubb \\
blubb & blubb \\
\hline
\end{tabular}
\caption{blubb blubb }
\end{table}
\end{document}Grüße,
Marcel

smoothy
07-03-2006, 08:16
Moin,

es hat geklappt , danke :)

mfg smoothy