我想用方程编号来表示下面的方程。但 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}