Marking up footnotes
After working through this section, you should be able to:
Mark up a footnote reference
Superscript a footnote reference
Mark up a footnote's content
Mark up nested elements inside a footnote
Mark the end of a footnote.
Marking up a footnote
The pattern for marking up footnotes is as follows:
In the text where the footnote reference appears, the inline markup
{{FOOTNOTE x}}
, wherex
is the footnote reference markerOn a new line, the
FOOTNOTE
keywordOn the same line, a space and the footnote reference marker
Below it, indented, the content of the footnote
To mark the end of a footnote, unindent the text.
Example
will look like this in View mode:
Note the indentation of the text after the end of the quote.
If the content of the footnote is not indented, it won't be captured correctly.
If the footnote reference marker doesn't match, it won't be captured correctly.
Superscripting a footnote reference
As you will see in Marking up formatting, the way to superscript text is to wrap it in {{^
and }}
.
Thus, if your footnote reference reads {{FOOTNOTE 2}}
as in the above example, and you want it to be superscripted, it should read {{^{{FOOTNOTE 2}}}}
.
Note the two sets of closing }}
s, one for the superscript markup and one for the footnote reference markup.
Example
will look like this in View mode:
Marking up nested elements
To mark up nested elements inside a footnote, use the same principles as in Marking up the structure: Indent the contents of each element under its own keyword, and indent all the elements in the footnote under the FOOTNOTE
keyword.
Example
will look like this in View mode:
Exercise
Copy the text below and paste it into a practise document, then see the instructions that follow.
Mark up the footnote reference to footnote 2 on line 3.
Superscript the same footnote reference.
Mark up the footnote that starts on line 5.
Correct the indentation of the nested elements in the footnote.
Correct the indentation of the text after the end of the footnote.
When you're done, it should look like this in View mode:
and like this in Edit mode:
Last updated