I'm working to a document in which I would need a particular crossing reference (I know it sound strange but I have a strong reason to look at this). I'd like to know how can I write the preamble in a way such that when I write
\section{Ciao}
Interesting equation:
\begin{equation}\label{ab}
a=b
\end{equation}
\section{Ciao ciao}
Another Interesting equation
\begin{equation}
c=d
\end{equation}
and another equation too
\begin{equation}\label{ef}
e=f
\end{equation}
Now consider \eqref{ab} and \eqref{ef}
I don't get
but instead I get
In other words I'd need to start equation counter in each section from 1, and this is easily doable adding \usepackage{chngcntr} \counterwithin*{equation}{section} to preamble, but I'd also need that when cross referencing goes to an equation in another section, it write the section inside parenthesis in that way (or in some other way that reader can understand to go correctly to the equation referred). Is there a simple way to do this? Thank you!

