Latex 中的具体方程式

Latex 中的具体方程式

我怎样才能得到这个等式?

在此处输入图片描述

答案1

\documentclass{article}

\usepackage{mathtools}

\begin{document}
 \begin{equation}
      Z = \begin{cases}
          1 & \text{if the outcome is a success} \\
          0 & \text{if the outcome is a failure}
 \end{cases}
 \end{equation}
 \begin{equation}
      Z = \begin{cases*}
          1 & if the outcome is a success \\
          0 & if the outcome is a failure
 \end{cases*}
 \end{equation}

\end{document}

在此处输入图片描述

cases由 提供的amsmath(由 加载mathtoolscases*则由后者提供。其中第二列处于文本模式,因此无需使用text宏。还mathtools提供了一些其他cases类似的环境。以下是手册中的屏幕截图(第 3.4.3 节,第 18 页):

在此处输入图片描述

相关内容