如何引用方程式(Latex 新手)

如何引用方程式(Latex 新手)
\documentclass{article} 

\newcommand{\dd}[1]{\mathrm{d}#1}

\begin{document}
\begin{equation}
\Delta A_2 = x^2
\end{equation}

此代码在此方程旁边放置 (1),并相应地对后面的方程进行编号。如果我想引用此方程,请这样说:

And as you can see in Eq. #, 

我该如何链接它,以便如果方程式编号稍后发生变化,我不必更新文本?

答案1

您可以简单地在环境\label{...}中使用equation\ref{...}引用它。

欲了解更多信息,请参见:https://en.wikibooks.org/wiki/LaTeX/Labels_and_Cross-referencing

记住要编译两次,第一次您将获得??错误的 ref.no.,但不用担心,这是正常的,第二次您将获得正确的数字。

\documentclass{article} 

\begin{document}
Equation \ref{eq:myeq} blah blah blah
\begin{equation}\label{eq:myeq}
\Delta A_2 = x^2
\end{equation}
\end{document}

在此处输入图片描述

如果添加另一个等式,LaTeX 将管理编号:

\documentclass{article} 

\begin{document}
If I add another equation \ref{eq:myneweq},  \LaTeX{} will manage the numbering. 
\begin{equation}\label{eq:myneweq}
\Delta A_1 = x
\end{equation}
Equation \ref{eq:myeq} blah blah blah
\begin{equation}\label{eq:myeq}
\Delta A_2 = x^2
\end{equation}
\end{document}

在此处输入图片描述

答案2

您只需\label{yourlabel}在之后添加\begin{equation}

\begin{equation}\label{equ1}

相关内容