großer weißer Bereich unter dem Tisch mit xtabular

großer weißer Bereich unter dem Tisch mit xtabular

Beim Erstellen einer langen Tabelle im Zweispaltenmodus mit xtabular lässt LaTeX jede Menge Leerraum, bevor es die Tabelle auf die nächste Seite/Spalte umblättert. Wenn über der Tabelle kein Text steht und sie sich in einem neuen Abschnitt befindet, beginnt sie einfach in einer leeren Spalte. Ich habe bereits versucht, die Befehle \flushbottom und \raggedbottom zu verwenden, und nichts hilft. Wenn ich begin{center} aus dem Code entferne, funktioniert das Ganze noch schlechter und die Tabelle wird komplett in eine neue Spalte umgeblättert, selbst wenn darüber Text steht. Wenn ich „\textcolor{white}{.}“ (im folgenden Beispiel verwende ich nur „.“ über der Tabelle) aus dem Code entferne, beginnt die Tabelle in der nächsten Spalte, das Löschen der Überschrift hilft auch nicht. Ich habe ein wenig weiter recherchiert und herausgefunden, dass dies daran liegen könnte, dass LaTeX zu viel Platz für die Signatur lassen möchte. Ich kann jedoch nicht herausfinden, wie ich dies ändern kann.

\documentclass[twocolumn]{article}
\usepackage{booktabs}
\usepackage{xtab}

\begin{document}
    
    \setlength{\tabcolsep}{7pt}
    {
    \topcaption{Some Caption} 
    \tablefirsthead{ \multicolumn{5}{c}{first line}
    \\\toprule 1& 2& 3& 4& 5\\ \midrule}
    \tablehead{
    \multicolumn{5}{c}
    {{  \thetable\}} \\
    \toprule
    1  & 2  & 3  & 4 & 5 \\ \midrule}
    \tabletail{
    \midrule}
    \tablelasttail{%
    \bottomrule}
     \begin{center}\begin{xtabular}{c|cccc}
     \multicolumn{5}{c}{some text}   \\\midrule
    1.   & text         & text          & text      & text              \\
    2.   & text         & text          & text      & text               \\
    3.   & text         & text          & text      & text               \\
    4.   & text         & text          & text      & text               \\
    5.   & text         & text          & text      & text               \\
    6.   & text         & text          & text      & text               \\
    7.   & text         & text          & text      & text               \\
    8.   & text         & text          & text      & text               \\
    1.   & text         & text          & text      & text              \\
    2.   & text         & text          & text      & text               \\
    3.   & text         & text          & text      & text               \\
    4.   & text         & text          & text      & text               \\
    5.   & text         & text          & text      & text               \\
    6.   & text         & text          & text      & text               \\
    7.   & text         & text          & text      & text               \\
    8.   & text         & text          & text      & text               \\
    1.   & text         & text          & text      & text              \\
    2.   & text         & text          & text      & text               \\
    3.   & text         & text          & text      & text               \\
    4.   & text         & text          & text      & text               \\
    5.   & text         & text          & text      & text               \\
    6.   & text         & text          & text      & text               \\
    7.   & text         & text          & text      & text               \\
    8.   & text         & text          & text      & text               \\
    1.   & text         & text          & text      & text              \\
    2.   & text         & text          & text      & text               \\
    3.   & text         & text          & text      & text               \\
    4.   & text         & text          & text      & text               \\
    5.   & text         & text          & text      & text               \\
    6.   & text         & text          & text      & text               \\
    7.   & text         & text          & text      & text               \\
    8.   & text         & text          & text      & text               \\
    
    \end{xtabular}
    \end{center}
    }
\end{document}

Bildbeschreibung hier eingeben

verwandte Informationen