方程编号不正确

方程编号不正确

我在使用小节编写报告时遇到了方程式编号问题。每当我标记方程式并引用它们时,我都希望只获取方程式的编号,但是对于同一个小节中的方程式,当我引用它们时似乎会得到相同的方程式编号。有人能帮忙吗?我敢肯定这可能是一件愚蠢的事情。

\documentclass[a4paper,11pt]{article}

\usepackage{amsmath}


\begin{document}

\section{Section 1}



\subsection{SubSection 1}

Random equation shown below:

\begin{equation}
v = \frac{d}{t}
\end{equation}
\label{eq:1}

This is Equation \ref{eq:1}. Another equation is:


\begin{equation}
E = mc^2
\end{equation}
\label{eq:2}

This is Equation \ref{eq:2}.

\subsection{Subsection 2}

This is another random equation:

\begin{equation}
F = ma
\end{equation}
\label{eq:3}

This is Equation \ref{eq:3}.
\end{document}

这是所附代码为我生成的。方程编号相同,但引用了两个不同的方程。

相关内容