当使用 xtabular 以双列模式制作长表格时,LaTeX 会在将表格翻转到下一页/列之前留下大量空白。如果表格上方没有文本并且文本位于新部分,则它只会从一个干净的列开始。我已经尝试使用 \flushbottom 和 \raggedbottom 命令,但没有任何帮助。如果我从代码中删除 begin{center},整个过程会变得更糟,并且会将表格完全翻转到新列,即使其上方有文本。如果我从代码中删除'\textcolor{white}{.}'(在下面的例子中,我在表格上方仅使用'.'),表格将从下一列开始,删除标题也无济于事。我做了更多的研究,发现这可能是因为 LaTeX 想要为签名留下太多空间。但是,我找不到如何更改此设置。
\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}