2020-07-20 18:40:48 +03:00
|
|
|
---
|
|
|
|
template: overrides/main.html
|
|
|
|
---
|
|
|
|
|
|
|
|
# Footnotes
|
|
|
|
|
2021-10-10 13:19:14 +03: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 18:40:48 +03:00
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
2021-10-10 13:19:14 +03: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 18:40:48 +03:00
|
|
|
|
|
|
|
``` yaml
|
|
|
|
markdown_extensions:
|
|
|
|
- footnotes
|
|
|
|
```
|
|
|
|
|
2021-10-05 00:36:31 +03:00
|
|
|
See additional configuration options:
|
|
|
|
|
|
|
|
- [Footnotes]
|
|
|
|
|
|
|
|
[Footnotes]: ../setup/extensions/python-markdown.md#footnotes
|
2020-07-20 18:40:48 +03: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.
|
|
|
|
|
|
|
|
_Example_:
|
|
|
|
|
|
|
|
``` markdown
|
|
|
|
Lorem ipsum[^1] dolor sit amet, consectetur adipiscing elit.[^2]
|
|
|
|
```
|
|
|
|
|
|
|
|
_Result_:
|
|
|
|
|
|
|
|
Lorem ipsum[^1] dolor sit amet, consectetur adipiscing elit.[^2]
|
|
|
|
|
|
|
|
### 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
|
|
|
|
|
2021-10-05 00:36:31 +03:00
|
|
|
Short footnotes can be written on the same line.
|
2020-07-20 18:40:48 +03:00
|
|
|
|
|
|
|
_Example_:
|
|
|
|
|
|
|
|
``` markdown
|
|
|
|
[^1]: Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
|
|
```
|
|
|
|
|
|
|
|
_Result_:
|
|
|
|
|
2021-10-11 14:38:03 +03:00
|
|
|
[:octicons-arrow-down-24: Jump to footnote](#fn:1)
|
2020-07-20 18:40:48 +03:00
|
|
|
|
|
|
|
[^1]: Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
|
|
|
|
|
|
#### on multiple lines
|
|
|
|
|
|
|
|
Paragraphs can be written on the next line and must be indented by four spaces.
|
|
|
|
|
|
|
|
_Example_:
|
|
|
|
|
|
|
|
``` markdown
|
|
|
|
[^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.
|
|
|
|
```
|
|
|
|
|
|
|
|
_Result_:
|
|
|
|
|
2021-10-05 00:36:31 +03: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.
|
2020-07-20 18:40:48 +03:00
|
|
|
|
2021-10-11 14:38:03 +03:00
|
|
|
[:octicons-arrow-down-24: Jump to footnote](#fn:2)
|