如何在 Latex 中的表格中添加括号?

如何在 Latex 中的表格中添加括号?

我正在尝试让括号看起来像图片中的那样。我目前正在使用 tabulary 包。任何帮助都非常感谢。

在此处输入图片描述

答案1

最简单的方法是将表格环境嵌套在 \left-\right 内,如下所示:

\documentclass{article}
\begin{document}

\begin{tabular}{c c c}
X & is & Y \\
$\left.
  \begin{tabular}{c}
    The happening of his\\
    arrival to-morrow
  \end{tabular}\right\}$ 
&
is 
&
$\left\{
  \begin{tabular}{c}
    an event from which it may be\\
     inferred .....
  \end{tabular}\right.$
\end{tabular}

\end{document}

结果: 表格内的括号

相关内容