我有两个 longtable,我想将它们并排放置。表格环境工作得很好,但我认为不可能将 longtable 并排放置(为什么?)。
它需要是一个 longtable 或类似的包,因为表格的长度将超过一页。以下是两个表格的示例:
\documentclass{article}
\begin{document}
\begin{longtable}{|c|c|}
\caption{First Results} \\
\hline
28\% & 33\% \\
22\% & 36\% \\
58\% & 49\% \\
4\% & 89\% \\
\hline
\end{longtable}
\begin{longtable}{|c|c|}
\caption{Second Results} \\
\hline
24\% & 64\% \\
76\% & 22\% \\
2\% & 8\% \\
32\% & 55\% \\
\hline
\end{longtable}
\end{document}
答案1
longtable
以下是Mike Renfro 建议的最低限度破坏性的解决方案:
\documentclass{article}
\usepackage{longtable}
\begin{document}
\begin{longtable}{c|c|c|cp{.3\linewidth}c|c|c|c}
\multicolumn{4}{c}{Table \thetable\ First Results} & \multicolumn{1}{c}{\stepcounter{table}} & \multicolumn{4}{c}{Table \thetable\ Second Results} \\
\cline{2-3}\cline{7-8}
& 28\% & 33\% & & & & 24\% & 64\% \\
& 22\% & 36\% & & & & 76\% & 22\% \\
& 58\% & 49\% & & & & 2\% & 8\% \\
& 4\% & 89\% & & & & 32\% & 55\%\\
\cline{2-3}\cline{7-8}
\end{longtable}
\end{document}
然而,最好遵循书签文档并添加更多空格,省去垂直规则:
\documentclass{article}
\usepackage{array,longtable,booktabs}
\begin{document}
\begin{longtable}{cc>{\hspace*{.01\linewidth}}c<{\hspace*{.1\linewidth}}cc}
\caption{Results}\\
\toprule
\multicolumn{2}{c}{First Results} & & \multicolumn{2}{c}{Second Results}\\\midrule\endhead
\bottomrule\endfoot
28\% & 33\% & & 24\% & 64\% \\
22\% & 36\% & & 76\% & 22\% \\
58\% & 49\% & & 2\% & 8\% \\
4\% & 89\% & & 32\% & 55\%\\
\end{longtable}
\end{document}
但你也可能考虑如何设置信息。如果所有结果都是百分比结果,你可以将其放在表格标题中,然后将第一个和第二个结果显示为原始数字。在这个版本中,我还使用了希尼奇包来很好地处理数值:
\documentclass{article}
\usepackage{array,longtable,booktabs,siunitx}
\begin{document}
\begin{longtable}{SS>{\hspace*{.01\linewidth}}c<{\hspace*{.1\linewidth}}SS}
\caption{Results (\%)}\\
\toprule
\multicolumn{2}{c}{First} & & \multicolumn{2}{c}{Second}\\\midrule\endhead
\bottomrule\endfoot
28 & 33 & & 24 & 64 \\
22 & 36 & & 76 & 22 \\
58 & 49 & & 2 & 8 \\
4 & 89 & & 32 & 55\\
\end{longtable}
\end{document}