Footnotes
In some documents it's necessary to put annotations at the bottom of the page. This article explains how to add footnotes
Introduction
Adding a footnote to your document is straightforward
The command \footnote{footnotes working fine}
adds a superscript to the word right before the command and prints the corresponding footnote.
Basic usage
The superscript mark to reference a footnote can be manually set. See the example below:
I'm writing something here to test \footnote[10]{footnotes working fine}
several features. You can write the footnote text\footnotemark in its
own line.
\footnotetext{Second footnote}
There are three new commands here:
\footnote[10]{footnotes working fine}
- Adds a footnote using "10" as reference mark. Unless you have a good reason to do this, it's not recommended because the footnote counter is not altered and you may end up with two different footnotes with the same mark.
\footnotemark
- Prints a foot note mark but without the actual footnote. This is helpful to write the actual footnote text in a new line.
\footnotetext{Second footnote}
- Prints the footnote corresponding to the previous
\footnotemark
.
Footnotes with multiple references
We can add several references to a single footnote mark
I'm writing something here to test \footnote{footnotes working fine}
several features. You can write the footnote text\footnotemark in its
own line.
\footnotetext{Second footnote}
For instance\footnotemark I can use the same footnote more than
once\footnotemark[\value{footnote}].
\footnotetext{footnote with two references}
The command \footnotemark[\value{footnote}]
inserts a superscript corresponding to the current value of the counter footnote.
Changing the numbering style
You can change the type of numbers printed by the footnote counter
\footnotetext{footnote with two references}
\renewcommand{\thefootnote}{\roman{footnote}}
Now a footnote in Roman\footnote{This footnote is in Roman numerals}
The command \renewcommand{\thefootnote}{\roman{footnote}}
sets the number styles to lowercase roman. Other possible styles are:
arabic
Arabic numerals.Roman
Upper case Roman numerals.alph
Alphabetic lower case.Alph
Alphabetic upper case.fnsymbol
A set of 9 special symbols.
You can use this command in the preamble to change the numbering style of the footnotes in the whole document.
Further reading
For more information see:
Overleaf guides
- Creating a document in Overleaf
- Uploading a project
- Copying a project
- Creating a project from a template
- Including images in Overleaf
- Exporting your work from Overleaf
- Working offline in Overleaf
- Using Track Changes in Overleaf
- Using bibliographies in Overleaf
- Sharing your work with others
- Debugging Compilation timeout errors
- How-to guides
LaTeX Basics
- Creating your first LaTeX document
- Choosing a LaTeX Compiler
- Paragraphs and new lines
- Bold, italics and underlining
- Lists
- Errors
Mathematics
- Mathematical expressions
- Subscripts and superscripts
- Brackets and Parentheses
- Fractions and Binomials
- Aligning Equations
- Operators
- Spacing in math mode
- Integrals, sums and limits
- Display style in math mode
- List of Greek letters and math symbols
- Mathematical fonts
Figures and tables
- Inserting Images
- Tables
- Positioning Images and Tables
- Lists of Tables and Figures
- Drawing Diagrams Directly in LaTeX
- TikZ package
References and Citations
- Bibliography management in LaTeX
- Bibliography management with biblatex
- Biblatex bibliography styles
- Biblatex citation styles
- Bibliography management with natbib
- Natbib bibliography styles
- Natbib citation styles
- Bibliography management with bibtex
- Bibtex bibliography styles
Languages
- Multilingual typesetting on Overleaf using polyglossia and fontspec
- International language support
- Quotations and quotation marks
- Arabic
- Chinese
- French
- German
- Greek
- Italian
- Japanese
- Korean
- Portuguese
- Russian
- Spanish
Document structure
- Sections and chapters
- Table of contents
- Cross referencing sections and equations
- Indices
- Glossaries
- Nomenclatures
- Management in a large project
- Multi-file LaTeX projects
- Hyperlinks
Formatting
- Lengths in LaTeX
- Headers and footers
- Page numbering
- Paragraph formatting
- Line breaks and blank spaces
- Text alignment
- Page size and margins
- Single sided and double sided documents
- Multiple columns
- Counters
- Code listing
- Code Highlighting with minted
- Using colours in LaTeX
- Footnotes
- Margin notes
Fonts
Presentations
Commands
Field specific
- Theorems and proofs
- Chemistry formulae
- Feynman diagrams
- Molecular orbital diagrams
- Chess notation
- Knitting patterns
- CircuiTikz package
- Pgfplots package
- Typing exams in LaTeX
- Knitr
- Attribute Value Matrices
Class files
- Understanding packages and class files
- List of packages and class files
- Writing your own package
- Writing your own class
- Tips