等式一边带有花括号的多行

等式一边带有花括号的多行

我正在尝试写一个如下所示的等式,其中所有内容都应该在右侧左对齐。

在此处输入图片描述

我正在使用下面的代码来写这个等式。

  \begin{equation}
  D_{it} = \Bigg\{if \ bank \ i \ issues \ ABS \ at \ time \ t \\
  2 \ if \ bank \ i \ issue \ CBs \ at \ time \ t \\ 
  \ 0 \ otherwise
  \end{equation}

我正在输入\\一条新线,但它不起作用。请指导我如何写出所需的方程式。

答案1

使用cases环境,像这样。

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
  D_{it} =
    \begin{cases}
      1 & \text{if bank $i$ issues ABs at time $t$}\\
      2 & \text{if bank $i$ issues CBs at time $t$}\\
      0 & \text{otherwise}
    \end{cases}       
\end{equation}
\end{document}

在此处输入图片描述

相关内容