在 booktabs 中扩展 toprule 等

在 booktabs 中扩展 toprule 等

我有两个并排的表格。我想通过加宽命令来诱使读者将其视为一个表格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

这很容易实现...只需在表格之间添加% 以防止它们之间有空格:

在此处输入图片描述

\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}

答案2

你可以简单地将tabulars 包裹在 里面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}

嵌套表

相关内容