我有两个并排的表格。我想通过加宽命令来诱使读者将其视为一个表格toprule
。
在下面的 MWE 中,我想将toprule
猫表加入到狗表,底部规则和中间规则也同样如此。
这是一种按列的顺序而不是按行的顺序输入表格数据的巧妙方法。
MWE 是
\documentclass[10pt]{article}
\usepackage{booktabs}
\begin{document}
\begin{tabular}[t]{l}\toprule
cat\\
cat\\
cat\\
cat\\
cat\\
cat\\\bottomrule
\end{tabular}
\begin{tabular}[t]{l}\toprule
dog\\
dog\\
dog\\
dog\\
dog\\
dog\\\bottomrule
\end{tabular}
\end{document}
答案1
答案2
你可以简单地将tabular
s 包裹在 里面tabular
。例如:
\documentclass[10pt]{article}
\usepackage{booktabs}
\begin{document}
\begin{tabular}{@{}c@{}c@{}}\toprule
\begin{tabular}[t]{l}
cat\\
cat\\
cat\\
cat\\
cat\\
cat\\
\end{tabular}
&
\begin{tabular}[t]{l}
dog\\
dog\\
dog\\
dog\\
dog\\
dog\\
\end{tabular}\\
\bottomrule
\end{tabular}
\end{document}