如果我不想要右括号,那么哪种 LaTeX 比较合适?或者,我应该以不同的方式设置左括号吗?
\begin{align*}
r_{sj} &=
\left\{ \begin{array}{lc}
1 & \text{if $Y_j$ is observed in $s$} \\
0 & \text{if $Y_j$ is missing in $s$}
\end{array} \right
\end{align*}
在这里,我并不想\right\}
在文中提及。
但我在编译时收到缺少分隔符的错误
答案1
对于这种事情,有一个cases
环境。如果第二列主要由文本组成,您可能想要使用cases*
from mathtools
。如果您有其他构造, wherecases
不适用,您可以使用.
as in插入“空”分隔符\right.
。
\documentclass{article}
\usepackage{mathtools}% load amsmath
\begin{document}
\begin{equation*}
r_{sj} =
\begin{cases*}
1 & if $Y_j$ is observed in $s$ \\
0 & if $Y_j$ is missing in $s$ \\
\end{cases*}
\end{equation*}
\end{document}