如何在 \begin{cases} 中标注公式标签

如何在 \begin{cases} 中标注公式标签

我想用方程编号来表示下面的方程。但 pdf 文件中没有显示。有人有想法吗?谢谢

\[ \varphi(x,y) =
\begin{cases} \label{ch:five:sec:5:eq4:1}
      1 & if \quad |I(x,y) - \overline{I(x,y)}|> JND_{ST}(x,y), \\
      0 & \quad \quad \quad otherwise \\
   \end{cases}
\]

答案1

这不是\label生成方程式编号的方法:equation而是使用环境。

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}\label{ch:five:sec:5:eq4:1}
\varphi(x,y) =
\begin{cases} 
      1 & \text{if $|I(x,y) - \overline{I(x,y)}|> \mathit{JND}_{\mathrm{ST}}(x,y)$}, \\
      0 & \text{otherwise}
   \end{cases}
\end{equation}

\end{document}

在此处输入图片描述

相关内容