The footnote command creates a footnote at the bottom of the current page.
Syntax[]
\footnote[number]{text}
The optional argument number allows you to specify the number of the footnote. If you use this then LaTeX does not increment the footnote counter.
Numbering[]
By default, LaTeX uses arabic numbers as footnote markers. You can change this with \renewcommand{\thefootnote}{cmd{footnote}}
, where cmd is one of \alph, \Alph, \arabic, \roman, \Roman, or \fnsymbol. To make this change global put that in the preamble. If you make the change local then you may want to reset the counter with \setcounter{footnote}{0}
.
In a minipage environment the \footnote
command uses the mpfootnote
counter instead of the footnote
counter, so they are numbered independently. They are shown at the bottom of the environment, not at the bottom of the page. And by default they are shown alphabetically.
See also[]
- \footnoterule – Produces the horizontal rule separating the main text from footnotes
Reference[]
This article includes content from the unofficial LaTeX2e reference manual, which is licensed under the old-style GNU documentation license.