您将在下面的例子中看到有跨越该表两行的大括号:
有没有办法在基本表格环境中生成这种排版?
答案1
您可以使用bigdelim
:
\documentclass{article}
\usepackage{multirow,bigdelim}
\usepackage{booktabs}
\begin{document}
\begin{tabular}{lccr}
\toprule
text & \ldelim\{{3}{0pt} & 6 & text \\
text & & 3 & text \\
text & & 8 & text \\
text & \ldelim\{{3}{0pt} & 7 & text \\
text & & 4 & text \\
text & & 2 & text \\
\bottomrule
\end{tabular}
\end{document}