我想对某些方程式使用自定义标签,但系统不允许我这样做。以下是 MWE:
\documentclass{article}
\usepackage{amsmath,cases}
\begin{document}
\begin{equation}
x=y\tag{custom1}\label{eq:1}
\end{equation}
\begin{numcases}{}
x=y \tag{custom2}\label{eq:2}
\end{numcases}
Why can I do \eqref{eq:1}, but not \eqref{eq:2}?
\end{document}
这将产生以下输出:
我自然希望第二个\eqref
显示为(custom2)。