I was trying to get a footnote next to an equation number and i found the following code will work.
Code: Select all
\begin{equation}\refstepcounter{equation}
x=y \tag{\theequation\footnotemark}
\end{equation} \footnotetext{thefootnote}
I'm receiving an error when i try this code.
Code: Select all
\begin{equation}\refstepcounter{equation}
\label{eq1}
x=y \tag{\theequation\footnotemark}
\end{equation} \footnotetext{thefootnote}
Code: Select all
\begin{equation}
\label{eq1}
\refstepcounter{equation}
x=y \tag{\theequation\footnotemark}
\end{equation} \footnotetext{thefootnote}