如何在两栏纸张上并排放置两个表格?

如何在两栏纸张上并排放置两个表格?

我有一张两栏的纸。在特定的一页中,我打算并排放置两个表格,中间没有间隙(或间隙很小)。下图就是我想要的:

在此处输入图片描述

我使用了不同的方法,但都以混乱的方式呈现。例如:

\begin{table*}
\begin{minipage}[b]{\linewidth}
 \centering
 \begin{tabular}{|| *6{c} ||}
 % some content
 \end{tabular}
 \end{minipage}
 \qquad
 \begin{minipage}[b]{\linewidth}
  \centering
 \begin{tabular}{|| *5{c} ||}
 % some content
 \end{tabular}
 \end{minipage}
\end{table*}

答案1

我正在研究与 Fran 刚刚发布的内容类似的内容。基本想法相同,但有一些修饰。缺少的部分是通过水平线连接垂直线。

\documentclass{article}

\usepackage[table]{xcolor}

\begin{document}

\begin{table}
\setlength\doublerulesep{0.5pt}
\begin{tabular}{|| >{\sffamily}c || *5{>{\sffamily}c} || *5{>{\sffamily}c} ||}
\multicolumn{1}{c}{}& \multicolumn{5}{c}{\sffamily Table 1} & \multicolumn{5}{c}{\sffamily Table 1}\\
\hline\hline
\rowcolor{gray!25} No. & C1 & C2 & C3 & C4 & C5 & C1 & C2 & C3 & C4 & C5 \\
\hline\hline
1  & & & & & & & & & &  \\ \hline
2  & & & & & & & & & &  \\ \hline
3  & & & & & & & & & &  \\ \hline
4  & & & & & & & & & &  \\ \hline
5  & & & & & & & & & &  \\
\hline\hline
 \end{tabular}
\end{table}

\end{document} 

在此处输入图片描述

答案2

不必要的复杂:

\documentclass{article}
\begin{document}
\begin{table*}
 \centering
 \begin{tabular}{|| *6{c} ||}
 x &  x & x & x & x & x \\
 \end{tabular}%
 \begin{tabular}{*5{c} ||}
 x & x & x & x & x \\
 \end{tabular}
\end{table*}
\end{document}

但更简单:两张桌子并排,没有空隙,就是一张桌子。

\documentclass{article}
\begin{document}
\begin{table*}
 \centering
 \begin{tabular}{|| *6{c} || *5{c} ||}
 x & x & x & x & x & x & x & x & x & x & x \\
 \end{tabular}
\end{table*}
\end{document}

相关内容