Help:Cite link labels

When automatedfootnotesare used on Wikipedia pages, the default form of the footnote labels is[1],[2],[3],etc. Whengrouped footnotesare used, the labels are[name1],[name2],etc., wherenameis the name given to the group. However, by using certain reserved group names, it is possible to make the labels appear in a different form, such as[i],[ii],etc. or[a],[b],etc.

Currently existing reserved group names are:

Label styles
Group name Style Sample
decimal Decimal numbers 1 2 3 4 5 6 7 8 9 10
lower- Alpha Alpha, lower case a b c d e f g h i j
upper- Alpha Alpha, upper case A B C D E F G H I J
lower-greek Greek, lower case α β γ δ ε ζ η θ ι κ
lower-roman Roman, lower case i ii iii iv v vi vii viii ix x
upper-roman Roman, upper case I II III IV V VI VII VIII IX X


For example, a footnote which is to appear in the i, ii, iii... group can be written as:

  • <ref group=lower-roman>...</ref>

To generate the list of the footnotes in that group, use for example

Further examples, technical information and instructions for creating new reserved groups can be found below.

Technical

edit

Versionr66749of theCiteextension implements the ability to create styles for the cite link labels. Although the ability to create in-text cite label styles is unlimited, the matching reference list label styles are currently limited to those supported by the CSSlist-style-typeproperty and to browser support.

Numeric labels

edit

The default in-text cite links and reference list backlinks use numeric labels automatically generated by the software. The labels are linked to provide a connection between the in-text cite and the reference list cite.

In this example, the super-scripted, in-text cites use a numeric label that matches the citation in the reference list:

Markup Renders as
The Sun is pretty big,<refgroup="test">Miller, E:''The Sun'',page 23. Academic Press, 2005.</ref>
but the Moon is not so big.<refgroup="test">Brown, R: "Size of the Moon",''Scientific American'',51(78):46</ref>
The Sun is also quite hot.<refgroup="test">Miller, E:''The Sun'',page 34. Academic Press, 2005.</ref>
==References==
<references/>

The Sun is pretty big,[test 1] but the Moon is not so big.[test 2] The Sun is also quite hot.[test 3]

References
  1. ^Miller, E:The Sun,page 23. Academic Press, 2005.
  2. ^Brown, R: "Size of the Moon",Scientific American,51(78):46
  3. ^Miller, E:The Sun,page 34. Academic Press, 2005.
edit

Special group names have been defined which give alternative sequences, such as Alpha betical and roman numerals, instead of Arabic numerals.

edit
Label styles
Group name Style Sample Interface page
decimal Decimal numbers 1 2 3 4 5 6 7 8 9 10 MediaWiki:cite link label group-decimal
lower- Alpha Alpha, lower case a b c d e f g h i j MediaWiki:cite link label group-lower- Alpha
upper- Alpha Alpha, upper case A B C D E F G H I J MediaWiki:cite link label group-upper- Alpha
lower-greek Greek, lower case α β γ δ ε ζ η θ ι κ MediaWiki:cite link label group-lower-greek
lower-roman Roman, lower case i ii iii iv v vi vii viii ix x MediaWiki:cite link label group-lower-roman
upper-roman Roman, upper case I II III IV V VI VII VIII IX X MediaWiki:cite link label group-upper-roman
error-test test first second last! MediaWiki:cite link label group-error-test


The list below is created automatically bySpecial:PrefixIndex:

Markup restriction

edit

These sequences will only work properly when using the{{Reflist}}template. Although the<references />tag supports thegroup=attribute, the footnotes will be displayed with the default Arabic numerals.

Creating cite label sequence styles

edit

Only admins can perform these actions. Non-admins may request additions on the talk page.

Currently, only styles supported by the CSSlist-style-typeelement may be added.[1]Not all styles are supported by all browsers— see the list below.[2]

  1. Decide on a name for the cite label style group name. It should match the associated CSSlist-style-typevalue. Quotes may not be used in values in{{Reflist}}therefore the namemustcomply with the rules for HTML ids.[3]
  2. Discuss the new style on the talk page and gain consensus.
  3. Create the style list at MediaWiki:cite_link_label_group-groupname.Ensure each label is separated with a space. For example, createMediaWiki:cite link label group-lower-greekand populate it with the Greek Alpha bet. Then use "lower-greek" as the groupname.
  4. Redirect the talk page to thecentral discussion pageby creating the talk page with#REDIRECT [[Help talk:Cite errors]].
  5. Edit{{Reflist}}and add thelist-style-typethat styles the reference list.
  6. Add the style to the list above.
  7. If there are browser limitations, document them in the notice at the top of the page.

Browser support

edit

The in-text link labels will be retrieved from the MediaWiki label page, thus they should show regardless of browser. The reference list labels are styled by the CSSlist-style-typeproperty. Not all browsers support alllist-style-typevalues. A browser that does not support the value will revert to the default decimal label in the reference list.

Error messages

edit

An error message indicates when there are more cites than there are link labels:

  • Ran out of custom link labels for group "$1" (see thehelp page).

This message is invoked throughMediaWiki:cite error no link label group;the help page is atHelp:Cite errors/Cite error no link label group.

Bugs

edit
  • T24265
    • The error message atMediaWiki:Cite error no link label groupgets classed as a reference, so you can't use a wikilink in the message to link to a help page
    • The reference list is an ordered list and uses numbers that don't match the in-text cite labels

Classes and templates

edit

The{{Reflist}}uses the|group=parameter to select thelist-style-typestyle, and apply it to the.reflistclass:

list-style-type:<!--
-->{{#switch:{{{group|}}}
|lower- Alpha
|lower-greek
|lower-roman={{{group}}}
|#default=decimal}};
Note that the decimal style is handled by the defaultlist-style-type.

CSS rules inMediaWiki:Common.cssthen allow the.referencesclass to inherit thelist-style-type:

div.reflistol.references{
list-style-type:inherit;/* Enable custom list style types */
}

References

edit
  1. ^"CSS list-style-type Property".w3schools.
  2. ^"List styles".QuirksMode.org.
  3. ^"HTML id Attribute".w3schools.