在我的 Latex 中,我使用
\usepackage{chngcntr} \counterwithin{equation}{section}
它来分段跟踪我的方程环境,但是当我标记然后引用标签时,它指的是相应的部分,而不是我希望引用的环境。
有人能指出我在这里遗漏了什么吗,具体地、独立地提及任何环境及其部分或小节或其他什么吗?!
答案1
也许这会有帮助。
% https://tex.stackexchange.com/questions/54241
\documentclass{article}
\usepackage{amsmath}
\numberwithin{equation}{section} % <-- Important
\begin{document}
\section{Here is a section}
\begin{equation}
f(x)=x^2+\sin(x)
\label{eq:lala}
\end{equation}
See \eqref{eq:lala}. Equation \ref{eq:lala} is pretty nice.
\end{document}