Edge Rewrite
Jump to content

Help:Overview of referencing styles

From Wikipedia, the free encyclopedia

Wikipedia uses various referencing systems to cite sources that support assertions in the article and to add explanatory and supplementary material. This page compares two systems that are currently used (Footnotes and Shortened footnotes) and two older systems that are deprecated and no longer used for new articles (Footnote3 and Parenthetical referencing).

Current systems

[edit]

Standard footnotes

[edit]

Standard footnotes, comprising inline cites and automatically generated reference list entries, make use of functionality provided by the Cite mediawiki extension, and are thus essentially "built-in" to wikipedia (as opposed to community-created template solutions). This should not be confused with the concept of footnotes in general.

An inline cite is placed within the page content, usually after punctuation, and is created by enclosing the citation or note within <ref>...</ref> tags. In place of this, a superscripted number is displayed, known as the cite label (or footnote label), enclosed in a pair of square brackets (example: [1]). Together the label and brackets are called the cite marker (or footnote marker). A copy of the full citation is also generated, commonly referred to as a footnote, and is automatically added to the reference list (sometimes called the footnote list, or just footnotes). The cite label has a link to the full citation in the reference list and vice versa.

A reference list is positioned within a page by use of the <references /> tag or the {{reflist}} template. If this is missing, a reference list will automatically be shown at the bottom of the page, but convention dictates that it should always be manually placed under a section, using a method as just described, with the section name usually being titled "References".

Numbering is automatic, based on order of use within a page. The cite labels default to decimal but can be styled as alphabetic, Roman or Greek. The <ref> tag can be assigned a name, which enables reuse of the cite within the page without full duplication, and <ref> tags can also be separated into groups for use as explanatory notes, table legends and the like.

Example:

MarkupRenders as
This is an in-text cite.<ref>citation</ref>

==References==
<references />

This is an in-text cite.[1]

References
  1. citation

Shortened footnotes

[edit]

In this short example, note that an in-text cite such as [1] links to the shortened citation in the Notes list, which in turn links to the long citation in the References list:

MarkupRenders as
The brontosaurus is thin at one end.{{sfn|Elk|1972|p=5}} Then it becomes much thicker in the middle.{{sfn|Elk|1972|p=6}}
The Norwegian blue parrot will not move if its feet are nailed to the perch.{{sfn|Praline|1969|p=12}} Its metabolic processes are a matter of interest only to historians.{{sfn|Praline|1969|p=16}}

==Notes==
{{reflist}}

==References==
{{refbegin}}
*{{cite book |last=Elk |first=Anne |title=[[Anne Elk's Theory on Brontosauruses]] |date=November 16, 1972 }}
*{{cite book |last=Praline |first=Eric |title=[[Dead Parrot sketch]] |date=December 7, 1969 }}
{{refend}}

The brontosaurus is thin at one end.[1] Then it becomes much thicker in the middle.[2] The Norwegian blue parrot will not move if its feet are nailed to the perch.[3] Its metabolic processes are a matter of interest only to historians.[4]

Notes
  1. Elk 1972, p. 5.
  2. Elk 1972, p. 6.
  3. Praline 1969, p. 12.
  4. Praline 1969, p. 16.
References
  • Elk, Anne (November 16, 1972). Anne Elk's Theory on Brontosauruses.
  • Praline, Eric (December 7, 1969). Dead Parrot sketch.

Obsolete/deprecated systems

[edit]

Footnote3

[edit]

Footnote3 is a deprecated method of referencing. New articles should not be created with it. Although it appears similar to the Footnotes system, it uses the {{ref}} and {{note}} templates.

MarkupRenders as
According to scientists, the Sun is pretty big.{{ref|1}}
The Moon, however, is not so big.{{ref|2}}

==Notes==
# {{note|1}} Miller, E: "The Sun.", page 23. Academic Press, 2005
# {{note|2}} Smith, R: "Size of the Moon", ''Scientific American'', 46(78):46

According to scientists, the Sun is pretty big. The Moon, however, is not so big.

Notes
  1. ^ Miller, E: "The Sun.", page 23. Academic Press, 2005
  2. ^ Smith, R: "Size of the Moon", Scientific American, 46(78):46
Comparison of Footnote3 and Cite.php Footnote
Footnote3Cite.php
UseDeprecated for standard footnotes[1]Standard[2]
Number styleUser applied, free style: can use numbers, alpha, Greek, etc.Automatic with several styles[3]
Reference list orderManualAutomatic
NestingCan nest <ref>...</ref> and other templatesNesting with limitations[4]
ReuseYes, but creates duplicate HTML ids[5]Yes, unique HTML ids[6]
Error checkingNo[7]Yes[8]
MarkupFairly terseCan be a bit long, especially when using groups
Preview testingClicking on a {{ref}} link while previewing an edit will cause the page to reload and changes to be lostNo issues

Parenthetical referencing

[edit]

Parenthetical referencing is a citation system in which citations are added within sentences using brackets (parentheses). An example would be "Paris is the capital of France (Smith 2020, p. 1)". Full citations are collected in footnotes or endnotes, or in alphabetical order by author's last name, under a "references", "bibliography", or "works cited" heading at the end of the text.

This style of citation was a type of referencing used on Wikipedia until September 2020, when a community discussion reached a consensus to deprecate this format of citation. While some existing articles may still use this form of citation, new articles should not be created with it.

See also

[edit]

Notes

[edit]
  1. See Wikipedia:Footnote3
  2. See Help:Footnotes
  3. See Help:Shortened footnotes
  4. See WP:REFNEST
  5. {{Ref}} creates an HTML id for the backlink ; when using {{Ref}} multiple times, the id is the same:
    • Per the HTML spec, ids must be unique, thus reuse causes validation errors in the articles where the template is transcluded.
    • Backlinks from the reference list to the inline cite are ambiguous— FireFox and Internet Explorer backlink only to the first inline cite, Opera backlinks to the last.
    • Example: See the use of the dagger symbol in List of baryons and the W3C validation— the HTML id for the dagger is "ref_Undiscovered".
  6. It is possible to define a Note without a matching Ref or vice versa. Example: Governor of New York invokes Ref but never defines the references.
  7. See Help: Cite errors.