在表格中的多行中排版字符

在表格中的多行中排版字符

您将在下面的例子中看到有跨越该表两行的大括号:

在此处输入图片描述

有没有办法在基本表格环境中生成这种排版?

答案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}

在此处输入图片描述

相关内容