I have 2 equations. When I use \ref{} for the second equation, it gives the correct number but directs to the wrong place. How can I fix this? Thanks
\documentclass[12pt]{article}
\usepackage{amsmath}
\numberwithin{equation}{subsection}
\usepackage{hyperref}
\begin{document}
\section{Chapter 16}
\subsection{16.2}
\begin{equation}
\int_{C}f(x,y)ds=\int_{a}^{b}f\left(x(t),y(t)\right)\cdot |\vec{r}\,'(t)|\cdot dt
\label{2d}
\end{equation}
\subsection{16.3}
See \ref{2d}
\subsection{16.6}
\begin{equation}
|\vec{r}_x\times \vec{r}_y|=\sqrt{1+\left(\dfrac{\partial f}{\partial x}\right)^2+\left(\dfrac{\partial f}{\partial y}\right)^2}
\label{area}
\end{equation}
\subsection{16.7}
See \ref{area}
\end{document}
latextwice? – Sigur Jul 31 '14 at 01:17