Math & Science ⇒ Footnotes next to Equation Number
-
- Posts: 3
- Joined: Tue Mar 29, 2011 6:05 pm
Footnotes next to Equation Number
I want to put a footnote in an equation, but not at the end of the equation where it could be confused as a power, but next to the equation number at the side. For example if the equation was numbered (1), then i could put a superscript letter/number after it which would be a footnote.
I have read about \footnotemark but I'm not sure where I would place that to make the footnote appear next to the equation number. FYI, im using \begin{equation} & \end{equation} with the equation in between those.
Any help with this problem would be greatly appreciated
Miles
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 3
- Joined: Tue Mar 29, 2011 6:05 pm
Footnotes next to Equation Number
I've worked out this:
Code: Select all
\begin{equation}\refstepcounter{equation}
x=y \tag{\theequation\footnotemark}
\end{equation} \footnotetext{thefootnote}
Miles
-
- Posts: 3
- Joined: Tue Mar 29, 2011 6:05 pm
Footnotes next to Equation Number
Code: Select all
\begin{equation}\refstepcounter{equation}
x=y \tag*{(\theequation)\footnotemark}
\end{equation} \footnotetext{thefootnote}
Hope this comes in handy to any LaTeX users in the future.
Miles