A footnote is a string of text added at the footer of a page in a book or document. Footnotes may contain the author’s comments, additional information, or a citation of the reference work.

This tutorial will explain how to add and use footnotes in LaTeX documents.

Basic Usage

To insert a footnote in LaTeX, use the footnote command. The following is an example LaTeX document illustrating how to insert footnotes.

documentclass{article}


usepackage[utf8]{inputenc}


begin{document}


title{How to Insert Footnotes}


author{Linuxhint}


maketitle


section{Introdution}


Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut footnote{This an example footnote}labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.


footnote{Another Footnote}


footnote{And Another}


footnote{and the last one}


footnote{Now final one for real}


end{document}

Once we produce the document, you should see the footnotes rendered at the bottom, as shown in the image below:

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/07/echo/Insert-Footnotes-LaTeX-01-907×1024.png" data-lazy- height="914" src="data:image/svg xml,” width=”810″>

About LaTeX Footnote Numbering Styles

By default, LaTeX uses ascending numerical values for numbering footnotes. However, you can change this by specifying a numbering method.

The following are supported numbering formats.

  • arabic – using Arabic numerals
  • roman – lower case roman numerals.
  • Roman – Upper case roman numerals.
  • alph – lower case alphabetic.
  • Alph – Upper case alphabetic.
  • fnsymbol – set of 9 special symbols.

To set the numbering style, use the command:

renewcommand{thefootnote}{arabic {footnote}}

NOTE: To set the numbering style for all footnotes in the document, specify the command above in your document preamble.

For example, the following preamble entry will show the footnote numbering in Upper case Roman.

documentclass{article}


usepackage[utf8]{inputenc}


renewcommand{thefootnote}{Roman {footnote}}


begin{document}


title{How to Insert Footnotes}


author{Linuxhint}


maketitle


section{Introdution}


Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut footnote{This an example footnote}labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.


footnote{Another Footnote}


footnote{And Another}


footnote{and the last one}


footnote{Now final one for real}


end{document}

The output for this is:

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/07/echo/Insert-Footnotes-LaTeX-02-888×1024.png" data-lazy- height="934" src="data:image/svg xml,” width=”810″>

Conclusion

Using what you have learned from this guide, it should not be easier to create footnotes in LaTeX documents and change the style.

Thank you for reading!

About the author

<img alt="" data-del="avatar" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/07/echo/john-150×150.png60f2fc84ec1f5.jpg" height="112" src="data:image/svg xml,” width=”112″>

John Otieno

My name is John and am a fellow geek like you. I am passionate about all things computers from Hardware, Operating systems to Programming. My dream is to share my knowledge with the world and help out fellow geeks. Follow my content by subscribing to LinuxHint mailing list