How to:Cite
From Interaction-Patterns.org
Contents |
[edit] Extension: Cite
[edit] Quick Summary
Cite.php is a Cite extension that adds two parser hooks to MediaWiki, <ref> and <references /> ; these operate together to add citations to pages.
[edit] Use When
The basic concept of the <ref> tag is that it inserts the text enclosed by the ref tags as a footnote in a designated section, which you indicate with the placeholder tag <references />. The new format cannot be used interchangeably with the old format - you must pick one or the other.
If you forget to include<references /> in the article, the footnotes will not appear, but a red error message will be displayed at the end of the page. Please use this if you cite something in an article here.
[edit] Examples
According to scientists, the Sun is pretty big.<ref>E. Miller, The Sun, (New York: Academic Press, 2005), 23-5.</ref>
The Moon, however, is not so big.<ref>R. Smith, "Size of the Moon", Scientific American, 46 (April 1978): 44-6.</ref>
==Notes==
<references/>
[edit] Multiple uses of the same footnote
To give a footnote a unique identifier, use <ref name="name">. You can then refer to the same footnote again by using a ref tag with the same name. The text inside the second tag doesn't matter, because the text already exists in the first reference. You can either copy the whole footnote, or you can use a terminated empty ref tag that looks like this: <ref name="name" />.
In the following example, the same source is cited three times.
This is an example of multiple references to the same footnote.<ref name="multiple">Remember that when you refer to the same footnote multiple times, the text from the first reference is used.</ref>
Such references are particularly useful when citing sources, if different statements come from the same source.<ref name="multiple">This text is superfluous, and won't show up anywhere. We may as well just use an empty tag.</ref>
A concise way to make multiple references is to use empty ref tags, which have a slash at the end. Although this may reduce redundant work, please be aware that if a future editor removes the first reference, this will result in the loss of all references using the empty ref tags.<ref name="multiple" />
==Notes==
<references/>
The text above gives the following result in the article (see also section below):
This is an example of multiple references to the same footnote.[1]
Such references are particularly useful when citing sources, when different statements come from the same source.[1]
A concise way to make multiple references is to use empty ref tags, which have a slash at the end. Although this may reduce redundant work, please be aware that if a future editor removes the first reference, this will result in the loss of all references using the empty ref tags.[1]
[edit] Examples found on the World Wide Web
[edit] Source
Check out Mediawiki.org Cite-Site for detailed informations.

