当我使用 \eqref 时,它会生成 (2.5)。是否可以生成类似“我的所有者的话”?
答案1
正如 Svend Mortensen 提到的:
\tag{Something}
在等式内使用。
此后您可能更喜欢使用\ref{...}
而不是\eqref{...}
因为它不会产生括号。
为您提供的最小工作示例:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\label{eq:1}\tag{Something} A*B
\end{equation}
The equation is \ref{eq:1}. Or \eqref{eq:1}.
\end{document}
将会输出:
A * B(某物)
这个等式是某物。或者(某物)。