Help:Footnotes
This page explains how to create footnotes when editing an article. Footnotes appear automatically in a numbered list at the end of an article when you use two small pieces of code in the text: <ref>...</ref> within the text, and <references /> at the end of the article where the footnote list is to appear. (These pieces of code are called tags.)
The most common use of footnotes in Wikipedia articles is to provide references (inline citations), although footnotes can also be used for other purposes.
This page concerns technical methods for creating footnotes. For policy about the need for citations and choice of sources to cite, see Wikipedia:Verifiability. For how to format the citations, see Wikipedia:Citing sources. For another method of presenting inline citations, see Wikipedia:Parenthetical references.
Overview
Footnoting is an automated system. The footnoting system involves two elements:
- Footnote markers. These are links, usually in the form [1], [2], etc. Clicking on a footnote marker will take you to the correspondingly numbered footnote.
- The footnotes themselves. These appear in a list (usually placed near the end of the article), and include links back to the corresponding footnote markers.
The text of a footnote is placed in the page's editable text, between <ref>...</ref> tags, at the point where the footnote marker is to appear. The list of footnotes is generated using the <references /> tag (or a corresponding template), placed in the editable text at the point where the footnotes are to appear. If the page contains footnote markers but no footnote list, a red warning message will appear.
Creating a footnote
At the point in the page text where the footnote marker is to appear, enter the text of the footnote and put the two pieces of coding before and after the footnote-text, like this:
<ref>LibreOffice For Starters, First Edition, Flexible Minds, Manchester, 2002, p. 18</ref>
This will create a footnote marker (automatically numbered). The footnote text itself will appear in the footnote list, generated as described in the next section. If there is no footnote list code, a red warning message will appear, reminding you to write the code that generates the list.
You can include formatting and links in a footnote in the usual way, although note that certain features, such as the pipe trick and template substitution, will not work in footnotes. For the formatting of references, a number of templates, such as a generic {{citation}}, or more specific {{cite book}}, {{cite web}}, etc., are available (see Citation templates), although many editors prefer not to use them. See Citing sources for details on how references can be structured.
To aid readability in the edit window, a single newline can be added after the closing </ref> tag before continuing with the text of the paragraph (this will not affect the resulting display).
Creating the footnote list
At the point where you want the text of the footnotes to appear (usually at the end of the article in a section titled "Notes" or "References" – see the Layout guideline), write the following piece of code:
<references />
A commonly used alternative, which also introduces some formatting, is to use the {{Reflist}} template:
{{reflist}}
This template has parameters available for splitting the list into columns, and for controlling their width. For example, {{reflist|2}} creates a list split into two columns. For more options, see the template documentation.
If a footnote list is generated but there are no footnotes on the page, the list will simply appear empty (no warning or error message is displayed). Notice that the footnote list must come after all the footnotes.
Multiple references to the same footnote
It is possible to refer to the same footnote more than once, i.e. to generate several footnote markers, all with the same number, which link to the same footnote. To achieve this, named footnotes (named references) are used.
A footnote is named using the name parameter of the <ref> tag. Choose a name (such as "Perry"), and then at one of the footnote marker points (it makes sense to choose the first), enter the footnote like this:
<ref name="Perry">Perry's Handbook, Sixth Edition, McGraw-Hill Co., 1984.</ref>
Then you can create another identical marker linking to the same footnote from any other point in the text, by entering the following (note the final slash):
<ref name="Perry" />
The footnote name is internal and will not be displayed anywhere when the page is viewed. Footnote names are case sensitive and may not be a numeric integer. The quotes are optional unless the name or group includes a space, or certain punctuation marks and other characters. It is recommended that names be kept simple and restricted to the standard English alphabet and numerals.
Be careful when deleting text containing named footnotes – if you delete the instance which contains the footnote text, without replacing it elsewhere, you will break other instances of the same named footnote on the page.
What it looks like
When a page with footnotes is displayed in a browser, the <ref> tags in the main text are converted to auto-numbered superscripts, like this:
|
The only reference to LibreOffice for Starters.[1] The first reference to Perry's Handbook.[2] The second reference to Perry's Handbook and to another, related book.[2][3] A statement that requires a reference.Template:Fact The only reference to Linux in a Nutshell.[4] And third reference to Perry's Handbook.[2] |
Clicking on a numbered superscript takes you straight to the text of the corresponding footnote. (The "[citation needed]" item is not a footnote marker; it is produced by the {{fact}} template, used to indicate a point where a reference ought to be provided.)
The <references /> tag or {{reflist}} template is expanded to show the text of the footnotes against their corresponding numbers, like this:
For single-reference footnotes, clicking on the caret (^) takes you back to the footnote marker in the main text. For multiple-reference footnotes, the links back to the main text are distinguished by letter superscripts (a, b, c etc.). Clicking on a letter superscript takes you to the corresponding marker in the main text.
Previewing edits
When you edit a single section of a page, the footnotes list will not be visible when you preview your edits. Thus you ordinarily cannot see how your footnotes will later appear when you save your edits.
If this is a problem, you can insert a {{reflist}} into the edited section temporarily (remembering to delete it again before you save your edits). However you will still not be able to see named references which were defined in other sections: to do this, you would either have to paste in text from the other sections as a temporary measure, or open the whole page in the edit window instead of just one section.
Another workaround for this issue is to use the wikEd gadget.
Grouping footnotes
Sometimes it is useful to group the footnotes on a page into separate lists, for example to separate explanatory notes from references, or to list references of a table or side box separately from the references of the text. This can be accomplished with the "group" parameter:
This part of the text requires clarification,<ref group="note">Listed separately from the citation</ref> whereas the entire text is cited.<ref>Citation.</ref>
==Notes==
<references group="note" />
==References==
{{Reflist|close=1}}
This part of the text requires clarification,[note 1] whereas the entire text is cited.[1]
Notes
- ↑ Listed separately from the citation
References
- ↑ Citation.
For how to "nest" footnotes – normally done in order to provide references within explanatory footnotes – see Embedding references within footnotes below, and WP:REFNEST.
Footnotes may also be listed at the ends of each section of text by closing the {{Reflist}} template with the "close" parameter, as shown in the box just above.
List-defined references
Template:Seealso
As of September 2009, the cite software allows named references to be defined within the reference list rather than in the article text. This can make editing articles much easier, particularly on heavily cited sections. For example:
The quick brown fox jumps over the lazy dog.<ref name="LazyDog" />
<references>
<ref name="LazyDog">This is the lazy dog reference.</ref>
</references>
The quick brown fox jumps over the lazy dog.[1]
- ↑ This is the lazy dog reference.
This can also be done using the {{Reflist}} template with a |refs= parameter. If desired, the |group= parameter can be used to group references for the template:
The quick brown fox jumps over the lazy dog.<ref name="LazyDog" />
Amazingly few discotheques provide jukeboxes.<ref name="Jukeboxes" />
How razorback-jumping frogs<ref name="Batteries" group="note" /> can level six piqued gymnasts.<ref name="JumpingFrogs" />
==Notes==
{{reflist|group="note"|
refs=
<ref name="Batteries" group="note">Batteries not included.</ref>
}}
==References==
{{reflist|
refs=
<ref name="LazyDog">This is the lazy dog reference.</ref>
<ref name="Jukeboxes">This is the jukeboxes reference.</ref>
<ref name="JumpingFrogs">This is the jumping frogs reference.</ref>
}}The quick brown fox jumps over the lazy dog.[1]
Amazingly few discotheques provide jukeboxes.[2]
How razorback-jumping frogs[note 1] can level six piqued gymnasts.[3]
Notes
- ↑ Batteries not included.
References
Embedding references within footnotes
A <ref> code cannot be embedded within another <ref> code, which is a problem when you wish to place a reference within an explanatory footnote. Parenthetical referencing is commonly used as a workaround. However, the {{#tag:ref}} magic word supports references within footnotes. It is available in the "Wiki markup" edit window. The full syntax is {{#tag:ref|...|group="x"|name="x"}}, where ... is the full text of the footnote, which can now include <ref> tags in the normal way. The "group" and "name" parameters are optional.
The quick brown fox jumps over the lazy dog.{{#tag:ref|A footnote.<ref name="ex">A reference for the footnote.</ref>|group="nb"}}
==Notes==
{{reflist|group="nb"}}
==References==
{{reflist|name="ex"}}
The quick brown fox jumps over the lazy dog.[nb 1]
Notes
References
- ↑ A reference for the footnote.
See also
- Wikipedia:Referencing for beginners – a step-by-step guide
- Help:Cite errors
- Wikipedia:Citing sources
- Template:Citation needed, a way of marking statements for which a source ought to be provided
- Wikipedia:Embedded citations
- Template:Reflist-talk – for use on talk pages
- Template:Rp – Multiple citations page numbering template
- m:help:footnotes – General MediaWiki footnotes documentation
- Wikipedia:Footnote3 – An older method, obsolete except for Harvard references
- mw:Extension:Cite/Cite.php – technical details about cite.php technology
ca:Ajuda:Notes a peu de pàgina
de:Hilfe:Einzelnachweise
eo:Helpo:Referencoj kaj piednotoj
fr:Aide:Note
id:Bantuan:Catatan kaki
it:Aiuto:Note
nl:Help:Referenties en voetnoten
pt:Wikipedia:Livro de estilo/Notas de rodapé
ja:Help:脚注
pl:Pomoc:Przypisy
sk:Pomoc:Referencie
sr:Помоћ:Фусноте
tr:Yardım:Dipnotlar