如何在对齐环境中引用多个方程式

如何在对齐环境中引用多个方程式

我有这个

\begin{align} \label{components-endomorphism-curvature}
       \tilde{R}_{ABCD} = R_{ABCD},\\
       \tilde{R}_{0ABC} = 0,\\
       \tilde{R}_{0A0B} = e^{2f} \left( \overline{\nabla}_A \overline{\nabla}_B f + \overline{\nabla}_A f \overline{\nabla}_B f \right).
\end{align}

这使

在此处输入图片描述

我想具体引用 (2.7) 和 (2.9),但使用命令时只出现 (2.7) \ref{components-endomorphism-curvature}。我该如何引用 (2.7) 和 (2.9)?

提前致谢!

答案1

实际上,使用您展示的代码,只有三个方程中的第一个方程被标记。您需要为每个要引用的方程添加一个标签。

\documentclass{article}  
\usepackage{newtxtext, newtxmath}
\begin{document}
\begin{align} 
    \label{components-endomorphism-curvature-1}
       \tilde{R}_{ABCD} = R_{ABCD}, \\
       \tilde{R}_{0ABC} = 0, \\
    \label{components-endomorphism-curvature-3}
       \tilde{R}_{0A0B} = e^{2f} \left( \overline{\nabla}_A \overline{\nabla}_B f + \overline{\nabla}_A f \overline{\nabla}_B f \right).
\end{align}
Here are references to \eqref{components-endomorphism-curvature-1} and \eqref{components-endomorphism-curvature-3}. 
\end{document}

相关内容