在乳胶中编写条件数学方程

在乳胶中编写条件数学方程

嗨,我想在 latex 中写出这个等式。我写了以下几行,但“j”和“and”之间没有空格。请告诉我如何修复它。谢谢。

  \begin{align}
    Y_{ij} = \left\{\begin{array}{lr}
        \sum_{k \sim i}y_{ij}, & \text{if } i = j,\\
        {-y_{ij}}, & \text{if } i \ne j   \text{and } i \sim j,\\
        0, & \text{otherwise.}
        \end{array}
  \end{align}

答案1

dcases*您可以使用以下环境进行更简单的输入mathtoolsd环境名称中的 表示将输入\displaystyle,星号表示第二列将处于文本模式:

\usepackage{mathtools}
...........
 \begin{align}
    Y_{ij} = \begin{dcases*}
        \sum_{k \sim i}y_{ij}, & if $ i = j $,\\
        {-y_{ij}}, & if $ i \ne j $ and $ i \sim j $,\\
        0, & otherwise. 
        \end{dcases*}
  \end{align}

在此处输入图片描述

答案2

您可以使用内部加载的包cases*中的环境。它使您能够在右栏中以正常模式书写,因此您不必担心单词之间的间距。mathtoolsamsmath

\documentclass{article}
\usepackage{mathtools}
\begin{document}

\begin{equation}
Y_{ij} = \begin{cases*}
  \sum_{k\sim i}y_{ij}, & if $i = j$,\\
  -y_{ij},              & if $i \ne j$ and $i \sim j$,\\
  0,                    & otherwise.
\end{cases*}
\end{equation}

\end{document}

在此处输入图片描述

答案3

添加一个空格就可以了,还可以进行一些其他修改。

\begin{align}
    Y_{ij} = \Bigg\{
        \begin{array}{ll}
        \sum_{k \sim i}y_{ij}, & \text{if } i = j,\\
        -y_{ij}, & \text{if } i \ne j \text{ and } i \sim j,\\
        0, & \text{otherwise.}
        \end{array}
\end{align}

在此处输入图片描述

相关内容