在 \[ \] 环境中指定方程编号

在 \[ \] 环境中指定方程编号

我是乳胶新手,所以如果这是一个愚蠢的问题,请原谅我。我想为方程式分配一个数字,并且我已经定义了一个像这样的方程式-

\[
    I^e(x,y) = \left\{\begin{array}{rl}
        1 & \text{if edge is detected at pixel I(x,y)}\\
        0 & \text{otherwise}\\
        \end{array}\right.
\]

答案1

使用 equation环境,更简单的是环境cases*(加载mathtools,的扩展amsmath)。以下是代码:

\begin{equation}
I^e(x,y) = \begin{cases*}
        1 & if edge is detected at pixel $I(x,y)$\\
        0 & otherwise
        \end{cases*}
\end{equation}

相关内容