This page will help you to fix the cite error message:

The <ref> tag has too many names (see the help page).

Overview

A footnote used multiple times may be defined with a name:

<ref name="foo">content</ref>

Any footnote can be assigned to a group:

<ref group="foobar">content</ref>

Or both:

<ref group="foobar" name="foo">content</ref>

Names for footnotes and groups must follow these rules:

Issues and resolutions

A named reference tag can't have too many names or parameters.

Forgetting quotation marks around a name containing one or more spaces

A quoteless, multiple-word name such as foo bar will be parsed as two separate names due to the space, thus generating the error.

Also, you can only specify two parameters: name and group. You can't, for instance, format a reference with <ref style="color:red;">content</ref>, or give it an id.

A good, quick solution that is likely to work is to add double quotes around the entire name. For example, replace:

name=foo bar

with:

name="foo bar"

Forgetting name=

Forgetting name= can also cause this error.

Although name= is mentioned throughout this help page, when troubleshooting this error, it's easy to focus on searching for problems with the name while forgetting to make sure name= is there. This is especially true when editing on the mobile version of Wikipedia, since the editing tools are scaled down to improve performance, so you can't just click on the correct code under the edit window.

Remember, to use any troubleshooting help page successfully, double-check any error-causing wikitext against every single piece of the example code.

Attempting to create a note

You might be trying to create a reference in the "note" group. That is, a reference displayed in the Notes section instead of the regular References section.

In other words, you might be here because you attempted something like <ref notes>Insert a note here</ref> to achieve <ref name="notes">Insert a note here</ref>. Doing so leads to the error message discussed here.

The solution is to instead use the ((efn)) template: ((efn|Insert a note here)).

Examples

In this example, reference 1 is named foo bar, which is invalid due to the space. In reference 2 foo bar is valid as it is enclosed in quotes and reference 3 is valid as foo_bar uses an underscore.

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<ref name=foo bar>Reference 1</ref> Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<ref name="foo bar">Reference 2</ref> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref name=foo_bar>Reference 3</ref> Curabitur pretium tincidunt lacus. Nulla gravida orci a odio. Nullam varius, turpis et commodo pharetra, est eros bibendum elit, nec luctus magna felis sollicitudin mauris. Integer in mauris eu nibh euismod gravida.

==References==
((reflist))

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Cite error: The <ref> tag has too many names (see the help page). Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.[1] Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[2] Curabitur pretium tincidunt lacus. Nulla gravida orci a odio. Nullam varius, turpis et commodo pharetra, est eros bibendum elit, nec luctus magna felis sollicitudin mauris. Integer in mauris eu nibh euismod gravida.

References

  1. ^ Reference 2
  2. ^ Reference 3

Bugs

This error is not generated if the name fragment after the space contains (not just begins) any other character than A–Z, a–z, 0–9. When this condition occurs, the link is truncated after the space. In this example, although the name fragment after the space contains a different character, all three references generate the same link:

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<ref name=foo |bar>Reference 1</ref> Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<ref name=foo !bar>Reference 2</ref> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref name=foo bar#>Reference 3</ref> Curabitur pretium tincidunt lacus. Nulla gravida orci a odio. Nullam varius, turpis et commodo pharetra, est eros bibendum elit, nec luctus magna felis sollicitudin mauris. Integer in mauris eu nibh euismod gravida.

==References==
((reflist))

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[1] Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.[1] Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[1] Curabitur pretium tincidunt lacus. Nulla gravida orci a odio. Nullam varius, turpis et commodo pharetra, est eros bibendum elit, nec luctus magna felis sollicitudin mauris. Integer in mauris eu nibh euismod gravida.

References

  1. ^ a b c Reference 1 Cite error: The named reference "foo" was defined multiple times with different content (see the help page).

Technical

Pages with this error message are placed into Pages with incorrect ref formatting. The system message page is at Cite error ref too many keys.