Sometimes I think it is helpful to have a visual reference to a cited equation, besides its reference number. Let me give a (manual) example of what I'm talking about:
\begin{document}
(...)
\begin{equation}\label{1.1}
y=x
\end{equation}
<several pages later>
... in equation \eqref{1.1}\footnote{y=x} ...
\end{document}
I'd like to create a command that makes this process automatically. Something like
\newcommand{\foo}[1]{\eqref{#1}\footnote{eqcont}}
where the 'eqcont' part is a call to the contents of the equation environment. However, I can't figure out a code to do this.
Any suggestions?

