PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Longtable und caption (zwei Fragen)



PeterPresssack
08-05-2006, 23:34
Hei,


Ich habe zwei Probleme mit longtables und captions. Vielleicht kann mir ja jemand von euch helfen, damit ich ruhig schalfen kann.

1. Wenn in meinem Dokument ein longtable genau am Ende einer Seite abschließt, wird die caption auf der nächsten Seite angezeigt. Ist das normal, oder kann man dagegen etwas machen (wovon ich stark ausgehe)???
Ich sollte vielleicht noch hinzufügen, dass ich die caption auf jeden Fall am Ende der Tabelle haben möchte.

2. Der Abstand zwischen einem longtable und der zugehörigen caption erscheint mir ziemlich groß. Ist es möglich, diesen zu verkleinern???


Der Code für eine longtable schaut bei mir folgendermaßen aus. Vielleicht hilft euch der ja weiter.

\begin{center}
\begin{longtable}{| p{2.5cm} | p{8.5cm} |}
\hline \endhead
\hline \endfoot
\textbf{Number} & \#1 \\ \hline
\textbf{Result} & ok \\ \hline
\textbf{Description} & ... \\ \hline
\textbf{Comments} & ...\\ \hline
\textbf{Performed by} & Ketil and Rolf \\
\end{longtable}
\captionof{table}{Mobile blogging plug-in test results for test \#1}
\label{tab:mobile_blogging_test1}
\end{center}


Servus
Peter

PeterPresssack
09-05-2006, 17:30
Hallo nochmal,


Weiß das hier wirklich niemand???

voss
09-05-2006, 20:14
\begin{center}
\begin{longtable}{| p{2.5cm} | p{8.5cm} |}
\hline \endhead
\hline \endfoot
\textbf{Number} & \#1 \\ \hline
\textbf{Result} & ok \\ \hline
\textbf{Description} & ... \\ \hline
\textbf{Comments} & ...\\ \hline
\textbf{Performed by} & Ketil and Rolf \\
\end{longtable}
\captionof{table}{Mobile blogging plug-in test results for test \#1}
\label{tab:mobile_blogging_test1}
\end{center}


\begin{center}

longtable ist sowieso zentriert!


....
\textbf{Comments} & ...\\ \hline
\textbf{Performed by} & Ketil and Rolf \\
\caption{table}{Mobile blogging plug-in test results for test \#1}\label{tab:mobile_blogging_test1}
\end{longtable}


captionof ist hier fehl am Platze ...

Herbert