2020-07-20 17:40:48 +02:00
|
|
|
---
|
2021-12-21 13:47:28 +01:00
|
|
|
icon: material/format-align-bottom
|
2020-07-20 17:40:48 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# Footnotes
|
|
|
|
|
2021-10-10 12:19:14 +02:00
|
|
|
Footnotes are a great way to add supplemental or additional information to a
|
|
|
|
specific word, phrase or sentence without interrupting the flow of a document.
|
|
|
|
Material for MkDocs provides the ability to define, reference and render
|
|
|
|
footnotes.
|
2020-07-20 17:40:48 +02:00
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
2021-10-10 12:19:14 +02:00
|
|
|
This configuration adds the ability to define inline footnotes, which are then
|
|
|
|
rendered below all Markdown content of a document. Add the following lines to
|
|
|
|
`mkdocs.yml`:
|
2020-07-20 17:40:48 +02:00
|
|
|
|
|
|
|
``` yaml
|
|
|
|
markdown_extensions:
|
|
|
|
- footnotes
|
|
|
|
```
|
|
|
|
|
2021-10-04 23:36:31 +02:00
|
|
|
See additional configuration options:
|
|
|
|
|
|
|
|
- [Footnotes]
|
|
|
|
|
|
|
|
[Footnotes]: ../setup/extensions/python-markdown.md#footnotes
|
2020-07-20 17:40:48 +02:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
### Adding footnote references
|
|
|
|
|
|
|
|
A footnote reference must be enclosed in square brackets and must start with a
|
|
|
|
caret `^`, directly followed by an arbitrary identifier, which is similar to
|
|
|
|
the standard Markdown link syntax.
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
``` title="Text with footnote references"
|
2020-07-20 17:40:48 +02:00
|
|
|
Lorem ipsum[^1] dolor sit amet, consectetur adipiscing elit.[^2]
|
|
|
|
```
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
<div class="result" markdown>
|
2020-07-20 17:40:48 +02:00
|
|
|
|
|
|
|
Lorem ipsum[^1] dolor sit amet, consectetur adipiscing elit.[^2]
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
</div>
|
|
|
|
|
2020-07-20 17:40:48 +02:00
|
|
|
### Adding footnote content
|
|
|
|
|
|
|
|
The footnote content must be declared with the same identifier as the reference.
|
|
|
|
It can be inserted at an arbitrary position in the document and is always
|
|
|
|
rendered at the bottom of the page. Furthermore, a backlink to the footnote
|
|
|
|
reference is automatically added.
|
|
|
|
|
|
|
|
#### on a single line
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
Short footnotes can be written on the same line:
|
2020-07-20 17:40:48 +02:00
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
``` title="Footnote"
|
2020-07-20 17:40:48 +02:00
|
|
|
[^1]: Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
|
|
```
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
<div class="result" markdown>
|
2020-07-20 17:40:48 +02:00
|
|
|
|
2021-10-11 13:38:03 +02:00
|
|
|
[:octicons-arrow-down-24: Jump to footnote](#fn:1)
|
2020-07-20 17:40:48 +02:00
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
</div>
|
|
|
|
|
2020-07-20 17:40:48 +02:00
|
|
|
[^1]: Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
|
|
|
|
|
|
#### on multiple lines
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
Paragraphs can be written on the next line and must be indented by four spaces:
|
2020-07-20 17:40:48 +02:00
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
``` title="Footnote"
|
2020-07-20 17:40:48 +02:00
|
|
|
[^2]:
|
|
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
|
|
|
|
nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
|
|
|
|
massa, nec semper lorem quam in massa.
|
|
|
|
```
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
<div class="result" markdown>
|
|
|
|
|
|
|
|
[:octicons-arrow-down-24: Jump to footnote](#fn:2)
|
|
|
|
|
|
|
|
</div>
|
2020-07-20 17:40:48 +02:00
|
|
|
|
2021-10-04 23:36:31 +02:00
|
|
|
[^2]:
|
|
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
|
|
|
|
nulla. Curabitur feugiat, tortor non consequat finibus, justo purus
|
|
|
|
auctor massa, nec semper lorem quam in massa.
|