Footnotes, endnotes and sidenotes

There are various options for notes.

Endnotes

Endnotes appear at the end of a document (a web page or book chapter). In markdown these are usually called footnotes (because on the web they appear at the bottom of the web page). To create them in markdown, follow the kramdown syntax for footnotes:

Endnotes – notes gathered at the end of each web page or book chapter – are the default.

Footnotes

To create true bottom-of-page footnotes, as opposed to endnotes, use the same syntax as for endnotes above, but then add one of the following options to convert the endnotes to bottom-of-page footnotes.

Note that converting endnotes to footnotes only affects PDF output. Web, epub and app outputs will still use endnotes.

Technically, footnotes.js and _pdf-notes.scss convert endnotes completely from kramdown footnotes to PrinceXML footnotes. They may look similar by default, but they are different elements and can be styled separately.

Sidenotes

Sidenotes appear in a box to the side of the text. On wide screens, they float far right of the text. On narrower screens, the text wraps around them. In print, the text wraps around them, too. To create a sidenote, put a * at the start of the sidenote text and *{:.sidenote} at the end (with no spaces). (Technically, you’re creating an <em> span with a kramdown IAL.)

In print, you can put sidenotes at the bottom of the page. By adding .bottom to the {:.sidenote} tag, your sidenote sits at the bottom of the page rather than on the right with text wrap, replicating a traditional footnote. So the markdown looks like this: *This is a sidenote at the bottom of the page in print.*{:.sidenote .bottom}. On screen, these are just regular sidenotes.

Manual footnotes

To create footnote-like sidenotes manually, you can tag a reference and footnote-like text to create the bottom-of-page-footnote effect:

This is body text with a footnote at the end.[1](#fn-1){:.fnref #fnref-1}

[1](#fnref-1){:#fn-1}. This is the footnote text
{:.sidenote .bottom}

This markdown makes 1 a link in the body text, which points to the footnote text (ID fn-1). The number 1 at the footnote text is a link to the reference (ID fnref-1).

Unlike proper kramdown footnotes, these do not autonumber. You must manage the numbering or otherwise marking them manually. This means this is only suitable for books that have a few footnotes. The kramdown contributors are looking into alternative syntax that will let you place a kramdown footnote anywhere in the text.