Search found 3 matches

by shiningchihuahua
Tue Mar 29, 2011 10:46 pm
Forum: Math & Science
Topic: Footnotes next to Equation Number
Replies: 2
Views: 4365

Footnotes next to Equation Number

Done it!!

Code: Select all

\begin{equation}\refstepcounter{equation}
x=y \tag*{(\theequation)\footnotemark}
\end{equation} \footnotetext{thefootnote}
If you put \tag* then it lets you write whatever you want!

Hope this comes in handy to any LaTeX users in the future.

Miles
by shiningchihuahua
Tue Mar 29, 2011 10:40 pm
Forum: Math & Science
Topic: Footnotes next to Equation Number
Replies: 2
Views: 4365

Footnotes next to Equation Number

Update!

I've worked out this:

Code: Select all

\begin{equation}\refstepcounter{equation}
x=y \tag{\theequation\footnotemark}
\end{equation} \footnotetext{thefootnote}
but it puts the footnote symbol inside the brackets of the equation number. Any ideas on how to get this outside the brackets?


Miles
by shiningchihuahua
Tue Mar 29, 2011 6:13 pm
Forum: Math & Science
Topic: Footnotes next to Equation Number
Replies: 2
Views: 4365

Footnotes next to Equation Number

Hello,

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 ...