LaTeX/Footnotes and Margin Notes

< LaTeX

Footnotes

Footnotes are a very useful way of providing extra information to the reader. Usually, it is non-essential information which can be placed at the bottom of the page. This keeps the main body of text concise.

The footnote facility is easy to use. The command you need is: \footnote{text}. Do not leave a space between the command and the word where you wish the footnote marker to appear, otherwise LaTeX will process that space and will leave the output not looking as intended.

Creating a footnote is easy.\footnote{An example footnote.}

LaTeX will obviously take care of typesetting the footnote at the bottom of the page. Each footnote is numbered sequentially - a process that, as you should have guessed by now, is automatically done for you.

You can also choose to place the footnote text manually. In this case we use the \footnotemark-\footnotetext duo:

\footnotemark
% ...
Somewhere else\footnotetext{This is my footnote!}

The footnote number can also be explicitly specified.

\footnotemark[17]
% ...
Somewhere else\footnotetext[17]{This is my footnote!}

Customization

It is possible to customize the footnote marking. By default, they are numbered sequentially (Arabic). However, without going too much into the mechanics of LaTeX at this point, it is possible to change this using the following command (which needs to be placed at the beginning of the document, or at least before the first footnote command is issued).

\renewcommand{\thefootnote}{\arabic{footnote}} Arabic numerals, e.g., 1, 2, 3...
\renewcommand{\thefootnote}{\roman{footnote}} Roman numerals (lowercase), e.g., i, ii, iii...
\renewcommand{\thefootnote}{\Roman{footnote}} Roman numerals (uppercase), e.g., I, II, III...
\renewcommand{\thefootnote}{\alph{footnote}} Alphabetic (lowercase), e.g., a, b, c...
\renewcommand{\thefootnote}{\Alph{footnote}} Alphabetic (uppercase), e.g., A, B, C...
\renewcommand{\thefootnote}{\fnsymbol{footnote}} A sequence of nine symbols, try it and see!

To make a footnote without number mark use this declaration:

\let\thefootnote\relax\footnote{There is no number in this footnote}

In this way, the numbering is switched off globally. To have only one footnote without number mark, the above command has to be placed between { }. Nevertheless, in that case, the current footnote counter is still incremented, so for instance you'd get footnote 1, unnumbered, and 3. A better solution[1] consists in defining the following macro in the preamble, and to use it:

\makeatletter
\def\blfootnote{\xdef\@thefnmark{}\@footnotetext}
\makeatother

The package footmisc offers many possibilities for customizing the appearance of footnotes. It can be used, for example, to use a different font within footnotes.

Reset counter

every section
\makeatletter
\@addtoreset{footnote}{section}
\makeatother
every page

(This may require running LaTeX twice)

\usepackage{perpage} %the perpage package
\MakePerPage{footnote} %the perpage package command

Common problems and workarounds

\interfootnotelinepenalty=10000
Text that has a footnote\footnote{This is the footnote} looks like this. Later text referring to same footnote\footnotemark[\value{footnote}] uses the other command.

If you need hyperref support, use instead:

Text that has a footnote\footnote{This is the footnote}\addtocounter{footnote}{-1}\addtocounter{Hfootnote}{-1} looks like this. Later text referring to same footnote\footnotemark uses the other command.

Note that these approaches will not work if there are other footnotes between the first reference and the subsequent "duplicate" references. For more general solutions, see here and here.

  1. Write \section[title] {title\footnote{I'm a footnote referred to the section} } where title is the title of the section.
  2. Use the footmisc package, with package option stable, and simply add the footnote to the section title.

Margin Notes

A margin note.

Margin Notes are useful during the editorial process, to exchange comments among authors. To insert a margin note use \marginpar{margin text}. For one-sided layout (simplex), the text will be placed in the right margin, starting from the line where it is defined. For two-sided layout (duplex), it will be placed in the outside margin and for two-column layout it will be placed in the nearest margin.

To swap the default side, use \reversemarginpar and margin notes will then be placed on the opposite side, which would be the inside margin for two-sided layout.

If the text of your marginpar depends on which margin it is put in (say it includes an arrow pointing at the text or refers to a direction as in "as seen to the left..."), you can use \marginpar[left text]{right text} to specify the variants.

To insert a margin note in an area that \marginpar can't handle, such as footnotes or equation environments, use the package marginnote.

Another option for adding colored margin notes in a fancy way provides the package todonotes by using \todo{todo note}. It makes use of the package pgf used for designing and drawing with a huge tool database.

The packages mparhack and marginnote can be used if the native \marginpar command does not meet your needs.

Margin geometry (bottom margin H not shown).

The marginnote and geometry package can set the widths of the margins and marginnotes as follows.

In the preamble, insert

\usepackage{marginnote}

and use the geometry package with custom sizes:

\usepackage[top=Bcm, bottom=Hcm, outer=Ccm, inner=Acm, heightrounded, marginparwidth=Ecm, marginparsep=Dcm]{geometry}

where A, B, C, D, E, F, G, X are all numbers in cm (of course other units than cm can be used).

In the main text, employ the marginnote package according to:

\marginnote{typeset text here...}[Fcm]

Specifically,

The example on the right was typeset by the following:

\documentclass[a4paper,twoside,english]{article}
\usepackage{lmodern}
\renewcommand{\sfdefault}{lmss}
\usepackage[T1]{fontenc}

\makeatletter
\special{papersize=\the\paperwidth,\the\paperheight}

\usepackage{lipsum}
\usepackage{marginnote}
\usepackage[top=1.5cm, bottom=1.5cm, outer=5cm, inner=2cm, heightrounded, marginparwidth=2.5cm, marginparsep=2cm]{geometry}

\makeatother

\usepackage{babel}
\begin{document}

\section{Margin notes}

\marginnote{This is a margin note using the geometry package, set at 0cm vertical offset to the first line it is typeset.}[0cm]
\marginnote{This is a margin note using the geometry package, set at 5cm vertical offset to the first line it is typeset.}[5cm]
\lipsum[1-10]
\end{document}

Additionally, the minimum vertical gap between margin notes can be adjusted with \marginparpush, such as with \setlength{\marginparpush}{0pt}.

Notes and References

This page uses material from Andy Roberts' Getting to grips with LaTeX with permission from the author.

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.