<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://blackwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=50.53.1.21&amp;*</id>
	<title>blackwiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://blackwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=50.53.1.21&amp;*"/>
	<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Special:Contributions/50.53.1.21"/>
	<updated>2026-08-16T17:06:26Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456345</id>
		<title>Module:WikidataCheck/sandbox</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456345"/>
		<updated>2018-01-17T19:50:44Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: fix and simplify&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p._wikidatacheck( config )&lt;br /&gt;
    local property = config.property&lt;br /&gt;
    local value = config.value or &amp;quot;&amp;quot;&lt;br /&gt;
    local catbase = config.category&lt;br /&gt;
    local namespaces = config.namespaces&lt;br /&gt;
    local ok = false -- one-way flag to check if we're in a good namespace&lt;br /&gt;
    local ns = mw.title.getCurrentTitle().namespace&lt;br /&gt;
    for v in mw.text.gsplit( namespaces, &amp;quot;,&amp;quot;, true ) do&lt;br /&gt;
        if tonumber( v ) == ns then&lt;br /&gt;
            ok = true&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
    if not ok then -- not in one of the approved namespaces&lt;br /&gt;
        return &amp;quot;&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    local qid = mw.wikibase.getEntityIdForCurrentPage()&lt;br /&gt;
    if not qid then -- no Wikidata item&lt;br /&gt;
        return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; not in Wikidata]]&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    local statements = mw.wikibase.getBestStatements( qid, property )&lt;br /&gt;
    if not statements then -- no claim of that property&lt;br /&gt;
        return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; not in Wikidata]]&amp;quot; -- bad. Bot needs to add the property&lt;br /&gt;
    end&lt;br /&gt;
  	if value == &amp;quot;&amp;quot; then&lt;br /&gt;
       	return nil -- Using Wikidata&lt;br /&gt;
	end&lt;br /&gt;
    for _, statement in ipairs( statements ) do	-- Now we try to iterate over all possible values?&lt;br /&gt;
    	propValue = statement.mainsnak.datavalue.value&lt;br /&gt;
    	if propValue == value then&lt;br /&gt;
        	return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; same as Wikidata]]&amp;quot; -- yay!&lt;br /&gt;
    	end&lt;br /&gt;
	end&lt;br /&gt;
    return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; different from Wikidata]]&amp;quot; -- needs human review :(&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.wikidatacheck( frame )&lt;br /&gt;
    return p._wikidatacheck( frame.args )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456344</id>
		<title>Module:WikidataCheck/sandbox</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456344"/>
		<updated>2018-01-17T19:45:45Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: make this module useful outside of #invoke (i.e., from other modules instead of only from templates)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p._wikidatacheck( config, args )&lt;br /&gt;
    local property = config.property&lt;br /&gt;
    local value = config.value or &amp;quot;&amp;quot;&lt;br /&gt;
    local catbase = config.category&lt;br /&gt;
    local namespaces = config.namespaces&lt;br /&gt;
    local ok = false -- one-way flag to check if we're in a good namespace&lt;br /&gt;
    local ns = mw.title.getCurrentTitle().namespace&lt;br /&gt;
    for v in mw.text.gsplit( namespaces, &amp;quot;,&amp;quot;, true ) do&lt;br /&gt;
        if tonumber( v ) == ns then&lt;br /&gt;
            ok = true&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
    if not ok then -- not in one of the approved namespaces&lt;br /&gt;
        return &amp;quot;&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    local qid = mw.wikibase.getEntityIdForCurrentPage()&lt;br /&gt;
    if not qid then -- no Wikidata item&lt;br /&gt;
        return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; not in Wikidata]]&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    local statements = mw.wikibase.getBestStatements( qid, property )&lt;br /&gt;
    if not statements then -- no claim of that property&lt;br /&gt;
        return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; not in Wikidata]]&amp;quot; -- bad. Bot needs to add the property&lt;br /&gt;
    end&lt;br /&gt;
  	if value == &amp;quot;&amp;quot; then&lt;br /&gt;
       	return nil -- Using Wikidata&lt;br /&gt;
	end&lt;br /&gt;
    for _, statement in ipairs( statements ) do	-- Now we try to iterate over all possible values?&lt;br /&gt;
    	propValue = statement.mainsnak.datavalue.value&lt;br /&gt;
    	if propValue == value then&lt;br /&gt;
        	return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; same as Wikidata]]&amp;quot; -- yay!&lt;br /&gt;
    	end&lt;br /&gt;
	end&lt;br /&gt;
    return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; different from Wikidata]]&amp;quot; -- needs human review :(&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.wikidatacheck( frame )&lt;br /&gt;
    local pframe = frame:getParent()&lt;br /&gt;
    local config = frame.args -- the arguments passed BY the template, in the wikitext of the template itself&lt;br /&gt;
    local args = pframe.args -- the arguments passed TO the template, in the wikitext that transcludes the template&lt;br /&gt;
    &lt;br /&gt;
    return p.wikidatacheck( config, args )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456343</id>
		<title>Module:WikidataCheck/sandbox</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456343"/>
		<updated>2018-01-14T17:17:52Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: handle no attached item specifically as before&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.wikidatacheck( frame )&lt;br /&gt;
    local pframe = frame:getParent()&lt;br /&gt;
    local config = frame.args -- the arguments passed BY the template, in the wikitext of the template itself&lt;br /&gt;
    local args = pframe.args -- the arguments passed TO the template, in the wikitext that transcludes the template&lt;br /&gt;
    &lt;br /&gt;
    local property = config.property&lt;br /&gt;
    local value = config.value or &amp;quot;&amp;quot;&lt;br /&gt;
    local catbase = config.category&lt;br /&gt;
    local namespaces = config.namespaces&lt;br /&gt;
    local ok = false -- one-way flag to check if we're in a good namespace&lt;br /&gt;
    local ns = mw.title.getCurrentTitle().namespace&lt;br /&gt;
    for v in mw.text.gsplit( namespaces, &amp;quot;,&amp;quot;, true ) do&lt;br /&gt;
        if tonumber( v ) == ns then&lt;br /&gt;
            ok = true&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
    if not ok then -- not in one of the approved namespaces&lt;br /&gt;
        return &amp;quot;&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    local qid = mw.wikibase.getEntityIdForCurrentPage()&lt;br /&gt;
    if not qid then -- no Wikidata item&lt;br /&gt;
        return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; not in Wikidata]]&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    local statements = mw.wikibase.getBestStatements( qid, property )&lt;br /&gt;
    if not statements then -- no claim of that property&lt;br /&gt;
        return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; not in Wikidata]]&amp;quot; -- bad. Bot needs to add the property&lt;br /&gt;
    end&lt;br /&gt;
  	if value == &amp;quot;&amp;quot; then&lt;br /&gt;
       	return nil -- Using Wikidata&lt;br /&gt;
	end&lt;br /&gt;
    for _, statement in ipairs( statements ) do	-- Now we try to iterate over all possible values?&lt;br /&gt;
    	propValue = statement.mainsnak.datavalue.value&lt;br /&gt;
    	if propValue == value then&lt;br /&gt;
        	return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; same as Wikidata]]&amp;quot; -- yay!&lt;br /&gt;
    	end&lt;br /&gt;
	end&lt;br /&gt;
    return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; different from Wikidata]]&amp;quot; -- needs human review :(&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456342</id>
		<title>Module:WikidataCheck/sandbox</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456342"/>
		<updated>2018-01-13T07:24:41Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: more spaces in parameter and argument lists&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.wikidatacheck( frame )&lt;br /&gt;
    local pframe = frame:getParent()&lt;br /&gt;
    local config = frame.args -- the arguments passed BY the template, in the wikitext of the template itself&lt;br /&gt;
    local args = pframe.args -- the arguments passed TO the template, in the wikitext that transcludes the template&lt;br /&gt;
    &lt;br /&gt;
    local property = config.property&lt;br /&gt;
    local value = config.value or &amp;quot;&amp;quot;&lt;br /&gt;
    local catbase = config.category&lt;br /&gt;
    local namespaces = config.namespaces&lt;br /&gt;
    local ok = false -- one-way flag to check if we're in a good namespace&lt;br /&gt;
    local ns = mw.title.getCurrentTitle().namespace&lt;br /&gt;
    for v in mw.text.gsplit( namespaces, &amp;quot;,&amp;quot;, true ) do&lt;br /&gt;
        if tonumber( v ) == ns then&lt;br /&gt;
            ok = true&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
    if not ok then -- not in one of the approved namespaces&lt;br /&gt;
        return &amp;quot;&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    local id = mw.wikibase.getEntityIdForCurrentPage()&lt;br /&gt;
    local statements = mw.wikibase.getBestStatements( id, property )&lt;br /&gt;
    if not statements then -- no claim of that property&lt;br /&gt;
        return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; not in Wikidata]]&amp;quot; -- bad. Bot needs to add the property&lt;br /&gt;
    end&lt;br /&gt;
  	if value == &amp;quot;&amp;quot; then&lt;br /&gt;
       	return nil -- Using Wikidata&lt;br /&gt;
	end&lt;br /&gt;
    for _, statement in ipairs( statements ) do	-- Now we try to iterate over all possible values?&lt;br /&gt;
    	propValue = statement.mainsnak.datavalue.value&lt;br /&gt;
    	if propValue == value then&lt;br /&gt;
        	return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; same as Wikidata]]&amp;quot; -- yay!&lt;br /&gt;
    	end&lt;br /&gt;
	end&lt;br /&gt;
    return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; different from Wikidata]]&amp;quot; -- needs human review :(&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456341</id>
		<title>Module:WikidataCheck/sandbox</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456341"/>
		<updated>2018-01-13T06:59:40Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: spaces in argument lists&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.wikidatacheck(frame)&lt;br /&gt;
    local pframe = frame:getParent()&lt;br /&gt;
    local config = frame.args -- the arguments passed BY the template, in the wikitext of the template itself&lt;br /&gt;
    local args = pframe.args -- the arguments passed TO the template, in the wikitext that transcludes the template&lt;br /&gt;
    &lt;br /&gt;
    local property = config.property&lt;br /&gt;
    local value = config.value or &amp;quot;&amp;quot;&lt;br /&gt;
    local catbase = config.category&lt;br /&gt;
    local namespaces = config.namespaces&lt;br /&gt;
    local ok = false -- one-way flag to check if we're in a good namespace&lt;br /&gt;
    local ns = mw.title.getCurrentTitle().namespace&lt;br /&gt;
    for v in mw.text.gsplit( namespaces, &amp;quot;,&amp;quot;, true ) do&lt;br /&gt;
        if tonumber(v) == ns then&lt;br /&gt;
            ok = true&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
    if not ok then -- not in one of the approved namespaces&lt;br /&gt;
        return &amp;quot;&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    local id = mw.wikibase.getEntityIdForCurrentPage()&lt;br /&gt;
    local statements = mw.wikibase.getBestStatements( id, property )&lt;br /&gt;
    if not statements then -- no claim of that property&lt;br /&gt;
        return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; not in Wikidata]]&amp;quot; -- bad. Bot needs to add the property&lt;br /&gt;
    end&lt;br /&gt;
  	if value == &amp;quot;&amp;quot; then&lt;br /&gt;
       	return nil -- Using Wikidata&lt;br /&gt;
	end&lt;br /&gt;
    for _, statement in ipairs(statements) do	-- Now we try to iterate over all possible values?&lt;br /&gt;
    	propValue = statement.mainsnak.datavalue.value&lt;br /&gt;
    	if propValue == value then&lt;br /&gt;
        	return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; same as Wikidata]]&amp;quot; -- yay!&lt;br /&gt;
    	end&lt;br /&gt;
	end&lt;br /&gt;
    return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; different from Wikidata]]&amp;quot; -- needs human review :(&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456340</id>
		<title>Module:WikidataCheck/sandbox</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:WikidataCheck/sandbox&amp;diff=456340"/>
		<updated>2018-01-13T01:07:23Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: use getBestStatements to simplify, avoid getEntity/getEntityObject and filter by property and rank&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.wikidatacheck(frame)&lt;br /&gt;
    local pframe = frame:getParent()&lt;br /&gt;
    local config = frame.args -- the arguments passed BY the template, in the wikitext of the template itself&lt;br /&gt;
    local args = pframe.args -- the arguments passed TO the template, in the wikitext that transcludes the template&lt;br /&gt;
    &lt;br /&gt;
    local property = config.property&lt;br /&gt;
    local value = config.value or &amp;quot;&amp;quot;&lt;br /&gt;
    local catbase = config.category&lt;br /&gt;
    local namespaces = config.namespaces&lt;br /&gt;
    local ok = false -- one-way flag to check if we're in a good namespace&lt;br /&gt;
    local ns = mw.title.getCurrentTitle().namespace&lt;br /&gt;
    for v in mw.text.gsplit( namespaces, &amp;quot;,&amp;quot;, true) do&lt;br /&gt;
        if tonumber(v) == ns then&lt;br /&gt;
            ok = true&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
    if not ok then -- not in one of the approved namespaces&lt;br /&gt;
        return &amp;quot;&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    local id = mw.wikibase.getEntityIdForCurrentPage()&lt;br /&gt;
    local statements = mw.wikibase.getBestStatements(id, property)&lt;br /&gt;
    if not statements then -- no claim of that property&lt;br /&gt;
        return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; not in Wikidata]]&amp;quot; -- bad. Bot needs to add the property&lt;br /&gt;
    end&lt;br /&gt;
  	if value == &amp;quot;&amp;quot; then&lt;br /&gt;
       	return nil -- Using Wikidata&lt;br /&gt;
	end&lt;br /&gt;
    for _, statement in ipairs(statements) do	-- Now we try to iterate over all possible values?&lt;br /&gt;
    	propValue = statement.mainsnak.datavalue.value&lt;br /&gt;
    	if propValue == value then&lt;br /&gt;
        	return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; same as Wikidata]]&amp;quot; -- yay!&lt;br /&gt;
    	end&lt;br /&gt;
	end&lt;br /&gt;
    return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; different from Wikidata]]&amp;quot; -- needs human review :(&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:GitHub/doc&amp;diff=5480638</id>
		<title>Template:GitHub/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:GitHub/doc&amp;diff=5480638"/>
		<updated>2018-01-10T03:40:16Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&lt;br /&gt;
&amp;lt;!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see [[Wikipedia:Wikidata]]) --&amp;gt;&lt;br /&gt;
== Usage ==&lt;br /&gt;
This template can be used to create a link to a repository or a single file on [[GitHub]].  The link to GitHub can be suppressed with the parameter {{Para|link|no}}, and the mentioning of GitHub can be omitted entirely with {{Para|link|hidden}}.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
* {{#invoke:DemoTemplate|{{BASEPAGENAME}}|RDFLib/rdflib}}&lt;br /&gt;
* {{#invoke:DemoTemplate|{{BASEPAGENAME}}|RDFLib/rdflib|RDFLib}}&lt;br /&gt;
* {{#invoke:DemoTemplate|{{BASEPAGENAME}}|RDFLib/rdflib|RDFLib|link=no}}&lt;br /&gt;
* {{#invoke:DemoTemplate|{{BASEPAGENAME}}|RDFLib/rdflib|RDFLib|link=hidden}}&lt;br /&gt;
* {{#invoke:DemoTemplate|{{BASEPAGENAME}}|https://github.com/RDFLib/rdflib}}&lt;br /&gt;
* {{#invoke:DemoTemplate|{{BASEPAGENAME}}|https://github.com/RDFLib/rdflib/blob/master/rdflib/compare.py}}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* {{Tl|Openhub}}&lt;br /&gt;
* {{Tl|SourceForge}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox | |&lt;br /&gt;
&amp;lt;!-- Categories below this line, please; interwikis at Wikidata --&amp;gt;&lt;br /&gt;
[[Category:Software external link templates]]&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:DBLP&amp;diff=3829485</id>
		<title>Template:DBLP</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:DBLP&amp;diff=3829485"/>
		<updated>2018-01-06T20:34:55Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: trade Special:WhatLinksHere/Template:DBLP/id {{{id}}} parameter tracking for Special:WhatLinksHere/Template:DBLP/pid {{{pid}}} parameter tracking since most instantiations actually use d:Special:EntityPage/P2456&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://dblp.org/{{#if:{{{id|}}}|pers/{{lc:{{padright:|1|{{{id}}}}}}}/{{{id}}}|pid/{{Trim|{{{1|{{{pid|{{#property:P2456}}}}}}}}}}}} {{{2|{{{title|{{{name|{{PAGENAMEBASE}}}}}}}}}}}] at [[DBLP]] Bibliography Server{{#if:{{{pid|}}}|{{#if:{{DBLP/pid}}}}}}{{#if:{{{id|}}}|[[Category:Pages using DBLP with the id parameter]]}}&amp;lt;noinclude&amp;gt;{{Documentation}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:DBLP/doc&amp;diff=3829520</id>
		<title>Template:DBLP/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:DBLP/doc&amp;diff=3829520"/>
		<updated>2018-01-04T13:44:31Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: remove deprecated &amp;quot;Compatibility usage&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&lt;br /&gt;
&amp;lt;!-- Categories go at the bottom of this page. --&amp;gt;&lt;br /&gt;
{{Uses Wikidata|P2456}}&lt;br /&gt;
&lt;br /&gt;
This template generates an external link to an person's page at the computer science bibliography website [[DBLP]].&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
One parameter:&lt;br /&gt;
: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} |''PID''}}&amp;lt;/code&amp;gt;&lt;br /&gt;
: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} |pid=''PID''}}&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Two parameters:&lt;br /&gt;
: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} |''PID'' |''NAME''}}&amp;lt;/code&amp;gt;&lt;br /&gt;
: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} |pid=''ID'' |name=''NAME''}}&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
===One parameter===&lt;br /&gt;
This parameter will be the PID string used in the [[URL]] at DBLP. When one parameter is used, the [[link text]] is the title of the Wikipedia article where the template is used.&lt;br /&gt;
&lt;br /&gt;
: URL: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://&amp;lt;/nowiki&amp;gt;dblp.org/pid/{{hilite|h/CARHoare}}&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} |h/CARHoare}}&amp;lt;/code&amp;gt;&lt;br /&gt;
#: {{{{BASEPAGENAME}} |h/CARHoare}}&lt;br /&gt;
# &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} |pid=h/CARHoare}}&amp;lt;/code&amp;gt;&lt;br /&gt;
#: {{{{BASEPAGENAME}} |pid=h/CARHoare}}&lt;br /&gt;
&lt;br /&gt;
[The name of the Wikipedia page you now are looking at is displayed above. The lead name will change according to the name of the Wikipedia page the template is used on.]&lt;br /&gt;
&lt;br /&gt;
===Two parameters===&lt;br /&gt;
The first parameter will be the PID string used in the [[URL]] at DBLP. The second parameter will be used at the [[link text]].&lt;br /&gt;
&lt;br /&gt;
: URL: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://&amp;lt;/nowiki&amp;gt;dblp.org/pid/{{hilite|h/CARHoare}}&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} |h/CARHoare |C. A. R. Hoare}}&amp;lt;/code&amp;gt;&lt;br /&gt;
#: {{{{BASEPAGENAME}} |h/CARHoare |C. A. R. Hoare}}&lt;br /&gt;
# &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} |pid=h/CARHoare |name=C. A. R. Hoare}}&amp;lt;/code&amp;gt;&lt;br /&gt;
#: {{{{BASEPAGENAME}} |pid=h/CARHoare |name=C. A. R. Hoare}}&lt;br /&gt;
&lt;br /&gt;
== Template data ==&lt;br /&gt;
{{TemplateDataHeader}}&lt;br /&gt;
&amp;lt;templatedata&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
        &amp;quot;description&amp;quot;: &amp;quot;This template generates an external link to an account at DBLP.&amp;quot;,&lt;br /&gt;
	&amp;quot;params&amp;quot;: {&lt;br /&gt;
		&amp;quot;pid&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;PID&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;PID string used in the URL.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: false,&lt;br /&gt;
			&amp;quot;aliases&amp;quot;: [ &amp;quot;1&amp;quot; ]&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;name&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Name&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Name displayed as the link text. If not specified it defaults to the article's {{PAGENAME}}, without disambiguation.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
                        &amp;quot;required&amp;quot;: false,&lt;br /&gt;
			&amp;quot;aliases&amp;quot;: [ &amp;quot;2&amp;quot; ]&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/templatedata&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
{{Wikidata property|P2456}}&lt;br /&gt;
* {{Tl|AcademicSearch}}&lt;br /&gt;
* {{tl|ACM Portal}}&lt;br /&gt;
* {{Tl|Google Scholar id}}&lt;br /&gt;
* {{Tl|MacTutor}}&lt;br /&gt;
* {{tl|ORCID}}&lt;br /&gt;
* {{tl|Scopus}}&lt;br /&gt;
* {{tl|zbMATH}}&lt;br /&gt;
* {{tl|MathGenealogy}}&lt;br /&gt;
* {{cl|Pages using DBLP with the id parameter|count=yes}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox | |&lt;br /&gt;
&amp;lt;!--Categories below this line, please; interwikis at Wikidata--&amp;gt;&lt;br /&gt;
{{DEFAULTSORT:DBLP}}&lt;br /&gt;
[[Category:Computer science templates]]&lt;br /&gt;
[[Category:Mathematics source templates]]&lt;br /&gt;
[[Category:People and person external link templates]]&lt;br /&gt;
[[Category:Templates using data from Wikidata]]&lt;br /&gt;
[[Category:External link templates using Wikidata]]&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:DBLP&amp;diff=3829484</id>
		<title>Template:DBLP</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:DBLP&amp;diff=3829484"/>
		<updated>2018-01-04T12:48:01Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Undid revision 815458788 by Jonesey95 (talk) the sub-template tracking is still being used to find the last remaining usages&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://dblp.org/{{#if:{{{id|}}}|pers/{{lc:{{padright:|1|{{{id}}}}}}}/{{{id}}}|pid/{{Trim|{{{1|{{{pid|{{#property:P2456}}}}}}}}}}}} {{{2|{{{title|{{{name|{{PAGENAMEBASE}}}}}}}}}}}] at [[DBLP]] Bibliography Server{{#if:{{{id|}}}|{{#if:{{DBLP/id}}}}[[Category:Pages using DBLP with the id parameter]]}}&amp;lt;noinclude&amp;gt;{{Documentation}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Google_templates&amp;diff=5528861</id>
		<title>Template:Google templates</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Google_templates&amp;diff=5528861"/>
		<updated>2018-01-04T12:34:05Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: -Template:GoogleScholar merged redundant&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*{{tl|Google}}&lt;br /&gt;
*{{tl|Google books}}&lt;br /&gt;
*{{tl|Google custom}}&lt;br /&gt;
*{{tl|Google help desk}}&lt;br /&gt;
*{{tl|Google images}}&lt;br /&gt;
*{{tl|Google LC}} (Google—excluding Language, Country)&lt;br /&gt;
*{{tl|Search for}}&lt;br /&gt;
*{{tl|Find sources}}&lt;br /&gt;
*{{tl|Google scholar}}&lt;br /&gt;
*{{tl|Google Scholar id}} - for individuals' profiles&lt;br /&gt;
*{{tl|Google trends}}&lt;br /&gt;
*{{tl|Google translation}}&lt;br /&gt;
*{{tl|Google Wikipedia}}&lt;br /&gt;
*{{tl|Help desk searches}}&lt;br /&gt;
*{{tl|Translate wikipedia}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:GoogleScholar&amp;diff=5526720</id>
		<title>Template:GoogleScholar</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:GoogleScholar&amp;diff=5526720"/>
		<updated>2018-01-04T12:30:33Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: merge&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Template:Google Scholar id]]&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:GoogleScholar/doc&amp;diff=5526727</id>
		<title>Template:GoogleScholar/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:GoogleScholar/doc&amp;diff=5526727"/>
		<updated>2018-01-04T12:29:45Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: merge&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Template:Google Scholar id/doc]]&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Google_Scholar_id/doc&amp;diff=5528377</id>
		<title>Template:Google Scholar id/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Google_Scholar_id/doc&amp;diff=5528377"/>
		<updated>2018-01-04T12:26:11Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&lt;br /&gt;
&amp;lt;!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])--&amp;gt;&lt;br /&gt;
{{Uses Wikidata|P1960}}&lt;br /&gt;
{{Lua|Module:EditAtWikidata}}&lt;br /&gt;
&lt;br /&gt;
This template generates an external link to an person's profile at [[Google Scholar]].&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
One parameter:&lt;br /&gt;
: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} | ''ID'' }}&amp;lt;/code&amp;gt;&lt;br /&gt;
: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} | id= ''ID'' }}&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Two parameters:&lt;br /&gt;
: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} | ''ID'' | ''NAME'' }}&amp;lt;/code&amp;gt;&lt;br /&gt;
: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} | id= ''ID'' | name= ''NAME'' }}&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
===One parameter===&lt;br /&gt;
This parameter will be the ID string used in the [[URL]] at Google Scholar. When one parameter is used, the [[link text]] is the title of the Wikipedia article where the template is used.&lt;br /&gt;
&lt;br /&gt;
: URL: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;https://&amp;lt;/nowiki&amp;gt;scholar.google.com/citations?user={{hilite|EeTd0CYAAAAJ}}&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} | EeTd0CYAAAAJ }}&amp;lt;/code&amp;gt;&lt;br /&gt;
#: {{{{BASEPAGENAME}} | EeTd0CYAAAAJ }}&lt;br /&gt;
# &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} | id= EeTd0CYAAAAJ }}&amp;lt;/code&amp;gt;&lt;br /&gt;
#: {{{{BASEPAGENAME}} | id= EeTd0CYAAAAJ }}&lt;br /&gt;
&lt;br /&gt;
[The name of the Wikipedia page you now are looking at is displayed above. The lead name will change according to the name of the Wikipedia page the template is used on.]&lt;br /&gt;
&lt;br /&gt;
===Two parameters===&lt;br /&gt;
The first parameter will be the ID string used in the [[URL]] at Google Scholar. The second parameter will be used at the [[link text]].&lt;br /&gt;
&lt;br /&gt;
: URL: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;https://&amp;lt;/nowiki&amp;gt;scholar.google.com/citations?user={{hilite|EeTd0CYAAAAJ}}&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} | EeTd0CYAAAAJ | Yoelle Maarek }}&amp;lt;/code&amp;gt;&lt;br /&gt;
#: {{{{BASEPAGENAME}} | EeTd0CYAAAAJ| Yoelle Maarek }}&lt;br /&gt;
# &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}} | id= EeTd0CYAAAAJ | name= Yoelle Maarek }}&amp;lt;/code&amp;gt;&lt;br /&gt;
#: {{{{BASEPAGENAME}} | id= EeTd0CYAAAAJ | name= Yoelle Maarek }}&lt;br /&gt;
&lt;br /&gt;
=== No parameters and Wikidata property not defined ===&lt;br /&gt;
''Usage:''&lt;br /&gt;
: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{BASEPAGENAME}}&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''Output:''&lt;br /&gt;
: {{ {{BASEPAGENAME}} }}&lt;br /&gt;
&lt;br /&gt;
== Template data ==&lt;br /&gt;
{{TemplateDataHeader}}&lt;br /&gt;
&amp;lt;templatedata&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
        &amp;quot;description&amp;quot;: &amp;quot;This template generates an external link to an account at Google Scholar.&amp;quot;,&lt;br /&gt;
	&amp;quot;params&amp;quot;: {&lt;br /&gt;
		&amp;quot;id&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;ID&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;ID string used in the URL.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true,&lt;br /&gt;
			&amp;quot;aliases&amp;quot;: [ &amp;quot;1&amp;quot; ]&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;name&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Name&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Name displayed as the link text. If not specified it defaults to the article's {{PAGENAME}}, without disambiguation.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
                        &amp;quot;required&amp;quot;: false,&lt;br /&gt;
			&amp;quot;aliases&amp;quot;: [ &amp;quot;2&amp;quot; ]&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/templatedata&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* {{Tl|AcademicSearch}}&lt;br /&gt;
* {{Tl|DBLP}}&lt;br /&gt;
* {{Tl|MacTutor}}&lt;br /&gt;
{{Google templates}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox | |&lt;br /&gt;
&amp;lt;!--Categories below this line, please; interwikis at Wikidata--&amp;gt;&lt;br /&gt;
{{DEFAULTSORT:Google Scholar id}}&lt;br /&gt;
[[Category:Google templates]]&lt;br /&gt;
[[Category:People and person external link templates]]&lt;br /&gt;
[[Category:External link templates using Wikidata]]&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:BloodRayne&amp;diff=2676910</id>
		<title>Template:BloodRayne</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:BloodRayne&amp;diff=2676910"/>
		<updated>2018-01-02T01:38:47Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: bypass redir in nav&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name=Bloodrayne&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
|title=[[BloodRayne (franchise)|''BloodRayne'' franchise]]&lt;br /&gt;
|state = {{{state|autocollapse}}}&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1=Video games&lt;br /&gt;
|list1=&lt;br /&gt;
* ''[[BloodRayne]]''&lt;br /&gt;
* ''[[BloodRayne 2|2]]''&lt;br /&gt;
* ''[[BloodRayne: Betrayal|Betrayal]]''&lt;br /&gt;
&lt;br /&gt;
|group2=Films&lt;br /&gt;
|list2=&lt;br /&gt;
* ''[[BloodRayne (film)|BloodRayne]]''&lt;br /&gt;
* ''[[BloodRayne 2: Deliverance|2: Deliverance]]''&lt;br /&gt;
* ''[[BloodRayne: The Third Reich|The Third Reich]]''&lt;br /&gt;
&lt;br /&gt;
|group3=[[BloodRayne (franchise)#Characters|Characters]]&lt;br /&gt;
|list3=&lt;br /&gt;
* [[Rayne (BloodRayne)|Rayne]]&lt;br /&gt;
&lt;br /&gt;
|group4=Related&lt;br /&gt;
|list4=&lt;br /&gt;
*''[[Blubberella]]''&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Massacre_(franchise)&amp;diff=7376163</id>
		<title>Template:Massacre (franchise)</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Massacre_(franchise)&amp;diff=7376163"/>
		<updated>2018-01-02T01:33:56Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Cheerleader Massacre&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name = Massacre (film series)&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
|title = ''[[Massacre (film series)|Massacre]]'' film series&lt;br /&gt;
|state = {{{state|autocollapse}}}&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1 = ''The Slumber Party Massacre'' series&lt;br /&gt;
|list1 = &lt;br /&gt;
* ''[[The Slumber Party Massacre|Slumber Party Massacre]]''&lt;br /&gt;
* ''[[Slumber Party Massacre II]]''&lt;br /&gt;
* ''[[Slumber Party Massacre III]]''&lt;br /&gt;
&lt;br /&gt;
|group2 = ''Sorority House Massacre'' series&lt;br /&gt;
|list2 =&lt;br /&gt;
* ''[[Sorority House Massacre]]''&lt;br /&gt;
* ''[[Sorority House Massacre II]]''&lt;br /&gt;
&lt;br /&gt;
|group3=Related&lt;br /&gt;
|list3=&lt;br /&gt;
*''[[Cheerleader Massacre]]''&lt;br /&gt;
*''[[Hard to Die]]''&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Massacre}}&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
&lt;br /&gt;
[[he:תבנית:סאות' פארק]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Living_Dead&amp;diff=7123296</id>
		<title>Template:Living Dead</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Living_Dead&amp;diff=7123296"/>
		<updated>2018-01-02T00:52:38Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: align subnav&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name  = Living Dead&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
| title = ''[[Living Dead]]'' films&lt;br /&gt;
| state = {{{state|autocollapse}}}&lt;br /&gt;
| listclass = hlist&lt;br /&gt;
&lt;br /&gt;
| group1 = [[Night of the Living Dead (film series)|Romero's ''Dead'' series]]&lt;br /&gt;
| list1  = &lt;br /&gt;
* ''[[Night of the Living Dead]]'' (1968)&lt;br /&gt;
* ''[[Dawn of the Dead (1978 film)|Dawn of the Dead]]'' (1978)&lt;br /&gt;
* ''[[Day of the Dead (1985 film)|Day of the Dead]]'' (1985)&lt;br /&gt;
* ''[[Land of the Dead]]'' (2005)&lt;br /&gt;
* ''[[Diary of the Dead]]'' (2007)&lt;br /&gt;
* ''[[Survival of the Dead]]'' (2009)&lt;br /&gt;
&lt;br /&gt;
| group2 = ''Dead'' series remakes&lt;br /&gt;
| list2  = &lt;br /&gt;
* ''[[Night of the Living Dead (1990 film)|Night of the Living Dead]]'' (1990)&lt;br /&gt;
* ''[[Dawn of the Dead (2004 film)|Dawn of the Dead]]'' (2004)&lt;br /&gt;
* ''[[Night of the Living Dead 3D]]'' (2006)&lt;br /&gt;
* ''[[Day of the Dead (2008 film)|Day of the Dead]]'' (2008)&lt;br /&gt;
* ''[[Day of the Dead: Bloodline]]'' (2018)&lt;br /&gt;
&lt;br /&gt;
| group3 = Other official sequels&lt;br /&gt;
| list3 =&lt;br /&gt;
* ''[[Day of the Dead 2: Contagium]]'' (2005)&lt;br /&gt;
* ''[[Night of the Living Dead 3D: Re-Animation]]'' (2012)&lt;br /&gt;
&lt;br /&gt;
| group4 = [[Return of the Living Dead (film series)|''Return of the Living Dead '' series]]&lt;br /&gt;
| list4  = &lt;br /&gt;
* ''[[The Return of the Living Dead]]'' (1985)&lt;br /&gt;
* ''[[Return of the Living Dead Part II]]'' (1988)&lt;br /&gt;
* ''[[Return of the Living Dead 3]]'' (1993)&lt;br /&gt;
* ''[[Return of the Living Dead: Necropolis]]'' (2005)&lt;br /&gt;
* ''[[Return of the Living Dead: Rave to the Grave]]'' (2005)&lt;br /&gt;
&lt;br /&gt;
| group5 = Unofficial sequels&lt;br /&gt;
| list5  = {{Navbox|border=child&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
  | group1 = [[Zombi (film series)|''Zombi'' series]]&lt;br /&gt;
  | list1  = &lt;br /&gt;
* ''[[Zombi 2]]'' (1979)&lt;br /&gt;
* ''[[Zombi 3]]'' (1988)&lt;br /&gt;
* ''[[After Death|Zombi 4: After Death]]'' (1989)&lt;br /&gt;
* ''[[Killing Birds|Zombi 5: Killing Birds]]'' (1988)&lt;br /&gt;
  | group2 = Other unofficial sequels&lt;br /&gt;
  | list2  = &lt;br /&gt;
* ''[[Children of the Living Dead]]'' (2001)&lt;br /&gt;
* ''[[Night of the Living Dead: Darkest Dawn]]'' (2015)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
| group6 = Parodies&lt;br /&gt;
| list6  = &lt;br /&gt;
* ''[[Night of the Living Bread]]'' (1990)&lt;br /&gt;
* ''[[Poultrygeist: Night of the Chicken Dead]]'' (2006)&lt;br /&gt;
* ''[[Night of the Living Carrots]]'' (2011)&lt;br /&gt;
&lt;br /&gt;
| group7 = Homages&lt;br /&gt;
| list7  = &lt;br /&gt;
* ''[[Flesheater]]'' (1988)&lt;br /&gt;
* ''[[Shaun of the Dead]]'' (2004)&lt;br /&gt;
* ''[[Fido (film)|Fido]]'' (2006)&lt;br /&gt;
* ''[[Flight of the Living Dead: Outbreak on a Plane]]'' (2007)&lt;br /&gt;
* ''[[Dance of the Dead (film)|Dance of the Dead]]'' (2008)&lt;br /&gt;
* ''[[Zone of the Dead]]'' (2009)&lt;br /&gt;
* ''[[Juan of the Dead]]'' (2011)&lt;br /&gt;
* ''[[Mimesis: Night of the Living Dead]]'' (2011)&lt;br /&gt;
&lt;br /&gt;
| group8 = Related topics&lt;br /&gt;
| list8  = &lt;br /&gt;
* [[Dawn of the Dead in popular culture|''Dawn of the Dead'' in popular culture]]&lt;br /&gt;
* ''[[Dawn of the Dead (soundtracks)|Dawn of the Dead]]'' (soundtracks)&lt;br /&gt;
* &amp;quot;[[Night of the Living Dead (song)|Night of the Living Dead]]&amp;quot; (1979 song)&lt;br /&gt;
* ''[[Document of the Dead]]'' (1979/1989/2012 documentary)&lt;br /&gt;
* ''[[Escape of the Living Dead]]'' (2005 comic book)&lt;br /&gt;
* ''[[Land of the Dead: Road to Fiddler's Green]]'' (2005 video game)&lt;br /&gt;
* ''[[City of the Dead (video game)|City of the Dead]]'' (cancelled video game)&lt;br /&gt;
* ''[[Birth of the Living Dead]]'' (2012 documentary)&lt;br /&gt;
* ''[[Empire of the Dead]]'' (2014&amp;amp;ndash;2015 comic book)&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Living_Dead&amp;diff=7123295</id>
		<title>Template:Living Dead</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Living_Dead&amp;diff=7123295"/>
		<updated>2018-01-02T00:52:03Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: doc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name  = Living Dead&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
| title = ''[[Living Dead]]'' films&lt;br /&gt;
| state = {{{state|autocollapse}}}&lt;br /&gt;
| listclass = hlist&lt;br /&gt;
&lt;br /&gt;
| group1 = [[Night of the Living Dead (film series)|Romero's ''Dead'' series]]&lt;br /&gt;
| list1  = &lt;br /&gt;
* ''[[Night of the Living Dead]]'' (1968)&lt;br /&gt;
* ''[[Dawn of the Dead (1978 film)|Dawn of the Dead]]'' (1978)&lt;br /&gt;
* ''[[Day of the Dead (1985 film)|Day of the Dead]]'' (1985)&lt;br /&gt;
* ''[[Land of the Dead]]'' (2005)&lt;br /&gt;
* ''[[Diary of the Dead]]'' (2007)&lt;br /&gt;
* ''[[Survival of the Dead]]'' (2009)&lt;br /&gt;
&lt;br /&gt;
| group2 = ''Dead'' series remakes&lt;br /&gt;
| list2  = &lt;br /&gt;
* ''[[Night of the Living Dead (1990 film)|Night of the Living Dead]]'' (1990)&lt;br /&gt;
* ''[[Dawn of the Dead (2004 film)|Dawn of the Dead]]'' (2004)&lt;br /&gt;
* ''[[Night of the Living Dead 3D]]'' (2006)&lt;br /&gt;
* ''[[Day of the Dead (2008 film)|Day of the Dead]]'' (2008)&lt;br /&gt;
* ''[[Day of the Dead: Bloodline]]'' (2018)&lt;br /&gt;
&lt;br /&gt;
| group3 = Other official sequels&lt;br /&gt;
| list3 =&lt;br /&gt;
* ''[[Day of the Dead 2: Contagium]]'' (2005)&lt;br /&gt;
* ''[[Night of the Living Dead 3D: Re-Animation]]'' (2012)&lt;br /&gt;
&lt;br /&gt;
| group4 = [[Return of the Living Dead (film series)|''Return of the Living Dead '' series]]&lt;br /&gt;
| list4  = &lt;br /&gt;
* ''[[The Return of the Living Dead]]'' (1985)&lt;br /&gt;
* ''[[Return of the Living Dead Part II]]'' (1988)&lt;br /&gt;
* ''[[Return of the Living Dead 3]]'' (1993)&lt;br /&gt;
* ''[[Return of the Living Dead: Necropolis]]'' (2005)&lt;br /&gt;
* ''[[Return of the Living Dead: Rave to the Grave]]'' (2005)&lt;br /&gt;
&lt;br /&gt;
| group5 = Unofficial sequels&lt;br /&gt;
| list5  = {{Navbox|border=child&lt;br /&gt;
  | group1 = [[Zombi (film series)|''Zombi'' series]]&lt;br /&gt;
  | list1  = &lt;br /&gt;
* ''[[Zombi 2]]'' (1979)&lt;br /&gt;
* ''[[Zombi 3]]'' (1988)&lt;br /&gt;
* ''[[After Death|Zombi 4: After Death]]'' (1989)&lt;br /&gt;
* ''[[Killing Birds|Zombi 5: Killing Birds]]'' (1988)&lt;br /&gt;
  | group2 = Other unofficial sequels&lt;br /&gt;
  | list2  = &lt;br /&gt;
* ''[[Children of the Living Dead]]'' (2001)&lt;br /&gt;
* ''[[Night of the Living Dead: Darkest Dawn]]'' (2015)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
| group6 = Parodies&lt;br /&gt;
| list6  = &lt;br /&gt;
* ''[[Night of the Living Bread]]'' (1990)&lt;br /&gt;
* ''[[Poultrygeist: Night of the Chicken Dead]]'' (2006)&lt;br /&gt;
* ''[[Night of the Living Carrots]]'' (2011)&lt;br /&gt;
&lt;br /&gt;
| group7 = Homages&lt;br /&gt;
| list7  = &lt;br /&gt;
* ''[[Flesheater]]'' (1988)&lt;br /&gt;
* ''[[Shaun of the Dead]]'' (2004)&lt;br /&gt;
* ''[[Fido (film)|Fido]]'' (2006)&lt;br /&gt;
* ''[[Flight of the Living Dead: Outbreak on a Plane]]'' (2007)&lt;br /&gt;
* ''[[Dance of the Dead (film)|Dance of the Dead]]'' (2008)&lt;br /&gt;
* ''[[Zone of the Dead]]'' (2009)&lt;br /&gt;
* ''[[Juan of the Dead]]'' (2011)&lt;br /&gt;
* ''[[Mimesis: Night of the Living Dead]]'' (2011)&lt;br /&gt;
&lt;br /&gt;
| group8 = Related topics&lt;br /&gt;
| list8  = &lt;br /&gt;
* [[Dawn of the Dead in popular culture|''Dawn of the Dead'' in popular culture]]&lt;br /&gt;
* ''[[Dawn of the Dead (soundtracks)|Dawn of the Dead]]'' (soundtracks)&lt;br /&gt;
* &amp;quot;[[Night of the Living Dead (song)|Night of the Living Dead]]&amp;quot; (1979 song)&lt;br /&gt;
* ''[[Document of the Dead]]'' (1979/1989/2012 documentary)&lt;br /&gt;
* ''[[Escape of the Living Dead]]'' (2005 comic book)&lt;br /&gt;
* ''[[Land of the Dead: Road to Fiddler's Green]]'' (2005 video game)&lt;br /&gt;
* ''[[City of the Dead (video game)|City of the Dead]]'' (cancelled video game)&lt;br /&gt;
* ''[[Birth of the Living Dead]]'' (2012 documentary)&lt;br /&gt;
* ''[[Empire of the Dead]]'' (2014&amp;amp;ndash;2015 comic book)&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Horror_navbox/doc&amp;diff=5853352</id>
		<title>Template:Horror navbox/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Horror_navbox/doc&amp;diff=5853352"/>
		<updated>2018-01-02T00:08:34Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: ←Redirected page to Template:Navbox/doc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Template:Navbox/doc]]&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Ju-on&amp;diff=6644478</id>
		<title>Template:Ju-on</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Ju-on&amp;diff=6644478"/>
		<updated>2018-01-02T00:05:50Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Template:Horror navbox-&amp;gt;Template:Navbox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name = Ju-on&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|title = ''[[Ju-On (franchise)|Ju-On]]'' &lt;br /&gt;
|state = {{{state|autocollapse}}}&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
&lt;br /&gt;
|group1=Films&lt;br /&gt;
|list1= {{navbox|subgroup&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
&lt;br /&gt;
|group1=Japanese&lt;br /&gt;
|list1=&lt;br /&gt;
* ''[[Ju-On: The Curse]]''&lt;br /&gt;
* ''[[Ju-On: The Curse 2|The Curse 2]]''&lt;br /&gt;
* ''[[Ju-On: The Grudge|The Grudge]]''&lt;br /&gt;
* ''[[Ju-On: The Grudge 2|The Grudge 2]]''&lt;br /&gt;
* ''[[Ju-On: White Ghost|White Ghost]]''&lt;br /&gt;
* ''[[Ju-On: Black Ghost|Black Ghost]]''&lt;br /&gt;
* ''[[Ju-On: The Beginning of the End|The Beginning of the End]]''&lt;br /&gt;
* ''[[Ju-On: The Final Curse|The Final Curse]]''&lt;br /&gt;
* ''[[Sadako vs. Kayako]]''&lt;br /&gt;
&lt;br /&gt;
|group2=[[The Grudge (film series)|American]]&lt;br /&gt;
|list2=&lt;br /&gt;
* ''[[The Grudge]]''&lt;br /&gt;
* ''[[The Grudge 2]]''&lt;br /&gt;
* ''[[The Grudge 3]]''&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|group2=Shorts&lt;br /&gt;
|list2= {{navbox|subgroup&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
&lt;br /&gt;
|group1=Japanese&lt;br /&gt;
|list1=&lt;br /&gt;
* [[Katasumi and 4444444444|''Katasumi'' and ''4444444444'']]&lt;br /&gt;
&lt;br /&gt;
|group2=American&lt;br /&gt;
|list2=&lt;br /&gt;
* ''[[The Grudge 2#Release|Tales from the Grudge]]''&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|group3=Video games&lt;br /&gt;
|list3= {{navbox|subgroup&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
&lt;br /&gt;
|group1=&lt;br /&gt;
|list1=&lt;br /&gt;
* [[Ju-On: The Grudge (video game)|''Ju-On: The Grudge'']]&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|group4=Characters&lt;br /&gt;
|list4= &lt;br /&gt;
* [[Kayako Saeki]]&lt;br /&gt;
* [[Takeo Saeki]]&lt;br /&gt;
* [[Toshio Saeki]]&lt;br /&gt;
* [[Karen Davis (The Grudge)|Karen Davis]]&lt;br /&gt;
* [[List of The Grudge characters|Other characters]]&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Horror film series navigational boxes|Grudge, The]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:House_of_the_Dead&amp;diff=5865423</id>
		<title>Template:House of the Dead</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:House_of_the_Dead&amp;diff=5865423"/>
		<updated>2018-01-02T00:02:13Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Template:Horror navbox-&amp;gt;Template:Navbox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name  = House of the Dead series&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
| title = ''[[The House of the Dead (series)|The House of the Dead]]'' series&lt;br /&gt;
| state = {{{state|autocollapse}}}&lt;br /&gt;
| listclass = hlist&lt;br /&gt;
&lt;br /&gt;
| group1 = Main series&lt;br /&gt;
| list1  = &lt;br /&gt;
* ''[[The House of the Dead (video game)|The House of the Dead]]''&lt;br /&gt;
* ''[[The House of the Dead 2|2]]''&lt;br /&gt;
* ''[[The House of the Dead III|III]]''&lt;br /&gt;
* ''[[The House of the Dead 4|4]]''&lt;br /&gt;
* ''[[The House of the Dead: Overkill|Overkill]]''&lt;br /&gt;
&lt;br /&gt;
| group2 = Spin-offs&lt;br /&gt;
| list2  = &lt;br /&gt;
* ''[[The Typing of the Dead]]''&lt;br /&gt;
* ''[[The Pinball of the Dead]]''&lt;br /&gt;
* ''[[The Typing of the Dead 2]]''&lt;br /&gt;
* ''[[The House of the Dead (series)#English of the Dead (2008)|English of the Dead]]'' &lt;br /&gt;
* ''[[The House of the Dead (series)#The House of the Dead EX (2009)|The House of the Dead EX]]'' &lt;br /&gt;
&lt;br /&gt;
| group3 = Compilations&lt;br /&gt;
| list3  = &lt;br /&gt;
* ''[[The House of the Dead 2 &amp;amp; 3 Return]]''&lt;br /&gt;
&lt;br /&gt;
| group4 = Films&lt;br /&gt;
| list4  = &lt;br /&gt;
* ''[[House of the Dead (film)|House of the Dead]]'' (2003)&lt;br /&gt;
* ''[[House of the Dead 2 (film)|House of the Dead 2]]'' (2005)&lt;br /&gt;
&lt;br /&gt;
| group5 = Related&lt;br /&gt;
| list5  = &lt;br /&gt;
* ''[[Zombie Revenge]]''&lt;br /&gt;
* ''[[Virtua Cop]]''&lt;br /&gt;
* ''[[Confidential Mission]]''&lt;br /&gt;
* ''[[Vampire Night]]''&lt;br /&gt;
* ''[[Dead and Deader]]''&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:House Of The Dead}}&lt;br /&gt;
[[Category:Sega game series navigational boxes]]&lt;br /&gt;
[[Category:Video game navigational boxes by series]]&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Hannibal_Lecter&amp;diff=5684711</id>
		<title>Template:Hannibal Lecter</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Hannibal_Lecter&amp;diff=5684711"/>
		<updated>2018-01-01T23:58:52Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Template:Horror navbox-&amp;gt;Template:Navbox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name=Hannibal Lecter&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
|title=[[Thomas Harris]]' ''[[Hannibal Lecter (franchise)|Hannibal Lecter]]''&lt;br /&gt;
|state={{{state|autocollapse}}}&lt;br /&gt;
|listclass=hlist&lt;br /&gt;
|above=&lt;br /&gt;
&lt;br /&gt;
|group1=Characters&lt;br /&gt;
|list1=&lt;br /&gt;
*[[Hannibal Lecter]]&lt;br /&gt;
*[[Will Graham (character)|Will Graham]]&lt;br /&gt;
*[[Clarice Starling]]&lt;br /&gt;
*[[Jack Crawford (character)|Jack Crawford]]&lt;br /&gt;
*[[Frederick Chilton]]&lt;br /&gt;
*[[Francis Dolarhyde]]&lt;br /&gt;
*[[Buffalo Bill (character)|Buffalo Bill]]&lt;br /&gt;
*[[Mason Verger]]&lt;br /&gt;
*[[Freddy Lounds]]&lt;br /&gt;
*[[Bedelia Du Maurier]]&lt;br /&gt;
&lt;br /&gt;
|group2=Novels&lt;br /&gt;
|list2=&lt;br /&gt;
*''[[Red Dragon (novel)|Red Dragon]]'' (1981)&lt;br /&gt;
*''[[The Silence of the Lambs (novel)|The Silence of the Lambs]]'' (1988)&lt;br /&gt;
*''[[Hannibal (Harris novel)|Hannibal]]'' (1999)&lt;br /&gt;
*''[[Hannibal Rising]]'' (2006)&lt;br /&gt;
&lt;br /&gt;
|group3=Films&lt;br /&gt;
|list3= &lt;br /&gt;
*''[[Manhunter (film)|Manhunter]]'' (1986)&lt;br /&gt;
*''[[The Silence of the Lambs (film)|The Silence of the Lambs]]'' (1991)&lt;br /&gt;
*''[[Hannibal (film)|Hannibal]]'' (2001)&lt;br /&gt;
*''[[Red Dragon (2002 film)|Red Dragon]]'' (2002)&lt;br /&gt;
*''[[Hannibal Rising (film)|Hannibal Rising]]'' (2007)&lt;br /&gt;
&lt;br /&gt;
|group4=Television&lt;br /&gt;
|list4=&lt;br /&gt;
* ''[[Hannibal (TV series)|Hannibal]]'' (2013–15) &lt;br /&gt;
** [[List of Hannibal episodes|episodes]]&lt;br /&gt;
** &amp;quot;[[Apéritif (Hannibal)|Apéritif]]&amp;quot;&lt;br /&gt;
** &amp;quot;[[Amuse-Bouche (Hannibal)|Amuse-Bouche]]&amp;quot;&lt;br /&gt;
** &amp;quot;[[Potage (Hannibal)|Potage]]&amp;quot;&lt;br /&gt;
** &amp;quot;[[Oeuf (Hannibal)|Oeuf]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|group5=Related productions &lt;br /&gt;
|list5=&lt;br /&gt;
*''[[The Silence of the Hams]]'' (1994)&lt;br /&gt;
*''[[Silence! The Musical]]'' (2005) &lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
[[Category:Novel series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Carrie_(franchise)&amp;diff=3204353</id>
		<title>Template:Carrie (franchise)</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Carrie_(franchise)&amp;diff=3204353"/>
		<updated>2018-01-01T23:55:55Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Template:Horror navbox-&amp;gt;Template:Navbox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name = Carrie&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
|title = [[Stephen King|Stephen King's]] ''[[Carrie (novel)|Carrie]]''&lt;br /&gt;
|state = {{{state|autocollapse}}}&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1 = Novel&lt;br /&gt;
|list1 = &lt;br /&gt;
* ''[[Carrie (novel)|Carrie]]'' (1974) &lt;br /&gt;
&lt;br /&gt;
|group2 = Films&lt;br /&gt;
|list2 = &lt;br /&gt;
* ''[[Carrie (1976 film)|Carrie]]'' (1976)&lt;br /&gt;
* ''[[The Rage: Carrie 2]]'' (1999)&lt;br /&gt;
* ''[[Carrie (2002 film)|Carrie]]'' (2002)&lt;br /&gt;
* ''[[Carrie (2013 film)|Carrie]]'' (2013)&lt;br /&gt;
&lt;br /&gt;
|group3 = Musical&lt;br /&gt;
|list3 = &lt;br /&gt;
* ''[[Carrie (musical)|Carrie: The Musical]]'' (1988)&lt;br /&gt;
* ''[[Scarrie! The Musical]]'' (1998)&lt;br /&gt;
&lt;br /&gt;
|group4 = Characters&lt;br /&gt;
|list4 = &lt;br /&gt;
* [[Carrie White]]&lt;br /&gt;
* [[Margaret White (Stephen King)|Margaret White]]&lt;br /&gt;
* [[Sue Snell]]&lt;br /&gt;
* [[Rita Desjardin]] &lt;br /&gt;
* [[Rachel Lang]]&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Horror film series navigational boxes|Carrie]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:BloodRayne&amp;diff=2676909</id>
		<title>Template:BloodRayne</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:BloodRayne&amp;diff=2676909"/>
		<updated>2018-01-01T23:52:16Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Template:Horror navbox-&amp;gt;Template:Navbox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name=Bloodrayne&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
|title=[[BloodRayne (series)|''BloodRayne'' series]]&lt;br /&gt;
|state = {{{state|autocollapse}}}&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1=Video games&lt;br /&gt;
|list1=&lt;br /&gt;
* ''[[BloodRayne]]''&lt;br /&gt;
* ''[[BloodRayne 2|2]]''&lt;br /&gt;
* ''[[BloodRayne: Betrayal|Betrayal]]''&lt;br /&gt;
&lt;br /&gt;
|group2=Films&lt;br /&gt;
|list2=&lt;br /&gt;
* ''[[BloodRayne (film)|BloodRayne]]''&lt;br /&gt;
* ''[[BloodRayne 2: Deliverance|2: Deliverance]]''&lt;br /&gt;
* ''[[BloodRayne: The Third Reich|The Third Reich]]''&lt;br /&gt;
&lt;br /&gt;
|group3=[[List of BloodRayne characters|Characters]]&lt;br /&gt;
|list3=&lt;br /&gt;
* [[Rayne (BloodRayne)|Rayne]]&lt;br /&gt;
&lt;br /&gt;
|group4=Related&lt;br /&gt;
|list4=&lt;br /&gt;
*''[[Blubberella]]''&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Class_of_Nuke_%27Em_High&amp;diff=3475323</id>
		<title>Template:Class of Nuke 'Em High</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Class_of_Nuke_%27Em_High&amp;diff=3475323"/>
		<updated>2018-01-01T23:43:27Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Template:Horror navbox-&amp;gt;Template:Navbox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name = Class of Nuke 'Em High&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
|title = ''[[Class of Nuke 'Em High]]'' series&lt;br /&gt;
|state = {{{state|autocollapse}}}&lt;br /&gt;
| listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1 = &lt;br /&gt;
|list1 = &lt;br /&gt;
* ''[[Class of Nuke 'Em High]]'' (1986)&lt;br /&gt;
* ''[[Class of Nuke 'Em High 2: Subhumanoid Meltdown]]'' (1991)&lt;br /&gt;
* ''[[Class of Nuke 'Em High 3: The Good, the Bad and the Subhumanoid]]'' (1994)&lt;br /&gt;
* ''[[Return to Nuke 'Em High Vol.1]]'' (2013)&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Class Of Nuke 'Em High}}&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Jeepers_Creepers&amp;diff=6592914</id>
		<title>Template:Jeepers Creepers</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Jeepers_Creepers&amp;diff=6592914"/>
		<updated>2018-01-01T23:40:57Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Template:Horror navbox-&amp;gt;Template:Navbox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name=Jeepers Creepers&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
|title=''Jeepers Creepers''&lt;br /&gt;
|state={{{state|autocollapse}}}&lt;br /&gt;
|listclass=hlist&lt;br /&gt;
&lt;br /&gt;
|group1=&lt;br /&gt;
|list1=&lt;br /&gt;
*''[[Jeepers Creepers (2001 film)|Jeepers Creepers]]''&lt;br /&gt;
*''[[Jeepers Creepers 2]]''&lt;br /&gt;
*''[[Jeepers Creepers 3]]''&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Massacre_(franchise)&amp;diff=7376162</id>
		<title>Template:Massacre (franchise)</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Massacre_(franchise)&amp;diff=7376162"/>
		<updated>2018-01-01T23:39:09Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Template:Horror navbox-&amp;gt;Template:Navbox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name = Massacre (film series)&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
|title = ''[[Massacre (film series)|Massacre]]'' film series&lt;br /&gt;
|state = {{{state|autocollapse}}}&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1 = ''The Slumber Party Massacre'' series&lt;br /&gt;
|list1 = &lt;br /&gt;
* ''[[The Slumber Party Massacre|Slumber Party Massacre]]''&lt;br /&gt;
* ''[[Slumber Party Massacre II]]''&lt;br /&gt;
* ''[[Slumber Party Massacre III]]''&lt;br /&gt;
&lt;br /&gt;
|group2 = ''Sorority House Massacre'' series&lt;br /&gt;
|list2 =&lt;br /&gt;
* ''[[Sorority House Massacre]]''&lt;br /&gt;
* ''[[Sorority House Massacre II]]''&lt;br /&gt;
&lt;br /&gt;
|group3=Related&lt;br /&gt;
|list3=&lt;br /&gt;
*''[[Hard to Die]]''&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Massacre}}&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
&lt;br /&gt;
[[he:תבנית:סאות' פארק]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:From_Dusk_till_Dawn&amp;diff=5342139</id>
		<title>Template:From Dusk till Dawn</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:From_Dusk_till_Dawn&amp;diff=5342139"/>
		<updated>2018-01-01T23:31:06Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Template:Horror navbox-&amp;gt;Template:Navbox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{navbox &lt;br /&gt;
|name=From Dusk till Dawn&lt;br /&gt;
|title=''[[From Dusk till Dawn (franchise)|From Dusk till Dawn]]''&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
|state={{{state|autocollapse}}}&lt;br /&gt;
|listclass=hlist&lt;br /&gt;
&lt;br /&gt;
|group1=Films&lt;br /&gt;
|list1=&lt;br /&gt;
*''[[From Dusk till Dawn]]''&lt;br /&gt;
**[[From Dusk Till Dawn (soundtrack)|soundtrack]]&lt;br /&gt;
*''[[From Dusk Till Dawn 2: Texas Blood Money]]''&lt;br /&gt;
*''[[From Dusk Till Dawn 3: The Hangman's Daughter]]''&lt;br /&gt;
&lt;br /&gt;
|group2=[[List of From Dusk till Dawn characters|Characters]]&lt;br /&gt;
|list2=&lt;br /&gt;
*[[Seth Gecko]]&lt;br /&gt;
*[[Richie Gecko]]&lt;br /&gt;
*[[Santanico Pandemonium]]&lt;br /&gt;
*[[Earl and Edgar McGraw]]&lt;br /&gt;
&lt;br /&gt;
|group3=Other&lt;br /&gt;
|list3=&lt;br /&gt;
*''[[From Dusk till Dawn: The Series]]''&lt;br /&gt;
**[[List of From Dusk till Dawn episodes|episodes]]&lt;br /&gt;
*''[[Full Tilt Boogie]]''&lt;br /&gt;
*[[From Dusk Till Dawn (video game)|Video game]]&lt;br /&gt;
*&amp;quot;[[She's Just Killing Me]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:From Dusk till Dawn (franchise)|τ]]&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Evil_Dead&amp;diff=4946633</id>
		<title>Template:Evil Dead</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Evil_Dead&amp;diff=4946633"/>
		<updated>2018-01-01T22:43:23Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Template:Horror navbox-&amp;gt;Template:Navbox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name  = Evil Dead&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
|title  = ''[[Evil Dead]]''&lt;br /&gt;
|state = {{{state|autocollapse}}}&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1=Films&lt;br /&gt;
|list1={{navbox|subgroup&lt;br /&gt;
|titlestyle = background:lightgrey;&lt;br /&gt;
|abovestyle = background:#DEDDE2;&lt;br /&gt;
|belowstyle = background:#DEDDE2;&lt;br /&gt;
|groupstyle = background:#DEDDE2;&lt;br /&gt;
|group1=Feature films&lt;br /&gt;
|list1=&lt;br /&gt;
* ''[[The Evil Dead]]''&lt;br /&gt;
* ''[[Evil Dead II]]''&lt;br /&gt;
* ''[[Army of Darkness]]''&lt;br /&gt;
* ''[[Evil Dead (2013 film)|Evil Dead]]''&lt;br /&gt;
|group2=Short film&lt;br /&gt;
|list2=&lt;br /&gt;
* ''[[Within the Woods]]''&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|group2=Television&lt;br /&gt;
|list2=&lt;br /&gt;
* ''[[Ash vs Evil Dead]]''&lt;br /&gt;
&lt;br /&gt;
|group3=Video games&lt;br /&gt;
|list3=&lt;br /&gt;
* ''[[The Evil Dead (video game)|The Evil Dead]]&lt;br /&gt;
* ''[[Evil Dead: Hail to the King|Hail to the King]]''&lt;br /&gt;
* ''[[Evil Dead: A Fistful of Boomstick|A Fistful of Boomstick]]''&lt;br /&gt;
* ''[[Evil Dead: Regeneration|Regeneration]]''&lt;br /&gt;
* ''[[Army of Darkness: Defense]]''&lt;br /&gt;
&lt;br /&gt;
|group4=[[Army of Darkness (comics)|Comics]]&lt;br /&gt;
|list4=&lt;br /&gt;
* ''[[Shop till You Drop Dead]]''&lt;br /&gt;
* ''[[Marvel Zombies vs. The Army of Darkness]]''&lt;br /&gt;
* ''[[Freddy vs. Jason vs. Ash]]''&lt;br /&gt;
* ''[[Freddy vs. Jason vs. Ash: The Nightmare Warriors]]''&lt;br /&gt;
&lt;br /&gt;
|group5= Musical&lt;br /&gt;
|list5=&lt;br /&gt;
* ''[[Evil Dead (musical)|Evil Dead: The Musical]]''&lt;br /&gt;
&lt;br /&gt;
|group6=[[List of Evil Dead characters|Characters]]&lt;br /&gt;
|list6=&lt;br /&gt;
* [[Ash Williams]]&lt;br /&gt;
&lt;br /&gt;
|group7=Related films&lt;br /&gt;
|list7=&lt;br /&gt;
* ''[[My Name Is Bruce]]''&lt;br /&gt;
* ''[[Evil Head]]''&lt;br /&gt;
&lt;br /&gt;
|group8=Unofficial sequels&lt;br /&gt;
|list8=&lt;br /&gt;
* ''[[Ghosthouse (film)|Ghosthouse]]''&lt;br /&gt;
* ''[[Witchery (film)|Witchery]]''&lt;br /&gt;
* ''[[Beyond Darkness]]''&lt;br /&gt;
* ''[[House II: The Second Story]]''&lt;br /&gt;
* ''[[The Horror Show]]''&lt;br /&gt;
&lt;br /&gt;
|belowclass=hlist&lt;br /&gt;
|below=&lt;br /&gt;
* {{Icon|Book}} [[Book:The Evil Dead series|Book]]&lt;br /&gt;
* {{Icon|Category}} [[:Category:The Evil Dead (franchise)|Category]]&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Horror film series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Edsger_Dijkstra&amp;diff=4771039</id>
		<title>Template:Edsger Dijkstra</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Edsger_Dijkstra&amp;diff=4771039"/>
		<updated>2017-12-15T23:15:28Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: doc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name      = Edsger Dijkstra&lt;br /&gt;
| title     = [[Edsger W. Dijkstra|Edsger Dijkstra]]&lt;br /&gt;
| state     = {{{state|autocollapse}}}&lt;br /&gt;
| listclass = hlist&lt;br /&gt;
&lt;br /&gt;
| group1 = [[Edsger W. Dijkstra#Publications|Publications]]&lt;br /&gt;
| list1  = &lt;br /&gt;
*''[[Structured Programming]]'' (book)&lt;br /&gt;
*''A Discipline of Programming'' (book)&lt;br /&gt;
*''A Method of Programming'' (book)&lt;br /&gt;
*''Predicate Calculus and Program Semantics'' (book)&lt;br /&gt;
*''Selected Writings on Computing: A Personal Perspective'' (book)&lt;br /&gt;
*[[Edsger W. Dijkstra#Publications|Selected papers]]&lt;br /&gt;
*''[[EWDs]]'' (EWD manuscripts)&amp;amp;nbsp;{{noitalic|{{smallsup|1}}}} &lt;br /&gt;
*''[[Go To Statement Considered Harmful]]''&lt;br /&gt;
*''[[On the Cruelty of Really Teaching Computer Science]]''&lt;br /&gt;
| group2 =  [[Computer science#Areas of computer science|Main research areas]]&lt;br /&gt;
|list2  =&lt;br /&gt;
*[[Theoretical computer science|Theoretical computing science]]  &lt;br /&gt;
*[[Software engineering]]&lt;br /&gt;
*[[Systems science]]&lt;br /&gt;
*[[Algorithm design]]&lt;br /&gt;
*[[Concurrent computing]]&lt;br /&gt;
*[[Distributed computing]]&lt;br /&gt;
*[[Formal methods]]&lt;br /&gt;
*[[Programming methodology]]&lt;br /&gt;
*[[Programming language research]]&lt;br /&gt;
*[[Software design|Program design]] and [[Software development|development]]&lt;br /&gt;
*[[Software architecture]]&lt;br /&gt;
| group3 = [[Edsger W. Dijkstra#Scientific contributions and impacts|Scientific contributions]]&lt;br /&gt;
| list3  =&lt;br /&gt;
{{Navbox|subgroup&lt;br /&gt;
| group1 = [[Edsger W. Dijkstra#Scientific contributions and impacts|Concepts and methods]]&lt;br /&gt;
| list1 =&lt;br /&gt;
*[[ALGOL 60]] [[Programming language implementation|implementation]]&lt;br /&gt;
*[[Call stack]]&lt;br /&gt;
*[[Concurrency (computer science)|Concurrency]]&lt;br /&gt;
*[[Concurrent programming]]&lt;br /&gt;
*[[Cooperating sequential processes]]&lt;br /&gt;
*[[Critical section]]&lt;br /&gt;
*[[Deadly embrace]] ([[deadlock]])&lt;br /&gt;
*[[Dining philosophers problem]]&lt;br /&gt;
*[[Dutch national flag problem]]&lt;br /&gt;
*[[Fault-tolerant system]]&lt;br /&gt;
*[[Goto-less programming]]&lt;br /&gt;
*[[Guarded Command Language]]&lt;br /&gt;
*[[Abstraction layer|Layered structure]] in [[software architecture]]&lt;br /&gt;
*[[Abstraction layer|Levels of abstraction]]&lt;br /&gt;
*[[Multithreaded programming]]&lt;br /&gt;
*[[Mutual exclusion]] ([[mutex]])&lt;br /&gt;
*[[Philosophy of computer science|Philosophy of computer programming and computing science]]&lt;br /&gt;
*[[Producer–consumer problem]] ([[bounded buffer problem]])&lt;br /&gt;
*[[Software product line|Program families]] &lt;br /&gt;
*[[Predicate transformer semantics]]&lt;br /&gt;
*[[Synchronization (computer_science)#Thread or process synchronization|Process synchronization]]&lt;br /&gt;
*[[Self-stabilizing system|Self-stabilizing distributed system]]&lt;br /&gt;
*[[Semaphore (programming)]]&lt;br /&gt;
*[[Separation of concerns]]&lt;br /&gt;
*[[Sleeping barber problem]]&lt;br /&gt;
*[[Software crisis]]&lt;br /&gt;
*[[Structured analysis]]&lt;br /&gt;
*[[Structured programming]]&lt;br /&gt;
*[[THE multiprogramming system]]&lt;br /&gt;
*[[Unbounded nondeterminism]]&lt;br /&gt;
*[[Weakest precondition calculus]]&lt;br /&gt;
| group2 = [[Edsger W. Dijkstra#Algorithmic work|Algorithms]]&lt;br /&gt;
| list2 =&lt;br /&gt;
*[[Banker's algorithm]]&lt;br /&gt;
*[[Dijkstra's algorithm]] &lt;br /&gt;
*[[DJP algorithm]] ([[Prim's algorithm]])&lt;br /&gt;
*[[Dijkstra-Scholten algorithm]]&lt;br /&gt;
*[[Dekker's algorithm]] (generalization)&lt;br /&gt;
*[[Smoothsort]]&lt;br /&gt;
*[[Shunting-yard algorithm]]&lt;br /&gt;
*[[Tracing garbage collection#Tri-color marking|Tri-color marking algorithm]]&lt;br /&gt;
*[[Concurrent algorithm]]&lt;br /&gt;
*[[Distributed algorithm]]&lt;br /&gt;
*[[Deadlock prevention algorithms|Deadlock prevention algorithm]]&lt;br /&gt;
*[[Self-stabilization|Self-stabilizing algorithm]]&lt;br /&gt;
}}&lt;br /&gt;
| group4 = Related people&lt;br /&gt;
| list4  =&lt;br /&gt;
*[[Shlomi Dolev]] &lt;br /&gt;
*[[Per Brinch Hansen]] &lt;br /&gt;
*[[Tony Hoare]]&lt;br /&gt;
*[[Ole-Johan Dahl]]&lt;br /&gt;
*[[Leslie Lamport]]&lt;br /&gt;
*[[David Parnas]]&lt;br /&gt;
*[[Adriaan van Wijngaarden]] &lt;br /&gt;
*[[Niklaus Wirth]]&lt;br /&gt;
| group5 = Other topics&lt;br /&gt;
| list5  =&lt;br /&gt;
*[[Dijkstra Prize]] ([[Edsger W. Dijkstra Prize in Distributed Computing]])&lt;br /&gt;
*[[Centrum Wiskunde &amp;amp; Informatica]]&lt;br /&gt;
*[[E.W. Dijkstra Archive]] ([[University of Texas at Austin]])&lt;br /&gt;
*[[List of pioneers in computer science]]&lt;br /&gt;
*[[List of important publications in computer science]]&lt;br /&gt;
*[[List of important publications in theoretical computer science]]&lt;br /&gt;
*[[List of important publications in concurrent, parallel, and distributed computing]]&lt;br /&gt;
&lt;br /&gt;
| belowclass = plainlist&lt;br /&gt;
| below =&lt;br /&gt;
* {{nowrap|{{smallsup|1}} Dijkstra's numbered manuscripts on computing science.}}&lt;br /&gt;
* {{icon|wikiquote}} [[wikiquote:Special:Search/Edsger W. Dijkstra|'''Wikiquote''']]&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Dijkstra, Edsger}}&lt;br /&gt;
[[Category:Computer science navigational boxes]]&lt;br /&gt;
[[Category:Scientist navigational boxes]]&lt;br /&gt;
[[Category:Dutch writer navigational boxes]] &lt;br /&gt;
[[Category:Edsger W. Dijkstra|Ξ]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cpulist/doc&amp;diff=3729710</id>
		<title>Template:Cpulist/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cpulist/doc&amp;diff=3729710"/>
		<updated>2017-12-15T22:48:52Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: &amp;quot;end&amp;quot; header example&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''cpulist''' is a template for maintaining lists of microprocessors with separate content and markup. Please help to convert the lists of microprocessors from [[:Template:Intel processors]] to this template, in order to give them all a consistent appearance.&lt;br /&gt;
&lt;br /&gt;
As a simple example,&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt; {{cpulist|nehalem|head}}&lt;br /&gt;
 {{cpulist|nehalem|gainestown|model=Xeon E5502&lt;br /&gt;
 |l3=4|qpi=4.8|mult=14|memspeed=800|vmin=0.75|vmax=1.35|tdp=80|date=March 30, 2009|price=$188|links=1&lt;br /&gt;
   |sspec1=SLBEZ|step1=D0|part1=AT80602000804AA}}&lt;br /&gt;
 {{cpulist|nehalem|end}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
results in a table like&lt;br /&gt;
 {{cpulist|nehalem|head}}&lt;br /&gt;
 {{cpulist|nehalem|gainestown|model=Xeon E5502&lt;br /&gt;
 |l3=4|qpi=4.8|mult=14|memspeed=800|vmin=0.75|vmax=1.35|tdp=80|date=March 30, 2009|price=$188|links=1&lt;br /&gt;
   |sspec1=SLBEZ|step1=D0|part1=AT80602000804AA}}&lt;br /&gt;
 {{cpulist|nehalem|end}}&lt;br /&gt;
&lt;br /&gt;
Making changes to the cpulist template affects all articles using it, see [[Special:WhatLinksHere/Template:Cpulist]] for a list.&lt;br /&gt;
&lt;br /&gt;
Here is the list of cpulist sub-templates:&lt;br /&gt;
{{Special:Prefixindex/Template:Cpulist/}}&lt;br /&gt;
&lt;br /&gt;
== Template arguments==&lt;br /&gt;
The first argument to the cpulist template, ''nehalem'' in the example, defines the layout of the table. Currently, valid arguments here are&lt;br /&gt;
* [[Template:cpulist/lake-e|lake-e]] For lists of the (Skylake-SP/F/W/X and Kaby Lake-X) generation of processors, including fields for burst frequency&lt;br /&gt;
* [[Template:cpulist/skylake|skylake]] For lists of the Skylake, Kabylake, Coffeelake, etc generation of processors, including GPU field&lt;br /&gt;
* [[Template:cpulist/silvermont|silvermont]] For lists of the latest (Silvermont/Airmont) generation of low-power processors, including fields for sdp and burst frequency&lt;br /&gt;
* [[Template:cpulist/haswell|haswell]]: For lists of the latest (Haswell/Broadwell) generation of processors, showing only the fields that are known to date&lt;br /&gt;
* [[Template:cpulist/bridge-e|bridge-e]]: For lists of the previous (Sandy Bridge/Ivy Bridge) generation of processors, showing only the fields that are known to date&lt;br /&gt;
* [[Template:cpulist/bridge|bridge]]: For lists of the previous (Sandy Bridge/Ivy Bridge) generation of processors, showing only the fields that are known to date&lt;br /&gt;
* [[Template:cpulist/sandybridge|sandybridge]]: For lists of the previous Sandy Bridge processors, currently same format as ''bridge''&lt;br /&gt;
* [[Template:cpulist/nehalem|nehalem]]: For lists of Intel's previous (Nehalem/Westmere) generation of processors, including fields for 'Turbo' mode, L3 cache and Memory Controller&lt;br /&gt;
* [[Template:cpulist/nehgfx|nehgfx]]: like nehalem, but for chips with integrated graphics capability&lt;br /&gt;
* [[Template:cpulist/atom|atom]]: For lists of low-end Atom processors, currently same format as ''core''&lt;br /&gt;
* [[Template:cpulist/atomx3|atomx3]]: For lists of Atom processors&lt;br /&gt;
* [[Template:cpulist/atomgfx|atomgfx]]: For lists of Atom processors with integrated graphics&lt;br /&gt;
* [[Template:cpulist/core|core]]: For lists of Intel's previous generation of processors&lt;br /&gt;
* [[Template:cpulist/p6|p6]]: For lists of Intel's p6 generation of processors&lt;br /&gt;
* [[Template:cpulist/p5|p5]]: For lists of Intel's p5 generation of processors&lt;br /&gt;
&lt;br /&gt;
The second argument is the type of processor, defining default contents for many fields that are identical throughout a series of processors. This argument is optional, valid arguments are currently:&lt;br /&gt;
* head: A special argument, resulting in a table header&lt;br /&gt;
* [[Silvermont|baytrail]]&lt;br /&gt;
* [[Haswell (microarchitecture)|haswell]]&lt;br /&gt;
* [[Ivy Bridge (microarchitecture)|ivybridge]]&lt;br /&gt;
* [[Sandy Bridge (microarchitecture)|sandybridge]]&lt;br /&gt;
* [[Sandy Bridge (microarchitecture)|sandybridge_e]]&lt;br /&gt;
* [[Gulftown (microprocessor)|gulftown]]&lt;br /&gt;
* [[Gulftown (microprocessor)|gulftownup]]&lt;br /&gt;
* [[Clarkdale (microprocessor)|clarkdale]]&lt;br /&gt;
* [[Arrandale (microprocessor)|arrandale]]&lt;br /&gt;
* [[Beckton (microprocessor)|beckton]]&lt;br /&gt;
* [[Bloomfield (microprocessor)|bloomfield]]&lt;br /&gt;
* [[Gainestown (microprocessor)|gainestown]]&lt;br /&gt;
* [[Lynnfield (microprocessor)|lynnfield]]&lt;br /&gt;
* [[Clarksfield (microprocessor)|clarksfield]]&lt;br /&gt;
* [[Jasper Forest (microprocessor)|jasperforest]]&lt;br /&gt;
* [[Intel Atom|diamondville]]&lt;br /&gt;
* [[Intel Atom|silverthorne]]&lt;br /&gt;
* [[Intel Atom|pineview]]&lt;br /&gt;
* [[Dunnington (microprocessor)|dunnington]]&lt;br /&gt;
* [[Harpertown (microprocessor)|harpertown]]&lt;br /&gt;
* [[Yorkfield (microprocessor)|yorkfield]]&lt;br /&gt;
* [[Wolfdale (microprocessor)|wolfdale]]&lt;br /&gt;
* [[Penryn (microprocessor)|penryn, penrynulv]]&lt;br /&gt;
* [[Tigerton (microprocessor)|tigerton]]&lt;br /&gt;
* [[Clovertown (microprocessor)|clovertown]]&lt;br /&gt;
* [[Kentsfield (microprocessor)|kentsfield]]&lt;br /&gt;
* [[Woodcrest (microprocessor)|woodcrest]]&lt;br /&gt;
* [[Conroe (microprocessor)|conroe]]&lt;br /&gt;
* [[Merom (microprocessor)|merom]]&lt;br /&gt;
* [[Sossaman (microprocessor)|sossaman]]&lt;br /&gt;
* [[Yonah (microprocessor)|yonah]]&lt;br /&gt;
* [[Dothan (microprocessor)|dothan]]&lt;br /&gt;
* [[Banias (microprocessor)|banias]]&lt;br /&gt;
* [[Tillamook (microprocessor)|tillamook]]&lt;br /&gt;
* [[P5 (microprocessor)|p5]]&lt;br /&gt;
&lt;br /&gt;
Other arguments are&lt;br /&gt;
* &amp;lt;code&amp;gt;model&amp;lt;/code&amp;gt;: The name of the processor&lt;br /&gt;
* &amp;lt;code&amp;gt;sspec&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;sspec1&amp;lt;/code&amp;gt;-&amp;lt;code&amp;gt;sspec8&amp;lt;/code&amp;gt;: up to 8 Intel sSpec numbers&lt;br /&gt;
** &amp;lt;code&amp;gt;step1&amp;lt;/code&amp;gt;-&amp;lt;code&amp;gt;step8&amp;lt;/code&amp;gt;: up to 8 stepping names for the above sSpec numbers&lt;br /&gt;
* &amp;lt;code&amp;gt;fre&amp;lt;/code&amp;gt;q: Core frequency, can often be determined by ''fsb'' and ''mult'' arguments, in MHz or GHz&lt;br /&gt;
* &amp;lt;code&amp;gt;uncore&amp;lt;/code&amp;gt;: Uncore frequency, in MHz or GHz&lt;br /&gt;
* &amp;lt;code&amp;gt;turbo&amp;lt;/code&amp;gt;: Turbo frequencies , as increments in clock multiplier&lt;br /&gt;
* &amp;lt;code&amp;gt;burst&amp;lt;/code&amp;gt;: Burst frequencies , in GHz&lt;br /&gt;
* &amp;lt;code&amp;gt;igp&amp;lt;/code&amp;gt;: Model of integrated graphics processor&lt;br /&gt;
* &amp;lt;code&amp;gt;gfxfreq&amp;lt;/code&amp;gt;: clock frequency of the integrated graphics, if applicable&lt;br /&gt;
* &amp;lt;code&amp;gt;cores&amp;lt;/code&amp;gt;: number of processor cores&lt;br /&gt;
* &amp;lt;code&amp;gt;l1&amp;lt;/code&amp;gt;: size of the Level 1 Cache, in KB&lt;br /&gt;
* &amp;lt;code&amp;gt;l2&amp;lt;/code&amp;gt;: size of the Level 2 Cache, in KB or MB&lt;br /&gt;
* &amp;lt;code&amp;gt;l3&amp;lt;/code&amp;gt;: size of the Level 3 Cache, in MB&lt;br /&gt;
* &amp;lt;code&amp;gt;iobus&amp;lt;/code&amp;gt;: Type and speed of I/O bus interface, may be expressed as one of&lt;br /&gt;
** &amp;lt;code&amp;gt;fsb&amp;lt;/code&amp;gt;: performance of Front-side bus in MT/s, if applicable&lt;br /&gt;
** &amp;lt;code&amp;gt;ht&amp;lt;/code&amp;gt;: performance of Hypertransport in MT/s, if applicable&lt;br /&gt;
** &amp;lt;code&amp;gt;qpi&amp;lt;/code&amp;gt;: performance of Quickpath interface in MT/s, if applicable&lt;br /&gt;
** &amp;lt;code&amp;gt;dmi&amp;lt;/code&amp;gt;: set to 1 if Direct media interface is in use&lt;br /&gt;
* &amp;lt;code&amp;gt;mult&amp;lt;/code&amp;gt;: clock multiplier of fsb or base frequency&lt;br /&gt;
* &amp;lt;code&amp;gt;mem&amp;lt;/code&amp;gt;: memory interface of integrated memory controller, may be expressed as&lt;br /&gt;
** &amp;lt;code&amp;gt;memspeed&amp;lt;/code&amp;gt;: data rate of integrated memory controller&lt;br /&gt;
* &amp;lt;code&amp;gt;volt&amp;lt;/code&amp;gt;: core voltage range, usually given as&lt;br /&gt;
** &amp;lt;code&amp;gt;vmin&amp;lt;/code&amp;gt;: minimum voltage in volts&lt;br /&gt;
** &amp;lt;code&amp;gt;vmax&amp;lt;/code&amp;gt;: maximum voltage (optional) in volts&lt;br /&gt;
* &amp;lt;code&amp;gt;tdp&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;tdp1&amp;lt;/code&amp;gt;-&amp;lt;code&amp;gt;tdp8&amp;lt;/code&amp;gt;: Thermal design power in watts&lt;br /&gt;
* &amp;lt;code&amp;gt;sdp&amp;lt;/code&amp;gt;: Scenario design power in watts &lt;br /&gt;
* &amp;lt;code&amp;gt;sock&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;sock1&amp;lt;/code&amp;gt;-&amp;lt;code&amp;gt;sock8&amp;lt;/code&amp;gt;: Socket, one of 1567, 1366, 1156, 775, 771, M, P, 956, 478, 479, 603, 604 or some others&lt;br /&gt;
* &amp;lt;code&amp;gt;date&amp;lt;/code&amp;gt;: release date&lt;br /&gt;
* &amp;lt;code&amp;gt;part&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;part1&amp;lt;/code&amp;gt; - &amp;lt;code&amp;gt;part8&amp;lt;/code&amp;gt;: part numbers&lt;br /&gt;
* &amp;lt;code&amp;gt;price&amp;lt;/code&amp;gt;: price in USD at the time of release&lt;br /&gt;
&lt;br /&gt;
A special argument is&lt;br /&gt;
* links: If set to any string, wikilinks are added to various units in the table row, usually this is used in the first row of a table&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
[[ru:Шаблон:Список ЦП]]&lt;br /&gt;
[[vi:Bản_mẫu:Cpulist]]&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cpulist&amp;diff=3729596</id>
		<title>Template:Cpulist</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cpulist&amp;diff=3729596"/>
		<updated>2017-12-15T22:44:01Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: &amp;quot;end&amp;quot; support for end header and table close&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;!--&lt;br /&gt;
--&amp;gt;{{#ifeq:{{{2}}}|head|{{(!}} class=&amp;quot;wikitable&amp;quot;}}&lt;br /&gt;
{{cpulist/{{{1|nehalem}}}&lt;br /&gt;
|section={{{section|}}}&lt;br /&gt;
&lt;br /&gt;
|delim={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = !&lt;br /&gt;
 | {{!}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|model={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = Model&amp;lt;br/&amp;gt;number&lt;br /&gt;
 | {{#if: {{{ark|}}}|[http://ark.intel.com/products/{{{ark}}} {{{model|}}}]|{{{model|}}} }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|sspec={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = sSpec&amp;lt;br/&amp;gt;number&lt;br /&gt;
 | {{#if:{{{sspec1|}}}{{{sspec2|}}}{{{sspec3|}}}{{{sspec4|}}}{{{sspec5|}}}{{{sspec6|}}}{{{sspec7|}}}{{{sspec8|}}}{{{sspec|}}}|{{plainlist|&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sspec1|}}}|* {{{sspec1}}}{{#if:{{{step1|}}}|&amp;amp;nbsp;({{{step1}}})}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sspec2|}}}|* {{{sspec2}}}{{#if:{{{step2|}}}|&amp;amp;nbsp;({{{step2}}})}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sspec3|}}}|* {{{sspec3}}}{{#if:{{{step3|}}}|&amp;amp;nbsp;({{{step3}}})}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sspec4|}}}|* {{{sspec4}}}{{#if:{{{step4|}}}|&amp;amp;nbsp;({{{step4}}})}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sspec5|}}}|* {{{sspec5}}}{{#if:{{{step5|}}}|&amp;amp;nbsp;({{{step5}}})}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sspec6|}}}|* {{{sspec6}}}{{#if:{{{step6|}}}|&amp;amp;nbsp;({{{step6}}})}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sspec7|}}}|* {{{sspec7}}}{{#if:{{{step7|}}}|&amp;amp;nbsp;({{{step7}}})}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sspec8|}}}|* {{{sspec8}}}{{#if:{{{step8|}}}|&amp;amp;nbsp;({{{step8}}})}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sspec|}}}|{{{sspec}}}}}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;}} }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|freq={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = Frequency&lt;br /&gt;
 | {{#if: {{{fsb|}}}{{{qpi|}}}{{{upi|}}}{{{dmi|}}}{{#switch: {{{2}}}|clarkdale|arrandale|lynnfield|clarksfield|bloomfield|gainestown=533|pineview=667|lincroft|tunnelcreek|sandybridge|sandybridge_e|skylake_e|kabylake_x|ivybridge|haswell|skylake=400|baytrail=333|}}|&lt;br /&gt;
     {{#if: {{{mult|}}}|&lt;br /&gt;
       {{#expr: ({{#switch: {{{fsb|{{#switch: {{{2}}}|pineview=667|baytrail=333|lincroft|tunnelcreek|sandybridge|sandybridge_e|skylake_e|kabylake_x|ivybridge|haswell|skylake=400|533}} }}}&lt;br /&gt;
           | 50 = 50&lt;br /&gt;
           | 60 = 60&lt;br /&gt;
           | 66 | 67 = 200 / 3&lt;br /&gt;
           | 100 = 100&lt;br /&gt;
           | 133 = 400 / 3&lt;br /&gt;
           | 333 = 83.2&lt;br /&gt;
           | 400 = 100&lt;br /&gt;
           | 533 = 400 / 3&lt;br /&gt;
           | 666 | 667 = 500 / 3&lt;br /&gt;
           | 800 = 200&lt;br /&gt;
           | 1067 | 1066 = 800 / 3&lt;br /&gt;
           | 1333 = 1000 / 3&lt;br /&gt;
           | 1600 = 400&lt;br /&gt;
           }} * {{{mult}}}&lt;br /&gt;
          {{#ifexpr: ({{{fsb|{{#switch: {{{2}}}|pineview=667|baytrail=332.8|lincroft|tunnelcreek|sandybridge|sandybridge_e|skylake_e|kabylake_x|ivybridge|haswell|skylake=400|533}} }}} / 4 * {{{mult}}}) &amp;lt; 990|) round 0|/ 1000) round 2}}&lt;br /&gt;
       }} {{#ifexpr: ({{{fsb|{{#switch: {{{2}}}|pineview=667|baytrail=332.8|lincroft|tunnelcreek|sandybridge|sandybridge_e|skylake_e|kabylake_x|ivybridge|haswell|skylake=400|533}} }}} / 4 * {{{mult}}}) &amp;lt; 990| {{#if: {{{links|}}}|MHz|MHz}}| {{#if: {{{links|}}}|GHz|GHz}} }}&lt;br /&gt;
     |{{#if: {{{freq|}}}|{{#ifexpr: {{{freq}}} &amp;lt; 10|{{{freq}}} {{#if: {{{links|}}}|GHz|GHz}}|{{{freq}}} {{#if: {{{links|}}}|MHz|MHz}} }} }}&lt;br /&gt;
     }}&lt;br /&gt;
   |{{#if: {{{freq|}}}|{{#ifexpr: {{{freq}}} &amp;lt; 10|{{{freq}}} {{#if: {{{links|}}}|GHz|GHz}}|{{{freq}}} {{#if: {{{links|}}}|MHz|MHz}} }} }}&lt;br /&gt;
&lt;br /&gt;
   }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
|freq={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = Frequency&lt;br /&gt;
 | penryn&lt;br /&gt;
 | penrynulv&lt;br /&gt;
 | wolfdale&lt;br /&gt;
 | yorkfield&lt;br /&gt;
 | merom&lt;br /&gt;
 | conroe&lt;br /&gt;
 | kentsfield&lt;br /&gt;
 | woodcrest&lt;br /&gt;
 | tigerton&lt;br /&gt;
 | clovertown&lt;br /&gt;
 | harpertown&lt;br /&gt;
 | dunnington&lt;br /&gt;
 | diamondville&lt;br /&gt;
 | sossaman&lt;br /&gt;
 | yonah&lt;br /&gt;
 | dothan&lt;br /&gt;
 | banias = {{#switch: {{{fsb}}}&lt;br /&gt;
    | 800 = {{#if: {{{mult|}}}|{{#switch: {{{mult}}}&lt;br /&gt;
       | 6   = 1.20&lt;br /&gt;
       | 6.5 = 1.30&lt;br /&gt;
       | 7   = 1.40&lt;br /&gt;
       | 7.5 = 1.50&lt;br /&gt;
       | 8   = 1.60&lt;br /&gt;
       | 8.5 = 1.70&lt;br /&gt;
       | 9   = 1.80&lt;br /&gt;
       | 9.5 = 1.90&lt;br /&gt;
       | 10   = 2.00&lt;br /&gt;
       | 10.5 = 2.10&lt;br /&gt;
       | 11   = 2.20&lt;br /&gt;
       | 11.5 = 2.30&lt;br /&gt;
       | 12   = 2.40&lt;br /&gt;
       | 12.5 = 2.50&lt;br /&gt;
       | 13   = 2.60&lt;br /&gt;
       | 13.5 = 2.70&lt;br /&gt;
       | 14   = 2.80&lt;br /&gt;
       | 14.5 = 2.90&lt;br /&gt;
       | 15   = 3.00&lt;br /&gt;
       | {{{freq}}}&lt;br /&gt;
       }} {{#if: {{{links|}}}|GHz|GHz}}&lt;br /&gt;
     }}&lt;br /&gt;
     | {{#if: {{{freq|}}}|{{#ifexpr: {{{freq}}} &amp;lt; 10|{{{freq}}} {{#if: {{{links|}}}|GHz|GHz}}|{{{freq}}} {{#if: {{{links|}}}|MHz|MHz}} }} }}&lt;br /&gt;
   }}&lt;br /&gt;
 | {{#if: {{{freq|}}}|{{#ifexpr: {{{freq}}} &amp;lt; 10|{{{freq}}} {{#if: {{{links|}}}|GHz|GHz}}|{{{freq}}} {{#if: {{{links|}}}|MHz|MHz}} }}|&lt;br /&gt;
    {{#if: {{{mult|}}}|{{#switch: {{{mult}}}&lt;br /&gt;
       | 8 = 1.06&lt;br /&gt;
       | 9 = 1.20&lt;br /&gt;
       | 10 = 1.33&lt;br /&gt;
       | 11 = 1.46&lt;br /&gt;
       | 12 = 1.60&lt;br /&gt;
       | 13 = 1.73&lt;br /&gt;
       | 14 = 1.86&lt;br /&gt;
       | 15 = 2.00&lt;br /&gt;
       | 16 = 2.13&lt;br /&gt;
       | 17 = 2.26&lt;br /&gt;
       | 18 = 2.40&lt;br /&gt;
       | 19 = 2.53&lt;br /&gt;
       | 20 = 2.66&lt;br /&gt;
       | 21 = 2.80&lt;br /&gt;
       | 22 = 2.93&lt;br /&gt;
       | 23 = 3.06&lt;br /&gt;
       | 24 = 3.20&lt;br /&gt;
       | 25 = 3.33&lt;br /&gt;
       | 26 = 3.46&lt;br /&gt;
       | 27 = 3.60&lt;br /&gt;
       | 28 = 3.83&lt;br /&gt;
       | 29 = 3.96&lt;br /&gt;
       }} {{#if: {{{links|}}}|GHz|GHz}}&lt;br /&gt;
    }}&lt;br /&gt;
   }}&lt;br /&gt;
}}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|cores = {{{cores|{{#switch: {{{2}}}&lt;br /&gt;
 | end | head = Cores&lt;br /&gt;
 | gulftown&lt;br /&gt;
 | gulftownup = 6&lt;br /&gt;
 | clarkdale&lt;br /&gt;
 | arrandale = 2&lt;br /&gt;
 | beckton = 8&lt;br /&gt;
 | bloomfield&lt;br /&gt;
 | gainestown&lt;br /&gt;
 | lynnfield&lt;br /&gt;
 | clarksfield&lt;br /&gt;
 | jasperforest&lt;br /&gt;
 | baytrail = 4&lt;br /&gt;
 | silverthorne&lt;br /&gt;
 | diamondville&lt;br /&gt;
 | pineview&lt;br /&gt;
 | lincroft&lt;br /&gt;
 | tunnelcreek = 1&lt;br /&gt;
 | dunnington = 6&lt;br /&gt;
 | harpertown&lt;br /&gt;
 | yorkfield = 4&lt;br /&gt;
 | wolfdale&lt;br /&gt;
 | penryn&lt;br /&gt;
 | penrynulv = 2&lt;br /&gt;
 | tigerton&lt;br /&gt;
 | clovertown&lt;br /&gt;
 | kentsfield = 4&lt;br /&gt;
 | woodcrest&lt;br /&gt;
 | conroe&lt;br /&gt;
 | merom&lt;br /&gt;
 | sossaman&lt;br /&gt;
 | yonah = 2&lt;br /&gt;
 | dothan&lt;br /&gt;
 | banias&lt;br /&gt;
 | tualatin&lt;br /&gt;
 | copperminet | coppermine | cascades&lt;br /&gt;
 | tanner | drake | katmai&lt;br /&gt;
 | dixon | mendocino | covington | tonga | deschutes&lt;br /&gt;
 | klamath | p6&lt;br /&gt;
 | tillamook | p55ctp | p55lm | p55c&lt;br /&gt;
 | p54ct | p5t | p24ct | p24t | p54lm | p54cqs | p54cm | p54cs | p54c&lt;br /&gt;
 | p5 = 1&lt;br /&gt;
}} }}}&lt;br /&gt;
&lt;br /&gt;
|threads = {{#switch: {{{2}}}&lt;br /&gt;
 | end | head = Cores&amp;lt;br/&amp;gt;(Threads)&lt;br /&gt;
 | {{{cores}}}  ({{{threads|}}})&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|turbo={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[Intel Turbo Boost|Turbo]]&lt;br /&gt;
 | {{{turbo|{{n/a}}}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|turboboost={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[Intel Turbo Boost|Turbo Boost]]&amp;lt;br/&amp;gt;All-Core/2.0&amp;lt;br/&amp;gt;(/Max 3.0)&lt;br /&gt;
 | {{{turbo|{{n/a}}}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|burst={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = Burst&lt;br /&gt;
 | {{#if: {{{burst|}}}|{{{burst}}} GHz|{{n/a}}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|uncore={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[Uncore|Uncore&amp;lt;br/&amp;gt;speed]]&lt;br /&gt;
 | {{#if: {{{fsb|}}}{{{qpi|}}}{{{dmi|}}}{{{upi|}}}{{#switch: {{{2}}}|clarkdale|arrandale|lynnfield|clarksfield|bloomfield|gainestown=533|pineview=667|lincroft=100|tunnelcreek=100|}}|&lt;br /&gt;
   {{#if: {{{uncore|}}}|&lt;br /&gt;
       {{#expr: ({{#switch: {{{fsb|{{#switch: {{{2}}}|pineview=667|lincroft=100|tunnelcreek=100|533}} }}}&lt;br /&gt;
           | 50 = 50&lt;br /&gt;
           | 60 = 60&lt;br /&gt;
           | 66 | 67 = 200 / 3&lt;br /&gt;
           | 100 = 100&lt;br /&gt;
           | 133 = 400 / 3&lt;br /&gt;
           | 400 = 100&lt;br /&gt;
           | 533 = 400 / 3&lt;br /&gt;
           | 666 | 667 = 500 / 3&lt;br /&gt;
           | 800 = 200&lt;br /&gt;
           | 1067 | 1066 = 800 / 3&lt;br /&gt;
           | 1333 = 1000 / 3&lt;br /&gt;
           | 1600 = 400&lt;br /&gt;
           }} * {{{uncore}}}&lt;br /&gt;
          {{#ifexpr: ({{{fsb|533}}} / 4 * {{{uncore}}}) &amp;lt; 9900|) round 0|/ 1000) round 2}}&lt;br /&gt;
       }} {{#ifexpr: ({{{fsb|533}}} / 4 * {{{uncore}}}) &amp;lt; 9900| {{#if: {{{links|}}}|MHz|MHz}}| {{#if: {{{links|}}}|GHz|GHz}} }}&lt;br /&gt;
     |{{#if: {{{freq|}}}|{{#ifexpr: {{{freq}}} &amp;lt; 10|{{{freq}}} {{#if: {{{links|}}}|GHz|GHz}}|{{{freq}}} {{#if: {{{links|}}}|MHz|MHz}} }} }}&lt;br /&gt;
     }}&lt;br /&gt;
   |{{#if: {{{freq|}}}|{{#ifexpr: {{{freq}}} &amp;lt; 10|{{{freq}}} {{#if: {{{links|}}}|GHz|GHz}}|{{{freq}}} {{#if: {{{links|}}}|MHz|MHz}} }} }}&lt;br /&gt;
&lt;br /&gt;
   }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|l1={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[CPU caches#Multi-level caches|L1&amp;lt;br/&amp;gt;Cache]]&lt;br /&gt;
 | tillamook | p55ctp | p55lm | p55c = {{#switch: {{{l1|}}}&lt;br /&gt;
    | 16 | 32 = {{#expr: {{{l1}}}/2}} + {{#expr: {{{l1}}}/2}} {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
    | {{{l1|16 + 16}}} {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}{{#if: {{{l1|}}}| (?)}}&lt;br /&gt;
  }}&lt;br /&gt;
 | p54ct | p5t | p24ct | p24t | p54lm | p54cqs | p54cm | p54cs | p54c = {{#switch: {{{l1|}}}&lt;br /&gt;
    | 16 | 32 = {{#expr: {{{l1}}}/2}} + {{#expr: {{{l1}}}/2}} {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
    | {{{l1|8 + 8}}} {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}{{#if: {{{l1|}}}| (?)}}&lt;br /&gt;
  }}&lt;br /&gt;
 | p5 = {{#switch: {{{l1|}}}&lt;br /&gt;
    | 16 | 32 = {{#expr: {{{l1}}}/2}} + {{#expr: {{{l1}}}/2}} {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
    | {{{l1|8 + 8}}} {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}{{#if: {{{l1|}}}| (?)}}&lt;br /&gt;
  }}&lt;br /&gt;
 | {{{l1|}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|l2={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[CPU cache#Multi-level caches|L2&amp;lt;br/&amp;gt;cache]]&lt;br /&gt;
 | silverthorne&lt;br /&gt;
 | diamondville&lt;br /&gt;
 | pineview&lt;br /&gt;
 | lincroft&lt;br /&gt;
 | tunnelcreek = {{{l2|512}}} {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
 | wolfdale&lt;br /&gt;
 | penrynulv&lt;br /&gt;
 | penryn&lt;br /&gt;
 | woodcrest&lt;br /&gt;
 | conroe&lt;br /&gt;
 | merom&lt;br /&gt;
 | sossaman&lt;br /&gt;
 | yonah&lt;br /&gt;
 | dothan&lt;br /&gt;
 | banias&lt;br /&gt;
 | tualatin&lt;br /&gt;
 | copperminet | coppermine | cascades&lt;br /&gt;
 | tanner | drake | katmai&lt;br /&gt;
 | dixon | mendocino | covington | tonga | deschutes&lt;br /&gt;
 | klamath | p6 = {{#switch: {{{l2|}}}&lt;br /&gt;
   | 0 = {{n/a}}&lt;br /&gt;
   | 128 = 128 {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
   | 256 = 256 {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
   | 512 = 512 {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
   | 1   | 2   | 3   | 4   | 6   =&lt;br /&gt;
        {{{l2}}} {{#if: {{{links|}}}|[[Mebibyte|MiB]]|MiB}}&lt;br /&gt;
   | {{#if: {{{l2|}}}|{{{l2}}} {{#if: {{{links|}}}|[[Mebibyte|MiB]] (?)]|MiB (?)}} }}&lt;br /&gt;
  }}&lt;br /&gt;
 | tigerton&lt;br /&gt;
 | clovertown&lt;br /&gt;
 | harpertown&lt;br /&gt;
 | dunnington&lt;br /&gt;
 | yorkfield&lt;br /&gt;
 | kentsfield = {{#switch: {{{l2|}}}&lt;br /&gt;
   | 2   | 3   | 4   | 6   | 8   | 12 =&lt;br /&gt;
        2 × {{#expr: {{{l2}}}/2}} {{#if: {{{links|}}}|[[Mebibyte|MiB]]|MiB}}&lt;br /&gt;
   | {{#if: {{{l2|}}}|{{{l2}}} {{#if: {{{links|}}}|[[Mebibyte|MiB]] (?)]|MiB (?)}} }}&lt;br /&gt;
  }}&lt;br /&gt;
 | skylake_e = {{{l2|{{{cores|4}}} × 1}}} {{#if: {{{links|}}}|[[Mebibyte|MiB]]|MiB}}&lt;br /&gt;
 | lynnfield&lt;br /&gt;
 | clarksfield&lt;br /&gt;
 | jasperforest&lt;br /&gt;
 | bloomfield&lt;br /&gt;
 | sandybridge&lt;br /&gt;
 | sandybridge_e&lt;br /&gt;
 | kabylake_x&lt;br /&gt;
 | ivybridge&lt;br /&gt;
 | haswell&lt;br /&gt;
 | skylake&lt;br /&gt;
 | gainestown = {{{l2|{{{cores|4}}} × 256}}} {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
 | clarkdale&lt;br /&gt;
 | arrandale = {{{l2|{{{cores|2}}} × 256}}} {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
 | gulftown&lt;br /&gt;
 | gulftownup = {{{l2|{{{cores|6}}} × 256}}} {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
 | beckton = {{{l2|{{{cores|8}}} × 256}}} {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
 | baytrail = {{#switch: {{{l2|}}}&lt;br /&gt;
   | 512 = 512 {{#if: {{{links|}}}|[[Kibibyte|KiB]]|KiB}}&lt;br /&gt;
   |{{{l2|2}}} {{#if: {{{links|}}}|[[Mebibyte|MiB]]|MiB}}&lt;br /&gt;
  }}&lt;br /&gt;
 | {{{l2|}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|l3={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[CPU cache#Multi-level caches|L3&amp;lt;br/&amp;gt;cache]]&lt;br /&gt;
 | lynnfield&lt;br /&gt;
 | clarksfield&lt;br /&gt;
 | bloomfield&lt;br /&gt;
 | gainestown&lt;br /&gt;
 | jasperforest&lt;br /&gt;
 | sandybridge|sandybridge_e|ivybridge|haswell|skylake|skylake_e|kabylake_x = {{{l3|8}}} {{#if: {{{links|}}}|[[Mebibyte|MiB]]|MiB}}&lt;br /&gt;
 | clarkdale&lt;br /&gt;
 | arrandale = {{{l3|4}}} {{#if: {{{links|}}}|[[Mebibyte|MiB]]|MiB}}&lt;br /&gt;
 | gulftown&lt;br /&gt;
 | dunnington&lt;br /&gt;
 | gulftownup = {{{l3|12}}} {{#if: {{{links|}}}|[[Mebibyte|MiB]]|MiB}}&lt;br /&gt;
 | beckton = {{{l3|24}}} {{#if: {{{links|}}}|[[Mebibyte|MiB]]|MiB}}&lt;br /&gt;
 | {{{l3|}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|iobus={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = I/O bus&lt;br /&gt;
 | beckton = {{#if:{{{qpi|}}}|4 × {{{qpi}}} GT/s {{#if: {{{links|}}}|[[Intel QuickPath Interconnect|QPI]]|QPI}}|4 × 6.4 GT/s {{#if: {{{links|}}}|[[Intel QuickPath Interconnect|QPI]]|QPI}}}}&lt;br /&gt;
 | gulftown&lt;br /&gt;
 | gainestown = {{#if:{{{qpi|}}}|2 × {{{qpi}}} GT/s {{#if: {{{links|}}}|[[Intel QuickPath Interconnect|QPI]]|QPI}}|2 × 6.4 GT/s {{#if: {{{links|}}}|[[Intel QuickPath Interconnect|QPI]]|QPI}}}}&lt;br /&gt;
 | gulftownup&lt;br /&gt;
 | bloomfield = {{#if:{{{qpi|}}}|1 × {{{qpi}}} GT/s {{#if: {{{links|}}}|[[Intel QuickPath Interconnect|QPI]]|QPI}}|1 × 6.4 GT/s {{#if: {{{links|}}}|[[Intel QuickPath Interconnect|QPI]]|QPI}}}}&lt;br /&gt;
 | clarkdale&lt;br /&gt;
 | arrandale&lt;br /&gt;
 | lynnfield&lt;br /&gt;
 | clarksfield&lt;br /&gt;
 | pineview&lt;br /&gt;
 | lincroft = {{#if: {{{links|}}}|[[Direct Media Interface|DMI]]|DMI}}&lt;br /&gt;
 | sandybridge&lt;br /&gt;
 | ivybridge&lt;br /&gt;
 | haswell = {{#if: {{{links|}}}|[[Direct Media Interface|DMI 2.0]]|DMI 2.0}}&lt;br /&gt;
 | skylake = {{#if: {{{links|}}}|[[Direct Media Interface|DMI 3.0]]|DMI 3.0}}&lt;br /&gt;
 | skylake_e = {{#if:{{{upi|}}}|{{{upi}}} GT/s {{#if: {{{links|}}}|[[Intel QuickPath Interconnect|QPI]]|UPI}}|{{#if: {{{links|}}}|[[Direct Media Interface|DMI 3.0]]|DMI 3.0}}}}&lt;br /&gt;
 | kabylake_x = {{#if: {{{links|}}}|[[Direct Media Interface|DMI 3.0]]|DMI 3.0}}&lt;br /&gt;
 | sandybridge_e = {{#if:{{{qpi|}}}|{{{qpi}}} GT/s {{#if: {{{links|}}}|[[Intel QuickPath Interconnect|QPI]]|QPI}}|&lt;br /&gt;
                                   {{#if: {{{links|}}}|[[Direct Media Interface|DMI 2.0]]|DMI 2.0}}}}&lt;br /&gt;
 | tunnelcreek = {{#if: {{{links|}}}|[[PCI Express|PCIe]]|PCIe}}&lt;br /&gt;
 | jasperforest = {{#if:{{{qpi|}}}|1 × {{{qpi}}} GT/s {{#if: {{{links|}}}|[[Intel QuickPath Interconnect|QPI]]|QPI}}|&lt;br /&gt;
                                   {{#if: {{{links|}}}|[[Direct Media Interface|DMI]]|DMI}}}}&lt;br /&gt;
 | {{#if:{{{iobus|}}}|{{{iobus}}}|&lt;br /&gt;
    {{#if:{{{qpi|}}}|{{{qpi}}} GT/s {{#if: {{{links|}}}|[[Intel QuickPath Interconnect|QPI]]|QPI}}|&lt;br /&gt;
     {{#if:{{{fsb|}}}|{{{fsb}}} MT/s {{#if: {{{links|}}}|[[Front-side bus|FSB]]|FSB}}|&lt;br /&gt;
      {{#if:{{{dmi|}}}|{{#if: {{{links|}}}|[[Direct Media Interface|DMI]]|DMI}}|&lt;br /&gt;
       {{#if:{{{ht|}}}|{{{ht}}} GT/s {{#if: {{{links|}}}|[[HyperTransport|HT]]}} }}&lt;br /&gt;
      }}&lt;br /&gt;
     }}&lt;br /&gt;
    }}&lt;br /&gt;
   }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|fsb={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[Front-side bus|FSB]]&lt;br /&gt;
 | diamondville = {{{fsb|533}}} {{#if: {{{links|}}}|MT/s|MT/s}}&lt;br /&gt;
 | dunnington&lt;br /&gt;
 | harpertown&lt;br /&gt;
 | yorkfield&lt;br /&gt;
 | wolfdale&lt;br /&gt;
 | penrynulv&lt;br /&gt;
 | penryn&lt;br /&gt;
 | tigerton&lt;br /&gt;
 | clovertown&lt;br /&gt;
 | kentsfield&lt;br /&gt;
 | woodcrest&lt;br /&gt;
 | conroe&lt;br /&gt;
 | merom&lt;br /&gt;
 | sossaman&lt;br /&gt;
 | yonah&lt;br /&gt;
 | dothan&lt;br /&gt;
 | banias&lt;br /&gt;
 | tualatin&lt;br /&gt;
 | copperminet | coppermine | cascades&lt;br /&gt;
 | tanner | drake | katmai&lt;br /&gt;
 | dixon | mendocino | covington | tonga | deschutes&lt;br /&gt;
 | klamath | p6 = {{#if: {{{fsb|}}}|{{{fsb}}} {{#if: {{{links|}}}|MT/s|MT/s}}}}&lt;br /&gt;
 | {{#if: {{{fsb|}}}|{{{fsb}}} {{#if: {{{links|}}}|MT/s|MT/s}}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|mult={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[CPU multiplier|Mult.]]&lt;br /&gt;
 | {{#if:{{{mult|}}}|{{{mult}}}×}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|gfxclock={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = GPU&amp;lt;br/&amp;gt;frequency&lt;br /&gt;
 | {{#if:{{{gfxclock|}}}|{{{gfxclock}}} {{#if: {{{links|}}}|MHz|MHz}}|{{N/a}}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|mem={{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[Memory controller|Memory]]&lt;br /&gt;
 | gainestown&lt;br /&gt;
 | bloomfield  = {{{mem|3 × DDR3-{{{memspeed|1066}}} }}}&lt;br /&gt;
 | gulftown&lt;br /&gt;
 | gulftownup&lt;br /&gt;
 | sandybridge_e&lt;br /&gt;
 | skylake_e&lt;br /&gt;
 | kabylake_x&lt;br /&gt;
 | jasperforest= {{{mem|3 × DDR3-{{{memspeed|1333}}} }}}&lt;br /&gt;
 | beckton     = {{{mem|4 × DDR3-{{{memspeed|1333}}} }}}&lt;br /&gt;
 | lynnfield&lt;br /&gt;
 | clarksfield = {{{mem|2 × DDR3-{{{memspeed|1333}}} }}}&lt;br /&gt;
 | arrandale&lt;br /&gt;
 | clarkdale   = {{{mem|2 × DDR3-{{{memspeed|1333}}} }}}&lt;br /&gt;
 | {{{mem|}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|connectivity =  {{#switch: {{{2}}}&lt;br /&gt;
 | end | head = Connectivity&lt;br /&gt;
 | {{#if: {{{connectivity|}}}|{{{connectivity}}}|{{n/a}}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|volt = {{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[CPU core voltage|Voltage]]&lt;br /&gt;
 | {{#if:{{{volt|}}}|{{{volt}}}|&lt;br /&gt;
    {{#if:{{{vmin|}}}|{{{vmin}}}{{#if:{{{vmax|}}}|–{{{vmax}}}}}&amp;amp;nbsp;V}}&lt;br /&gt;
   }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|sdp =  {{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[Scenario Design Power|SDP]]&lt;br /&gt;
 | {{#if: {{{sdp|}}}|{{{sdp}}} W|{{n/a}}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|tdp = {{#if:{{{tdp1|}}}{{{tdp2|}}}{{{tdp3|}}}{{{tdp4|}}}{{{tdp5|}}}{{{tdp6|}}}{{{tdp7|}}}{{{tdp8|}}}{{{tdp|}}}|{{plainlist|indent=1.25|&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{tdp1|}}}|* {{{tdp1}}}&amp;amp;nbsp;W }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{tdp2|}}}|* {{{tdp2}}}&amp;amp;nbsp;W }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{tdp3|}}}|* {{{tdp3}}}&amp;amp;nbsp;W }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{tdp4|}}}|* {{{tdp4}}}&amp;amp;nbsp;W }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{tdp5|}}}|* {{{tdp5}}}&amp;amp;nbsp;W }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{tdp6|}}}|* {{{tdp6}}}&amp;amp;nbsp;W }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{tdp7|}}}|* {{{tdp7}}}&amp;amp;nbsp;W }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{tdp8|}}}|* {{{tdp8}}}&amp;amp;nbsp;W }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{tdp|}}}|{{{tdp}}}&amp;amp;nbsp;W}}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;}} |{{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[Thermal design power|TDP]]&lt;br /&gt;
 | lynnfield   = {{{tdp|95}}} W&lt;br /&gt;
 | bloomfield  = {{{tdp|130}}} W&lt;br /&gt;
 | clarkdale   = {{{tdp|73}}} W&lt;br /&gt;
 | clarksfield = {{{tdp|45}}} W&lt;br /&gt;
 | arrandale   = {{{tdp|35}}} W&lt;br /&gt;
 | clovertown&lt;br /&gt;
 | harpertown&lt;br /&gt;
 | tigerton    = {{{tdp|80}}} W&lt;br /&gt;
 | dunnington  = {{{tdp|90}}} W&lt;br /&gt;
 | merom&lt;br /&gt;
 | penryn      = {{{tdp|35}}} W&lt;br /&gt;
 | penrynulv   = {{{tdp|10}}} W&lt;br /&gt;
 | woodcrest&lt;br /&gt;
 | wolfdale&lt;br /&gt;
 | conroe      = {{{tdp|65}}} W&lt;br /&gt;
 | yorkfield&lt;br /&gt;
 | kentsfield  = {{{tdp|95}}} W&lt;br /&gt;
 | sossaman    = {{{tdp|31}}} W&lt;br /&gt;
 | yonah       = {{{tdp|31}}} W&lt;br /&gt;
 | dothan      = {{{tdp|21}}} W&lt;br /&gt;
 | banias      = {{{tdp|24.5}}} W&lt;br /&gt;
 | baytrail    = {{n/a}}&lt;br /&gt;
 | {{#if: {{{tdp|}}}|{{{tdp}}} W}}&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|sock = {{#if:{{{sock1|}}}{{{sock2|}}}{{{sock3|}}}{{{sock4|}}}{{{sock5|}}}{{{sock6|}}}{{{sock7|}}}{{{sock8|}}}|{{plainlist|&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sock1|}}}|* {{{sock1}}} }}&amp;lt;!-- when sock1...sock8 are specified show sock1...sock8 and sock&lt;br /&gt;
   --&amp;gt;{{#if:{{{sock2|}}}|* {{{sock2}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sock3|}}}|* {{{sock3}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sock4|}}}|* {{{sock4}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sock5|}}}|* {{{sock5}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sock6|}}}|* {{{sock6}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sock7|}}}|* {{{sock7}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sock8|}}}|* {{{sock8}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{sock|}}}|{{{sock}}}}}&amp;lt;!--  otherwise, take a guess with just sock&lt;br /&gt;
   --&amp;gt;}} |{{#switch: {{{2}}}&lt;br /&gt;
 | end | head = [[CPU socket|Socket]]&lt;br /&gt;
 | haswell =  {{#switch: {{{sock}}}&lt;br /&gt;
                   |bga | BGA | FC-BGA10&lt;br /&gt;
                   | 1364 = {{#if: {{{links|}}}|[[BGA-1364]]|BGA-1364}}&lt;br /&gt;
                   | 1168 = {{#if: {{{links|}}}|[[BGA-1168]]|BGA-1168}}&lt;br /&gt;
                   | 1234 = {{#if: {{{links|}}}|[[BGA-1234]]|BGA-1234}}&lt;br /&gt;
                   |pga |PGA |PGA946 |PGA946B&lt;br /&gt;
                   | 946 |946B = {{#if: {{{links|}}}|[[Intel Socket G3|Socket G3]]|Socket G3}}&lt;br /&gt;
                   | {{{sock|{{#if: {{{links|}}}|[[Intel Socket G3|Socket G3]]|Socket G3}}}}}&lt;br /&gt;
                   | 1150 = {{#if: {{{links|}}}|[[LGA 1150]]|LGA 1150}}&lt;br /&gt;
                  }}&lt;br /&gt;
 | skylake =  {{#switch: {{{sock}}}&lt;br /&gt;
                   |bga | BGA | FC-BGA10&lt;br /&gt;
                   | 1515 = {{#if: {{{links|}}}|[[BGA 1515]]|BGA 1515}}&lt;br /&gt;
                   | 1440 = {{#if: {{{links|}}}|[[BGA 1440]]|BGA 1440}}&lt;br /&gt;
                   | 1356 |1356B = {{#if: {{{links|}}}|[[BGA 1356]]|BGA 1356}}&lt;br /&gt;
                   | 1151 = {{#if: {{{links|}}}|[[LGA 1151]]|LGA 1151}}&lt;br /&gt;
                   | 1151v2 = {{#if: {{{links|}}}|[[LGA 1151v2]]|LGA 1151v2}}&lt;br /&gt;
 	           | 2066 = {{#if: {{{links|}}}|[[LGA 2066]]|LGA 2066}}&lt;br /&gt;
 	           | 3647 = {{#if: {{{links|}}}|[[LGA 3647]]|LGA 3647}}&lt;br /&gt;
                  }}&lt;br /&gt;
 | gainestown&lt;br /&gt;
 | gulftown&lt;br /&gt;
 | gulftownup&lt;br /&gt;
 | bloomfield&lt;br /&gt;
 | jasperforest = {{#if: {{{links|}}}|[[LGA 1366]]|LGA 1366}}&lt;br /&gt;
 | beckton    = {{#if: {{{links|}}}|[[LGA 1567]]|LGA 1567}}&lt;br /&gt;
 | lynnfield&lt;br /&gt;
 | clarkdale  = {{#if: {{{links|}}}|[[LGA 1156]]|LGA 1156}}&lt;br /&gt;
 | arrandale&lt;br /&gt;
 | clarksfield =  {{#switch: {{{sock}}}&lt;br /&gt;
                   |bga | BGA | FC-BGA10&lt;br /&gt;
                   | 1288 = {{#if: {{{links|}}}|[[BGA-1288]]|BGA-1288}}&lt;br /&gt;
                   |pga |PGA |PGA988 |PGA988A&lt;br /&gt;
                   | 988 |988A = {{#if: {{{links|}}}|[[Socket G1]]|Socket G1}}&lt;br /&gt;
                   | {{{sock|{{#if: {{{links|}}}|[[Socket G1]]|Socket G1}}}}}&lt;br /&gt;
                  }}&lt;br /&gt;
 | dothan&lt;br /&gt;
 | banias = {{{sock|{{#if: {{{links|}}}|[[Socket 479]]|Socket 479}} }}}&lt;br /&gt;
 | sossaman&lt;br /&gt;
 | yonah&lt;br /&gt;
 | merom = {{{sock|{{#if: {{{links|}}}|[[Socket M]]|Socket M}} }}}&lt;br /&gt;
 | penryn = {{{sock|{{#if: {{{links|}}}|[[Socket P]]|Socket P}} }}}&lt;br /&gt;
 | penrynulv = {{{sock|{{#if: {{{links|}}}|[[μFC-BGA 956]]|μFC-BGA 956}} }}}&lt;br /&gt;
 | silverthorne&lt;br /&gt;
 | diamondville = {{#ifeq: {{{sock|}}}|441|&lt;br /&gt;
        {{#if: {{{links|}}}|[[BGA 441]]|BGA 441}}|&lt;br /&gt;
        {{#if: {{{links|}}}|[[BGA 437]]|BGA 437}} }}&lt;br /&gt;
 | pineview&lt;br /&gt;
 | lincroft = {{#if: {{{links|}}}|[[FC-BGA 518]]|FC-BGA 518}}&lt;br /&gt;
 | tunnelcreek = {{#if: {{{links|}}}|[[FC-BGA 676]]|FC-BGA 676}}&lt;br /&gt;
 | tigerton&lt;br /&gt;
 | dunnington = {{#if: {{{links|}}}|[[Socket 604]]|Socket 604}}&lt;br /&gt;
 | woodcrest&lt;br /&gt;
 | clovertown&lt;br /&gt;
 | harpertown = {{{sock|{{#if: {{{links|}}}|[[LGA 771]]|LGA 771}} }}}&lt;br /&gt;
 | wolfdale&lt;br /&gt;
 |  conroe&lt;br /&gt;
 |  yorkfield&lt;br /&gt;
 |  kentsfield  =  {{{sock|{{#if: {{{links|}}}|[[LGA 775]]|LGA 775}} }}}&lt;br /&gt;
 | {{#switch: {{{sock}}}&lt;br /&gt;
 	 | 2066 = {{#if: {{{links|}}}|[[LGA 2066]]|LGA 2066}}&lt;br /&gt;
 	 | 3647 = {{#if: {{{links|}}}|[[LGA 3647]]|LGA 3647}}&lt;br /&gt;
   | 2011-3 = {{#if: {{{links|}}}|[[LGA 2011-3]]|LGA 2011-3}}&lt;br /&gt;
   | 2011-1 = {{#if: {{{links|}}}|[[LGA 2011-1]]|LGA 2011-1}}&lt;br /&gt;
   | 2011 = {{#if: {{{links|}}}|[[LGA 2011]]|LGA 2011}}&lt;br /&gt;
   | 1366 = {{#if: {{{links|}}}|[[LGA 1366]]|LGA 1366}}&lt;br /&gt;
   | 1364 = {{#if: {{{links|}}}|[[BGA 1364]]|BGA 1364}}&lt;br /&gt;
   | 1356-3 = {{#if: {{{links|}}}|[[LGA 1356-3]]|LGA 1356-3}}&lt;br /&gt;
   | 1356 = {{#if: {{{links|}}}|[[LGA 1356]]|LGA 1356}}&lt;br /&gt;
   | 1288 = {{#if: {{{links|}}}|[[BGA 1288]]|LGA 1288}}&lt;br /&gt;
   | 1284 = {{#if: {{{links|}}}|[[BGA 1284]]|BGA 1284}}&lt;br /&gt;
   | 1234 = {{#if: {{{links|}}}|[[BGA 1234]]|BGA 1234}}&lt;br /&gt;
   | 1168 = {{#if: {{{links|}}}|[[BGA 1168]]|BGA 1168}}&lt;br /&gt;
   | 1152&lt;br /&gt;
   | 1156 = {{#if: {{{links|}}}|[[LGA 1156]]|LGA 1156}}&lt;br /&gt;
   | 1155 = {{#if: {{{links|}}}|[[LGA 1155]]|LGA 1155}}&lt;br /&gt;
   | 1150 = {{#if: {{{links|}}}|[[LGA 1150]]|LGA 1150}}&lt;br /&gt;
   | 1151 = {{#if: {{{links|}}}|[[LGA 1151]]|LGA 1151}}&lt;br /&gt;
   | 1151v2 = {{#if: {{{links|}}}|[[LGA 1151v2]]|LGA 1151v2}}&lt;br /&gt;
   | 1023 = {{#if: {{{links|}}}|[[BGA 1023]]|BGA 1023}}&lt;br /&gt;
   | 988A = {{#if: {{{links|}}}|[[Socket G1]]|Socket G1}}&lt;br /&gt;
   | 988B = {{#if: {{{links|}}}|[[Socket G2]]|Socket G2}}&lt;br /&gt;
   | 956 = {{#if: {{{links|}}}|[[μFC-BGA 956]]|μFC-BGA 956}}&lt;br /&gt;
   | 946B = {{#if: {{{links|}}}|[[Socket G3]]|Socket G3}}&lt;br /&gt;
   | Socket J&lt;br /&gt;
   | J&lt;br /&gt;
   | 775 = {{#if: {{{links|}}}|[[LGA 775]]|LGA 775}}&lt;br /&gt;
   | 771 = {{#if: {{{links|}}}|[[LGA 771]]|LGA 771}}&lt;br /&gt;
   | 604 = {{#if: {{{links|}}}|[[Socket 604]]|Socket 604}}&lt;br /&gt;
   | 603 = {{#if: {{{links|}}}|[[Socket 603]]|Socket 603}}&lt;br /&gt;
   | 559 = {{#if: {{{links|}}}|[[micro-FCBGA8 559]]|micro-FCBGA8 559}}&lt;br /&gt;
   | 462 = {{#if: {{{links|}}}|[[Socket 462]]|Socket 462}}&lt;br /&gt;
   | N&lt;br /&gt;
   | 478 = {{#if: {{{links|}}}|[[Socket 478]]|Socket 478}}&lt;br /&gt;
   | 479 = {{#if: {{{links|}}}|[[Socket 479]]|Socket 479}}&lt;br /&gt;
   | 441 = {{#if: {{{links|}}}|[[BGA 441]]|BGA 441}}&lt;br /&gt;
   | 437 = {{#if: {{{links|}}}|[[BGA 437]]|BGA 437}}&lt;br /&gt;
   | 423 = {{#if: {{{links|}}}|[[Socket 423]]|Socket 423}}&lt;br /&gt;
   | 370 = {{#if: {{{links|}}}|[[Socket 370]]|Socket 370}}&lt;br /&gt;
   | 4 = {{#if: {{{links|}}}|[[Socket 4]]|Socket 4}}&lt;br /&gt;
   | 5 = {{#if: {{{links|}}}|[[Socket 5]]|Socket 5}}&lt;br /&gt;
   | 6 = {{#if: {{{links|}}}|[[Socket 6]]|Socket 6}}&lt;br /&gt;
   | 7 = {{#if: {{{links|}}}|[[Socket 7]]|Socket 7}}&lt;br /&gt;
   | M = {{#if: {{{links|}}}|[[Socket M]]|Socket M}}&lt;br /&gt;
   | P = {{#if: {{{links|}}}|[[Socket P]]|Socket P}}&lt;br /&gt;
   | A = {{#if: {{{links|}}}|[[Slot A]]|Slot A}}&lt;br /&gt;
   | B = {{#if: {{{links|}}}|[[Slot B]]|Slot B}}&lt;br /&gt;
   | 2 = {{#if: {{{links|}}}|[[Slot 2]]|Slot 2}}&lt;br /&gt;
   | &lt;br /&gt;
 }}&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|gfxmodel = {{#switch: {{{2}}}&lt;br /&gt;
 | end | head = GPU&amp;lt;br/&amp;gt;model&lt;br /&gt;
 | sandybridge|ivybridge|haswell|baytrail|skylake = {{#switch: {{{gfxmodel}}}&lt;br /&gt;
   |4eu = {{#if: {{{links|}}}|[[HD Graphics]] (4&amp;amp;nbsp;EUs)|HD Graphics (4&amp;amp;nbsp;EUs)}}&lt;br /&gt;
   |6eu = {{#if: {{{links|}}}|[[HD Graphics]] (6&amp;amp;nbsp;EUs)|HD Graphics (6&amp;amp;nbsp;EUs)}}&lt;br /&gt;
   |10eu = {{#if: {{{links|}}}|[[HD Graphics]] (10&amp;amp;nbsp;EUs)|HD Graphics (10&amp;amp;nbsp;EUs)}}&lt;br /&gt;
   |12eu = {{#if: {{{links|}}}|[[HD Graphics]] (12&amp;amp;nbsp;EUs)|HD Graphics (12&amp;amp;nbsp;EUs)}}&lt;br /&gt;
   |16eu = {{#if: {{{links|}}}|[[HD Graphics]] (16&amp;amp;nbsp;EUs)|HD Graphics (16&amp;amp;nbsp;EUs)}}&lt;br /&gt;
   |gt1&lt;br /&gt;
   |GT1&lt;br /&gt;
   |1&lt;br /&gt;
   |2000 = {{#if: {{{links|}}}|[[HD Graphics 2000]]|HD Graphics 2000}}&lt;br /&gt;
   |gt2&lt;br /&gt;
   |GT2&lt;br /&gt;
   |2&lt;br /&gt;
   |3000 = {{#if: {{{links|}}}|[[HD Graphics 3000]]|HD Graphics 3000}}&lt;br /&gt;
   |p3000&lt;br /&gt;
   |P3000&lt;br /&gt;
   |P = {{#if: {{{links|}}}|[[HD Graphics P3000]]|HD Graphics P3000}}&lt;br /&gt;
   |2500 = {{#if: {{{links|}}}|[[HD Graphics 2500]]|HD Graphics 2500}}&lt;br /&gt;
   |4000 = {{#if: {{{links|}}}|[[HD Graphics 4000]]|HD Graphics 4000}}&lt;br /&gt;
   |P4000 = {{#if: {{{links|}}}|[[HD Graphics P4000]]|HD Graphics P4000}}&lt;br /&gt;
   |4200 = {{#if: {{{links|}}}|[[HD Graphics 4200]]|HD Graphics 4200}}&lt;br /&gt;
   |4400 = {{#if: {{{links|}}}|[[HD Graphics 4400]]|HD Graphics 4400}}&lt;br /&gt;
   |4600 = {{#if: {{{links|}}}|[[HD Graphics 4600]]|HD Graphics 4600}}&lt;br /&gt;
   |P4600 = {{#if: {{{links|}}}|[[HD Graphics P4600]]|HD Graphics P4600}}&lt;br /&gt;
   |P4700 = {{#if: {{{links|}}}|[[HD Graphics P4700]]|HD Graphics P4700}}&lt;br /&gt;
   |5000 = {{#if: {{{links|}}}|[[HD Graphics 5000]]|HD Graphics 5000}}&lt;br /&gt;
   |5100 = {{#if: {{{links|}}}|[[Iris Graphics 5100]]|Iris Graphics 5100}}&lt;br /&gt;
   |5200 = {{#if: {{{links|}}}|[[Iris Pro Graphics 5200]]|Iris Pro Graphics 5200}}&lt;br /&gt;
   |5300 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 5300]]|HD Graphics 5300}}&lt;br /&gt;
   |5500 = {{#if: {{{links|}}}|[[HD Graphics 5500]]|HD Graphics 5500}}&lt;br /&gt;
   |5600 = {{#if: {{{links|}}}|[[HD Graphics 5600]]|HD Graphics 5600}}&lt;br /&gt;
   |P5700 = {{#if: {{{links|}}}|[[HD Graphics P5700]]|HD Graphics P5700}}&lt;br /&gt;
   |6000 = {{#if: {{{links|}}}|[[HD Graphics 6000]]|HD Graphics 6000}}&lt;br /&gt;
   |6100 = {{#if: {{{links|}}}|[[Iris Graphics 6100]]|Iris Graphics 6100}}&lt;br /&gt;
   |6200 = {{#if: {{{links|}}}|[[Iris Pro Graphics 6200]]|Iris Pro Graphics 6200}}&lt;br /&gt;
   |P6300 = {{#if: {{{links|}}}|[[Iris Pro Graphics P6300]]|Iris Pro Graphics P6300}}&lt;br /&gt;
   |400 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 400]]|HD Graphics 400}}&lt;br /&gt;
   |405 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 405]]|HD Graphics 405}}&lt;br /&gt;
   |500 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 500]]|HD Graphics 500}}&lt;br /&gt;
   |505 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 505]]|HD Graphics 505}}&lt;br /&gt;
   |510 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 510]]|HD Graphics 510}}&lt;br /&gt;
   |515 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 515]]|HD Graphics 515}}&lt;br /&gt;
   |520 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 520]]|HD Graphics 520}}&lt;br /&gt;
   |530 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 530]]|HD Graphics 530}}&lt;br /&gt;
   |P530 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics P530]]|HD Graphics P530}}&lt;br /&gt;
   |535 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 535]]|HD Graphics 535}}&lt;br /&gt;
   |540 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|Iris Graphics 540]]|Iris Graphics 540}}&lt;br /&gt;
   |550 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|Iris Graphics 550]]|Iris Graphics 550}}&lt;br /&gt;
   |P555 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|Iris Pro Graphics P555]]|Iris Pro Graphics P555}}&lt;br /&gt;
   |580 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|Iris Pro Graphics 580]]|Iris Pro Graphics 580}}&lt;br /&gt;
   |P580 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|Iris Pro Graphics P580]]|Iris Pro Graphics P580}}&lt;br /&gt;
   |600 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|UHD Graphics 600]]|UHD Graphics 600}}&lt;br /&gt;
   |605 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|UHD Graphics 605]]|UHD Graphics 605}}&lt;br /&gt;
   |610 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 610]]|HD Graphics 610}}&lt;br /&gt;
   |615 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 615]]|HD Graphics 615}}&lt;br /&gt;
   |620 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 620]]|HD Graphics 620}}&lt;br /&gt;
   |U620= {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|UHD Graphics 620]]|UHD Graphics 620}}&lt;br /&gt;
   |630 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics 630]]|HD Graphics 630}}&lt;br /&gt;
   |P630 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|HD Graphics P630]]|HD Graphics P630}}&lt;br /&gt;
   |U630= {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|UHD Graphics 630]]|UHD Graphics 630}}&lt;br /&gt;
   |640 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|Iris Plus Graphics 640]]|Iris Plus Graphics 640}}&lt;br /&gt;
   |650 = {{#if: {{{links|}}}|[[Intel HD and Iris Graphics|Iris Plus Graphics 650]]|Iris Plus Graphics 650}}&lt;br /&gt;
   | {{#if: {{{gfxmodel|}}}|{{{gfxmodel|}}} (?)|{{N/a}} }}&lt;br /&gt;
 }}&lt;br /&gt;
 | {{{gfxmodel|{{N/a}} }}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|date = {{#switch: {{{2}}}&lt;br /&gt;
 | end | head = Release date&lt;br /&gt;
 | {{{date|}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|part = {{#switch: {{{2}}}&lt;br /&gt;
 | end | head = Part&amp;lt;br/&amp;gt;number(s)&lt;br /&gt;
 | {{#if:{{{part1|}}}{{{part2|}}}{{{part3|}}}{{{part4|}}}{{{part5|}}}{{{part6|}}}{{{part7|}}}{{{part8|}}}{{{part|}}}|{{plainlist|&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{part1|}}}|* {{{part1}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{part2|}}}|* {{{part2}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{part3|}}}|* {{{part3}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{part4|}}}|* {{{part4}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{part5|}}}|* {{{part5}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{part6|}}}|* {{{part6}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{part7|}}}|* {{{part7}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{part8|}}}|* {{{part8}}} }}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;{{#if:{{{part|}}}|{{{part}}}}}&amp;lt;!--&lt;br /&gt;
   --&amp;gt;}} }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
|price = {{#switch: {{{2}}}&lt;br /&gt;
 | end | head = Release&amp;lt;br/&amp;gt;price ([[United States dollar|USD]])&lt;br /&gt;
 | {{{price|}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
{{#ifeq:{{{2}}}|end|{{!)}}}}&amp;lt;!--&lt;br /&gt;
--&amp;gt;&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
[[Category:Lists of microprocessors|*]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:(!/doc&amp;diff=459637</id>
		<title>Template:(!/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:(!/doc&amp;diff=459637"/>
		<updated>2017-12-15T22:08:37Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&lt;br /&gt;
&amp;lt;!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --&amp;gt;&lt;br /&gt;
This templates produces the '''&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{|&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;''' sequence (i.e., start of wikitable), so that wikitables can be built inside templates.&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The problem is that if a pipe character &amp;quot;&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;|&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;quot;  appears in a template, the template parser assumes that the pipe is part of the template; and so if there is a table within a template the pipe symbols that are usually interpreted as part of the table syntax will be interpreted first as part template.&lt;br /&gt;
&lt;br /&gt;
To prevent this happening it is possible to &amp;quot;hide&amp;quot; the pipe character of the table from the template parser by substituting &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{!}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; for a pipe character.&lt;br /&gt;
&lt;br /&gt;
To aid with building a table there are some additional template which can be used to help&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{(!}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{|&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{!-}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;|-&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; but in this case it is probably easier to user &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{!}}-&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{!!}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;||&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{!)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;|}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See [[mw:Help:Magic words#Other]] and [[mw:Help:Template#A parameter value containing a pipe character]]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* {{tlx|!!}}&lt;br /&gt;
* {{tlx|!-}}&lt;br /&gt;
* {{tlx|!)}}&lt;br /&gt;
* {{tlx|End}}&lt;br /&gt;
* {{tlx|Aligned table}}, specify table directly as a template, contrasting the special handling of certain syntax above&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
[[Category:Table templates]]&lt;br /&gt;
[[Category:Wikipedia character-substitution templates]]&lt;br /&gt;
[[pt:Predefinição:(!]]&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:End/doc&amp;diff=4839271</id>
		<title>Template:End/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:End/doc&amp;diff=4839271"/>
		<updated>2017-12-15T22:07:12Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&lt;br /&gt;
&amp;lt;!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see [[&amp;lt;/nowiki&amp;gt;[[Wikipedia:Wikidata]]&amp;lt;nowiki&amp;gt;]]) --&amp;gt;&lt;br /&gt;
{{high-use|42000}}&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
This template ends any table (with bar-brace &amp;quot;|}&amp;quot;) and may be used with any other templates that begin a one-level table, except with template {{tl|Top}} &amp;amp; {{tl|Mid}} which require {{tl|Bottom}} to end a Top-table (which has a double-level format).&lt;br /&gt;
&lt;br /&gt;
This template duplicates {{tl|s-end}} for technical reasons. See the documentation on that page. Any succession template ending with {{tl|end}} should be changed to {{tl|s-end}}.&lt;br /&gt;
&lt;br /&gt;
=== Position ===&lt;br /&gt;
WARNING: Template {{tl|end}} must be placed on a separate line for ending a table; otherwise, it inserts a literal bar-brace &amp;quot;|}&amp;quot; into the text.&lt;br /&gt;
&lt;br /&gt;
== Redirects ==&lt;br /&gt;
&lt;br /&gt;
Other &amp;quot;table end&amp;quot; templates redirect here.&lt;br /&gt;
&lt;br /&gt;
Alternatively, this template may take a parameter, such as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{End|Cricket series}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to indicate which table start template it matches (in the example given, {{tl|Infobox cricket series begin}}). The parameter has no technical function.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{election table|Template name|editlink=no|Summary of the May 2, 2011 election}}&lt;br /&gt;
|- style=&amp;quot;text-align:right;&amp;quot;&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:400; text-align:left;&amp;quot; colspan=&amp;quot;2&amp;quot; | Party&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:200; text-align:left;&amp;quot; | Main candidate&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:50;&amp;quot; | Votes&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:50;&amp;quot; | %&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:50;&amp;quot; | +/–&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:50;&amp;quot; | Seats&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:50;&amp;quot; | +/–&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:green&amp;quot; | || Green&lt;br /&gt;
| John Johnson&lt;br /&gt;
| 12&lt;br /&gt;
| 50%&lt;br /&gt;
| +5&lt;br /&gt;
| 5&lt;br /&gt;
| +1&lt;br /&gt;
|-&lt;br /&gt;
{{end|election table}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
''Result:''&lt;br /&gt;
{{election table|Template name|editlink=no|Summary of the May 2, 2011 election}}&lt;br /&gt;
|- style=&amp;quot;text-align:right;&amp;quot;&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:400; text-align:left;&amp;quot; colspan=&amp;quot;2&amp;quot; | Party&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:200; text-align:left;&amp;quot; | Main candidate&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:50;&amp;quot; | Votes&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:50;&amp;quot; | %&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:50;&amp;quot; | +/–&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:50;&amp;quot; | Seats&lt;br /&gt;
! style=&amp;quot;background-color:#E9E9E9; width:50;&amp;quot; | +/–&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:green&amp;quot; | || Green&lt;br /&gt;
| John Johnson&lt;br /&gt;
| 12&lt;br /&gt;
| 50%&lt;br /&gt;
| +5&lt;br /&gt;
| 5&lt;br /&gt;
| +1&lt;br /&gt;
|-&lt;br /&gt;
{{end|election table}}&lt;br /&gt;
&lt;br /&gt;
== TemplateData ==&lt;br /&gt;
{{TemplateDataHeader}}&lt;br /&gt;
&amp;lt;templatedata&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;description&amp;quot;: &amp;quot;Ends a table. Must appear on a separate line. Normally used with {{col-begin}}. It takes no parameters.&amp;quot;,&lt;br /&gt;
    &amp;quot;params&amp;quot;: {&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/templatedata&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* {{tl|!)}}&lt;br /&gt;
&lt;br /&gt;
{{Column-generating template families}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox||&lt;br /&gt;
&amp;lt;!-- Categories below this line, please; interwikis at Wikidata --&amp;gt;&lt;br /&gt;
[[Category:Succession templates]]&lt;br /&gt;
[[Category:Table templates]]&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Galvanic_cells&amp;diff=5399057</id>
		<title>Template:Galvanic cells</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Galvanic_cells&amp;diff=5399057"/>
		<updated>2017-12-06T01:37:40Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: rendered standalone state expanded and use explicit autocollapse&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name = Galvanic cells&lt;br /&gt;
| state = {{{state|{{{1&amp;lt;includeonly&amp;gt;|autocollapse&amp;lt;/includeonly&amp;gt;}}}}}}&lt;br /&gt;
| title = [[Galvanic cell]]s&lt;br /&gt;
| image = [[File:Galvanic Cell.svg|150px|Galvanic cell]]&lt;br /&gt;
| listclass = hlist&lt;br /&gt;
&lt;br /&gt;
| group1 = Types&lt;br /&gt;
| list1 =&lt;br /&gt;
* [[Voltaic pile]]&lt;br /&gt;
* [[Battery (electricity)|Battery]]&lt;br /&gt;
** [[Flow battery]]&lt;br /&gt;
** [[Trough battery]]&lt;br /&gt;
* [[Concentration cell]] &lt;br /&gt;
* [[Fuel cell]]&lt;br /&gt;
* [[Thermogalvanic cell]]&lt;br /&gt;
&lt;br /&gt;
| group2 = {{longitem|[[Primary cell|Primary cell&amp;lt;br/&amp;gt;{{small|{{nobold|(non-rechargeable)}}}}]]}}&lt;br /&gt;
| list2 = &amp;lt;!--Alphabetical:--&amp;gt;&lt;br /&gt;
* [[Alkaline battery|Alkaline]]&lt;br /&gt;
* [[Aluminium–air battery|Aluminium–air]]&lt;br /&gt;
* [[Bunsen cell|Bunsen]]&lt;br /&gt;
* [[Chromic acid cell|Chromic acid]]&lt;br /&gt;
* [[Clark cell|Clark]]&lt;br /&gt;
* [[Daniell cell|Daniell]]&lt;br /&gt;
* [[Dry cell|Dry]]&lt;br /&gt;
* [[Edison-Lalande cell|Edison-Lalande]]&lt;br /&gt;
* [[Grove cell|Grove]]&lt;br /&gt;
* [[Leclanché cell|Leclanché]]&lt;br /&gt;
* [[Lithium battery|Lithium]]&lt;br /&gt;
* [[Mercury battery|Mercury]]&lt;br /&gt;
* [[Nickel oxyhydroxide battery|Nickel oxyhydroxide]]&lt;br /&gt;
* [[Silicon–air battery|Silicon–air]]&lt;br /&gt;
* [[Silver-oxide battery|Silver oxide]]&lt;br /&gt;
* [[Weston cell|Weston]]&lt;br /&gt;
* [[Zamboni pile|Zamboni]]&lt;br /&gt;
* [[Zinc–air battery|Zinc–air]]&lt;br /&gt;
* [[Zinc–carbon battery|Zinc–carbon]]&lt;br /&gt;
&lt;br /&gt;
| group3 = {{longitem|[[Rechargeable battery|Secondary cell&amp;lt;br/&amp;gt;{{small|{{nobold|(rechargeable)}}}}]]}}&lt;br /&gt;
| list3 = &amp;lt;!--Alphabetical:--&amp;gt;&lt;br /&gt;
* [[Automotive battery|Automotive]]&lt;br /&gt;
* [[Lead–acid battery|Lead–acid]]&lt;br /&gt;
** [[VRLA battery|gel{{\}}VRLA]]&lt;br /&gt;
* [[Lithium–air battery|Lithium–air]]&lt;br /&gt;
* [[Lithium-ion battery|Lithium–ion]]&lt;br /&gt;
** [[Lithium polymer battery|Lithium polymer]]&lt;br /&gt;
** [[Lithium iron phosphate battery|Lithium iron phosphate]]&lt;br /&gt;
** [[Lithium–titanate battery|Lithium titanate]]&lt;br /&gt;
** [[Lithium–sulfur battery|Lithium–sulfur]]&lt;br /&gt;
** [[Dual carbon battery]]&lt;br /&gt;
* [[Molten salt battery |Molten salt]]&lt;br /&gt;
* [[Nanopore battery|Nanopore]]&lt;br /&gt;
* [[Nanowire battery|Nanowire]]&lt;br /&gt;
* [[Nickel–cadmium battery|Nickel–cadmium]]&lt;br /&gt;
* [[Nickel–hydrogen battery|Nickel–hydrogen]]&lt;br /&gt;
* [[Nickel–iron battery|Nickel–iron]]&lt;br /&gt;
* [[Nickel–lithium battery|Nickel–lithium]]&lt;br /&gt;
* [[Nickel–metal hydride battery|Nickel–metal hydride]]&lt;br /&gt;
* [[Nickel–zinc battery|Nickel–zinc]]&lt;br /&gt;
* [[Polysulfide bromide battery|Polysulfide bromide]]&lt;br /&gt;
* [[Potassium-ion battery|Potassium-ion]]&lt;br /&gt;
* [[Rechargeable alkaline battery|Rechargeable alkaline]]&lt;br /&gt;
* [[Sodium-ion battery|Sodium-ion]]&lt;br /&gt;
* [[Sodium–sulfur battery|Sodium–sulfur]]&lt;br /&gt;
* [[Vanadium redox battery|Vanadium redox]]&lt;br /&gt;
* [[Zinc–bromine battery|Zinc–bromine]]&lt;br /&gt;
* [[Zinc–cerium battery|Zinc–cerium]]&lt;br /&gt;
&lt;br /&gt;
| group4 = Cell parts&lt;br /&gt;
| list4 =&lt;br /&gt;
* [[Anode]]&lt;br /&gt;
* [[Binder (material)|Binder]]&lt;br /&gt;
* [[Catalysis|Catalyst]]&lt;br /&gt;
* [[Cathode]]&lt;br /&gt;
* [[Electrode]]&lt;br /&gt;
* [[Electrolyte]]&lt;br /&gt;
* [[Half-cell]]&lt;br /&gt;
* [[Ion]]s&lt;br /&gt;
* [[Salt bridge]]&lt;br /&gt;
* [[Semipermeable membrane]]&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Airports_in_Oregon&amp;diff=1992515</id>
		<title>Template:Airports in Oregon</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Airports_in_Oregon&amp;diff=1992515"/>
		<updated>2017-12-05T19:12:08Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: another fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name  = Airports in Oregon&lt;br /&gt;
|title = [[List of airports in Oregon|Airports in Oregon]]&lt;br /&gt;
|state = {{{state|}}}&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1 = Commercial&lt;br /&gt;
|list1 = &lt;br /&gt;
* [[Eastern Oregon Regional Airport|Eastern Oregon–Pendleton]]&lt;br /&gt;
* [[Eugene Airport|Eugene]]&lt;br /&gt;
* [[Crater Lake–Klamath Regional Airport|Crater Lake–Klamath]]&lt;br /&gt;
* [[Rogue Valley International–Medford Airport|Medford–Rogue Valley]]&lt;br /&gt;
* [[Southwest Oregon Regional Airport|Southwest Oregon]]&lt;br /&gt;
* [[Portland International Airport|Portland International]]&lt;br /&gt;
* [[Roberts Field|Redmond]]&lt;br /&gt;
&lt;br /&gt;
|group2 = [[Relief airport|Relief]]&lt;br /&gt;
|list2 = &lt;br /&gt;
* [[Hillsboro Airport|Portland–Hillsboro]]&lt;br /&gt;
* [[Portland–Troutdale Airport|Portland–Troutdale]]&lt;br /&gt;
&lt;br /&gt;
|group3 = General&lt;br /&gt;
|list3 = &lt;br /&gt;
* [[Albany Municipal Airport (Oregon)|Albany]]&lt;br /&gt;
* [[Ashland Municipal Airport|Ashland]]&lt;br /&gt;
* [[Astoria Regional Airport|Astoria]]&lt;br /&gt;
* [[Baker City Municipal Airport|Baker City]]&lt;br /&gt;
* [[Bend Municipal Airport|Bend]]&lt;br /&gt;
* [[Boardman Airport|Boardman]]&lt;br /&gt;
* [[Brookings Airport|Brookings]]&lt;br /&gt;
* [[Burns Municipal Airport|Burns]]&lt;br /&gt;
* [[Christmas Valley Airport|Christmas Valley]]&lt;br /&gt;
* [[Columbia Gorge Regional Airport|Columbia Gorge]]&lt;br /&gt;
* [[Corvallis Municipal Airport|Corvallis]]&lt;br /&gt;
* [[Florence Municipal Airport|Florence]]&lt;br /&gt;
* [[Gold Beach Municipal Airport|Gold Beach]]&lt;br /&gt;
* [[Grants Pass Airport|Grants Pass]]&lt;br /&gt;
* [[Grant County Regional Airport|Grant County]]&lt;br /&gt;
* [[Hermiston Municipal Airport|Hermiston]]&lt;br /&gt;
* [[Hobby Field|Hobby]]&lt;br /&gt;
* [[Illinois Valley Airport|Illinois Valley]]&lt;br /&gt;
* [[Ken Jernstedt Airfield|Ken Jernstedt]]&lt;br /&gt;
* [[La Grande/Union County Airport|La Grande/Union County]]&lt;br /&gt;
* [[Lake County Airport (Oregon)|Lake County]]&lt;br /&gt;
* [[Lexington Airport (Oregon)|Lexington]] &lt;br /&gt;
* [[Madras Municipal Airport|Madras]]&lt;br /&gt;
* [[McMinnville Municipal Airport|McMinnville]]&lt;br /&gt;
* [[Myrtle Creek Municipal Airport|Myrtle Creek]]&lt;br /&gt;
* [[Newport Municipal Airport (Oregon)|Newport]]&lt;br /&gt;
* [[Ontario Municipal Airport|Ontario]]&lt;br /&gt;
* [[Portland Downtown Heliport|Portland Heliport]]&lt;br /&gt;
* [[Prineville Airport|Prineville]]&lt;br /&gt;
* [[Roseburg Regional Airport|Roseburg]]&lt;br /&gt;
* [[McNary Field|Salem]]&lt;br /&gt;
* [[Scappoose Industrial Airpark|Scappoose]]&lt;br /&gt;
* [[Seaside Municipal Airport|Seaside]]&lt;br /&gt;
* [[Sportsman Airpark|Sportsman]]&lt;br /&gt;
* [[Sunriver Airport|Sunriver]]&lt;br /&gt;
* [[Tillamook Airport|Tillamook]]&lt;br /&gt;
&lt;br /&gt;
|group4 = Military&lt;br /&gt;
|list4 = &lt;br /&gt;
* [[Camp Rilea Heliport]]&lt;br /&gt;
* [[Coast Guard Air Station Astoria|CGAS Astoria]]&lt;br /&gt;
* [[Coast Guard Air Station North Bend|CGAS North Bend]]&lt;br /&gt;
* [[McNary ARNG Field Heliport|McNary Heliport]]&lt;br /&gt;
&lt;br /&gt;
|group5 = [[Oregon Department of Aviation|State-owned]]&lt;br /&gt;
|list5 = &lt;br /&gt;
* [[Alkali Lake State Airport|Alkali Lake]]&lt;br /&gt;
* [[Aurora State Airport|Aurora]]&lt;br /&gt;
* [[Bandon State Airport|Bandon]]&lt;br /&gt;
* [[Cape Blanco State Airport|Cape Blanco]]&lt;br /&gt;
* [[Cascade Locks State Airport|Cascade Locks]]&lt;br /&gt;
* [[Chiloquin State Airport|Chiloquin]]&lt;br /&gt;
* [[Condon State Airport|Condon]]&lt;br /&gt;
* [[Cottage Grove State Airport|Cottage Grove]]&lt;br /&gt;
* [[Crescent Lake State Airport|Crescent Lake]]&lt;br /&gt;
* [[Independence State Airport|Independence]]&lt;br /&gt;
* [[Joseph State Airport|Joseph]]&lt;br /&gt;
* [[Lakeside State Airport|Lakeside]]&lt;br /&gt;
* [[Lebanon State Airport|Lebanon]]&lt;br /&gt;
* [[McDermitt State Airport|McDermitt]]&lt;br /&gt;
* [[McKenzie Bridge State Airport|McKenzie Bridge]]&lt;br /&gt;
* [[Mulino State Airport|Mulino]]&lt;br /&gt;
* [[Nehalem Bay State Airport|Nehalem Bay]]&lt;br /&gt;
* [[Oakridge State Airport|Oakridge]]&lt;br /&gt;
* [[Owyhee Reservoir State Airport|Owyhee Reservoir]]&lt;br /&gt;
* [[Pacific City State Airport|Pacific City]]&lt;br /&gt;
* [[Pinehurst State Airport|Pinehurst]]&lt;br /&gt;
* [[Prospect State Airport|Prospect]]&lt;br /&gt;
* [[Rome State Airport|Rome]]&lt;br /&gt;
* [[Santiam Junction State Airport|Santiam Junction]]&lt;br /&gt;
* [[Siletz Bay State Airport|Siletz Bay]]&lt;br /&gt;
* [[Toketee State Airport|Toketee]]&lt;br /&gt;
* [[Toledo State Airport|Toledo]]&lt;br /&gt;
* [[Wasco State Airport|Wasco]]&lt;br /&gt;
* [[Wakonda Beach State Airport|Wakonda Beach]]&lt;br /&gt;
&lt;br /&gt;
|group6= Other&lt;br /&gt;
|list6= &lt;br /&gt;
* [[Arlington Municipal Airport (Oregon)|Arlington]]&lt;br /&gt;
* [[Beaver Marsh Airport|Beaver Marsh]]&lt;br /&gt;
* [[Chehalem Airpark|Chehalem]]&lt;br /&gt;
* [[Country Squire Airpark|Country Squire]]&lt;br /&gt;
* [[Davis Airport (Oregon)|Davis]]&lt;br /&gt;
* [[Enterprise Municipal Airport (Oregon)|Enterprise]]&lt;br /&gt;
* [[George Felt Airport|George Felt]]&lt;br /&gt;
* [[Jantzen Beach Seaplane Base|Jantzen Beach Seaplane]]&lt;br /&gt;
* [[Lake Billy Chinook Airport|Lake Billy]]&lt;br /&gt;
* [[Lake Woahink Seaplane Base|Lake Woahink Seaplane]]&lt;br /&gt;
* [[Lenhardt Airpark|Lenhardt]]&lt;br /&gt;
* [[Memaloose Airport|Memaloose]]&lt;br /&gt;
* [[Malin Airport|Malin]]&lt;br /&gt;
* [[Monument Municipal Airport|Monument]]&lt;br /&gt;
* [[Paisley Airport|Paisley]]&lt;br /&gt;
* [[Powers Airport|Powers]]&lt;br /&gt;
* [[Sandy River Airport|Sandy River]]&lt;br /&gt;
* [[Silver Lake Forest Service Strip|Silver Lake]]&lt;br /&gt;
* [[Sisters Eagle Air Airport|Sisters Eagle]]&lt;br /&gt;
* [[Skyport Airport|Skyport]]&lt;br /&gt;
* [[Stark's Twin Oaks Airpark|Stark's Twin Oaks]]&lt;br /&gt;
* [[Swan Island Municipal Airport|Swan Island]]&lt;br /&gt;
* [[Miller Memorial Airpark|Miller]]&lt;br /&gt;
* [[Valley View Airport|Valley View]]&lt;br /&gt;
* [[Vernonia Municipal Airport|Vernonia]]&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Oregon navigational boxes]]&lt;br /&gt;
[[Category:Airports in Oregon| ]]&lt;br /&gt;
[[Category:United States airport templates|Oregon]]&lt;br /&gt;
[[Category:Transportation in Portland, Oregon| ]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Airports_in_Oregon&amp;diff=1992514</id>
		<title>Template:Airports in Oregon</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Airports_in_Oregon&amp;diff=1992514"/>
		<updated>2017-12-05T19:11:43Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name  = Airports in Oregon&lt;br /&gt;
|title = [[List of airports in Oregon|Airports in Oregon]]&lt;br /&gt;
|state = {{{state|}}}&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1 = Commercial&lt;br /&gt;
|list1 = &lt;br /&gt;
* [[Eastern Oregon Regional Airport|Eastern Oregon–Pendleton]]&lt;br /&gt;
* [[Eugene Airport|Eugene]]&lt;br /&gt;
* [[Crater Lake–Klamath Regional Airport|Crater Lake–Klamath]]&lt;br /&gt;
* [[Rogue Valley International–Medford Airport|Medford–Rogue Valley]]&lt;br /&gt;
* [[Southwest Oregon Regional Airport|Southwest Oregon]]&lt;br /&gt;
* [[Portland International Airport|Portland International]]&lt;br /&gt;
* [[Roberts Field|Redmond]]&lt;br /&gt;
&lt;br /&gt;
|group2 = [[Relief airport|Relief]]&lt;br /&gt;
|list2 = &lt;br /&gt;
* [[Hillsboro Airport|Portland–Hillsboro]]&lt;br /&gt;
* [[Portland–Troutdale Airport|Portland–Troutdale]]&lt;br /&gt;
&lt;br /&gt;
|group3 = General&lt;br /&gt;
|list3 = &lt;br /&gt;
* [[Albany Municipal Airport (Oregon)|Albany]]&lt;br /&gt;
* [[Ashland Municipal Airport|Ashland]]&lt;br /&gt;
* [[Astoria Regional Airport|Astoria]]&lt;br /&gt;
* [[Baker City Municipal Airport|Baker City]]&lt;br /&gt;
* [[Bend Municipal Airport|Bend]]&lt;br /&gt;
* [[Boardman Airport|Boardman]]&lt;br /&gt;
* [[Brookings Airport|Brookings]]&lt;br /&gt;
* [[Burns Municipal Airport|Burns]]&lt;br /&gt;
* [[Christmas Valley Airport|Christmas Valley]]&lt;br /&gt;
* [[Columbia Gorge Regional Airport|Columbia Gorge]]&lt;br /&gt;
* [[Corvallis Municipal Airport|Corvallis]]&lt;br /&gt;
* [[Florence Municipal Airport|Florence]]&lt;br /&gt;
* [[Gold Beach Municipal Airport|Gold Beach]]&lt;br /&gt;
* [[Grants Pass Airport|Grants Pass]]&lt;br /&gt;
* [[Grant County Regional Airport|Grant County]]&lt;br /&gt;
* [[Hermiston Municipal Airport|Hermiston]]&lt;br /&gt;
* [[Hobby Field|Hobby]]&lt;br /&gt;
* [[Illinois Valley Airport|Illinois Valley]]&lt;br /&gt;
* [[Ken Jernstedt Airfield|Ken Jernstedt]]&lt;br /&gt;
* [[La Grande/Union County Airport|La Grande/Union County]]&lt;br /&gt;
* [[Lake County Airport (Oregon)|Lake County]]&lt;br /&gt;
* [[Lexington Airport (Oregon)|Lexington]] &lt;br /&gt;
* [[Madras Municipal Airport|Madras]]&lt;br /&gt;
* [[McMinnville Municipal Airport|McMinnville]]&lt;br /&gt;
* [[Myrtle Creek Municipal Airport|Myrtle Creek]]&lt;br /&gt;
* [[Newport Municipal Airport (Oregon)|Newport]]&lt;br /&gt;
* [[Ontario Municipal Airport|Ontario]]&lt;br /&gt;
* [[Portland Downtown Heliport|Portland Heliport]]&lt;br /&gt;
* [[Prineville Airport|Prineville]]&lt;br /&gt;
* [[Roseburg Regional Airport|Roseburg]]&lt;br /&gt;
* [[McNary Field|Salem]]&lt;br /&gt;
* [[Scappoose Industrial Airpark|Scappoose]]&lt;br /&gt;
* [[Seaside Municipal Airport|Seaside]]&lt;br /&gt;
* [[Sportsman Airpark|Sportsman]]&lt;br /&gt;
* [[Sunriver Airport|Sunriver]]&lt;br /&gt;
* [[Tillamook Airport|Tillamook]]&lt;br /&gt;
&lt;br /&gt;
|group4 = Military&lt;br /&gt;
|list4 = &lt;br /&gt;
* [[Camp Rilea Heliport]]&lt;br /&gt;
* [[Coast Guard Air Station Astoria|CGAS Astoria]]&lt;br /&gt;
* [[Coast Guard Air Station North Bend|CGAS North Bend]]&lt;br /&gt;
* [[McNary ARNG Field Heliport|McNary Heliport]]&lt;br /&gt;
&lt;br /&gt;
|group5 = [Oregon Department of Aviation|State-owned]]&lt;br /&gt;
|list5 = &lt;br /&gt;
* [[Alkali Lake State Airport|Alkali Lake]]&lt;br /&gt;
* [[Aurora State Airport|Aurora]]&lt;br /&gt;
* [[Bandon State Airport|Bandon]]&lt;br /&gt;
* [[Cape Blanco State Airport|Cape Blanco]]&lt;br /&gt;
* [[Cascade Locks State Airport|Cascade Locks]]&lt;br /&gt;
* [[Chiloquin State Airport|Chiloquin]]&lt;br /&gt;
* [[Condon State Airport|Condon]]&lt;br /&gt;
* [[Cottage Grove State Airport|Cottage Grove]]&lt;br /&gt;
* [[Crescent Lake State Airport|Crescent Lake]]&lt;br /&gt;
* [[Independence State Airport|Independence]]&lt;br /&gt;
* [[Joseph State Airport|Joseph]]&lt;br /&gt;
* [[Lakeside State Airport|Lakeside]]&lt;br /&gt;
* [[Lebanon State Airport|Lebanon]]&lt;br /&gt;
* [[McDermitt State Airport|McDermitt]]&lt;br /&gt;
* [[McKenzie Bridge State Airport|McKenzie Bridge]]&lt;br /&gt;
* [[Mulino State Airport|Mulino]]&lt;br /&gt;
* [[Nehalem Bay State Airport|Nehalem Bay]]&lt;br /&gt;
* [[Oakridge State Airport|Oakridge]]&lt;br /&gt;
* [[Owyhee Reservoir State Airport|Owyhee Reservoir]]&lt;br /&gt;
* [[Pacific City State Airport|Pacific City]]&lt;br /&gt;
* [[Pinehurst State Airport|Pinehurst]]&lt;br /&gt;
* [[Prospect State Airport|Prospect]]&lt;br /&gt;
* [[Rome State Airport|Rome]]&lt;br /&gt;
* [[Santiam Junction State Airport|Santiam Junction]]&lt;br /&gt;
* [[Siletz Bay State Airport|Siletz Bay]]&lt;br /&gt;
* [[Toketee State Airport|Toketee]]&lt;br /&gt;
* [[Toledo State Airport|Toledo]]&lt;br /&gt;
* [[Wasco State Airport|Wasco]]&lt;br /&gt;
* [[Wakonda Beach State Airport|Wakonda Beach]]&lt;br /&gt;
&lt;br /&gt;
|group6= Other&lt;br /&gt;
|list6= &lt;br /&gt;
* [[Arlington Municipal Airport (Oregon)|Arlington]]&lt;br /&gt;
* [[Beaver Marsh Airport|Beaver Marsh]]&lt;br /&gt;
* [[Chehalem Airpark|Chehalem]]&lt;br /&gt;
* [[Country Squire Airpark|Country Squire]]&lt;br /&gt;
* [[Davis Airport (Oregon)|Davis]]&lt;br /&gt;
* [[Enterprise Municipal Airport (Oregon)|Enterprise]]&lt;br /&gt;
* [[George Felt Airport|George Felt]]&lt;br /&gt;
* [[Jantzen Beach Seaplane Base|Jantzen Beach Seaplane]]&lt;br /&gt;
* [[Lake Billy Chinook Airport|Lake Billy]]&lt;br /&gt;
* [[Lake Woahink Seaplane Base|Lake Woahink Seaplane]]&lt;br /&gt;
* [[Lenhardt Airpark|Lenhardt]]&lt;br /&gt;
* [[Memaloose Airport|Memaloose]]&lt;br /&gt;
* [[Malin Airport|Malin]]&lt;br /&gt;
* [[Monument Municipal Airport|Monument]]&lt;br /&gt;
* [[Paisley Airport|Paisley]]&lt;br /&gt;
* [[Powers Airport|Powers]]&lt;br /&gt;
* [[Sandy River Airport|Sandy River]]&lt;br /&gt;
* [[Silver Lake Forest Service Strip|Silver Lake]]&lt;br /&gt;
* [[Sisters Eagle Air Airport|Sisters Eagle]]&lt;br /&gt;
* [[Skyport Airport|Skyport]]&lt;br /&gt;
* [[Stark's Twin Oaks Airpark|Stark's Twin Oaks]]&lt;br /&gt;
* [[Swan Island Municipal Airport|Swan Island]]&lt;br /&gt;
* [[Miller Memorial Airpark|Miller]]&lt;br /&gt;
* [[Valley View Airport|Valley View]]&lt;br /&gt;
* [[Vernonia Municipal Airport|Vernonia]]&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Oregon navigational boxes]]&lt;br /&gt;
[[Category:Airports in Oregon| ]]&lt;br /&gt;
[[Category:United States airport templates|Oregon]]&lt;br /&gt;
[[Category:Transportation in Portland, Oregon| ]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Airports_in_Oregon&amp;diff=1992513</id>
		<title>Template:Airports in Oregon</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Airports_in_Oregon&amp;diff=1992513"/>
		<updated>2017-12-05T19:10:13Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: doc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name  = Airports in Oregon&lt;br /&gt;
|title = [[List of airports in Oregon|Airports in Oregon]]&lt;br /&gt;
|state = {{{state|}}}&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1 = Commercial&lt;br /&gt;
|list1 = &lt;br /&gt;
* [[Eastern Oregon Regional Airport|Eastern Oregon–Pendleton]]&lt;br /&gt;
* [[Eugene Airport|Eugene]]&lt;br /&gt;
* [[Crater Lake–Klamath Regional Airport|Crater Lake–Klamath]]&lt;br /&gt;
* [[Rogue Valley International–Medford Airport|Medford–Rogue Valley]]&lt;br /&gt;
* [[Southwest Oregon Regional Airport|Southwest Oregon]]&lt;br /&gt;
* [[Portland International Airport|Portland International]]&lt;br /&gt;
* [[Roberts Field|Redmond]]&lt;br /&gt;
&lt;br /&gt;
|group2 = [[Relief airport|Relief]]&lt;br /&gt;
|list2 = &lt;br /&gt;
* [[Hillsboro Airport|Portland–Hillsboro]]&lt;br /&gt;
* [[Portland–Troutdale Airport|Portland–Troutdale]]&lt;br /&gt;
&lt;br /&gt;
|group3 = General&lt;br /&gt;
|list3 = &lt;br /&gt;
* [[Albany Municipal Airport (Oregon)|Albany]]&lt;br /&gt;
* [[Ashland Municipal Airport|Ashland]]&lt;br /&gt;
* [[Astoria Regional Airport|Astoria]]&lt;br /&gt;
* [[Baker City Municipal Airport|Baker City]]&lt;br /&gt;
* [[Bend Municipal Airport|Bend]]&lt;br /&gt;
* [[Boardman Airport|Boardman]]&lt;br /&gt;
* [[Brookings Airport|Brookings]]&lt;br /&gt;
* [[Burns Municipal Airport|Burns]]&lt;br /&gt;
* [[Christmas Valley Airport|Christmas Valley]]&lt;br /&gt;
* [[Columbia Gorge Regional Airport|Columbia Gorge]]&lt;br /&gt;
* [[Corvallis Municipal Airport|Corvallis]]&lt;br /&gt;
* [[Florence Municipal Airport|Florence]]&lt;br /&gt;
* [[Gold Beach Municipal Airport|Gold Beach]]&lt;br /&gt;
* [[Grants Pass Airport|Grants Pass]]&lt;br /&gt;
* [[Grant County Regional Airport|Grant County]]&lt;br /&gt;
* [[Hermiston Municipal Airport|Hermiston]]&lt;br /&gt;
* [[Hobby Field|Hobby]]&lt;br /&gt;
* [[Illinois Valley Airport|Illinois Valley]]&lt;br /&gt;
* [[Ken Jernstedt Airfield|Ken Jernstedt]]&lt;br /&gt;
* [[La Grande/Union County Airport|La Grande/Union County]]&lt;br /&gt;
* [[Lake County Airport (Oregon)|Lake County]]&lt;br /&gt;
* [[Lexington Airport (Oregon)|Lexington]] &lt;br /&gt;
* [[Madras Municipal Airport|Madras]]&lt;br /&gt;
* [[McMinnville Municipal Airport|McMinnville]]&lt;br /&gt;
* [[Myrtle Creek Municipal Airport|Myrtle Creek]]&lt;br /&gt;
* [[Newport Municipal Airport (Oregon)|Newport]]&lt;br /&gt;
* [[Ontario Municipal Airport|Ontario]]&lt;br /&gt;
* [[Portland Downtown Heliport|Portland Heliport]]&lt;br /&gt;
* [[Prineville Airport|Prineville]]&lt;br /&gt;
* [[Roseburg Regional Airport|Roseburg]]&lt;br /&gt;
* [[McNary Field|Salem]]&lt;br /&gt;
* [[Scappoose Industrial Airpark|Scappoose]]&lt;br /&gt;
* [[Seaside Municipal Airport|Seaside]]&lt;br /&gt;
* [[Sportsman Airpark|Sportsman]]&lt;br /&gt;
* [[Sunriver Airport|Sunriver]]&lt;br /&gt;
* [[Tillamook Airport|Tillamook]]&lt;br /&gt;
&lt;br /&gt;
|group4 = Military&lt;br /&gt;
|list4 = &lt;br /&gt;
* [[Camp Rilea Heliport]]&lt;br /&gt;
* [[Coast Guard Air Station Astoria|CGAS Astoria]]&lt;br /&gt;
* [[Coast Guard Air Station North Bend|CGAS North Bend]]&lt;br /&gt;
* [[McNary ARNG Field Heliport|McNary Heliport]]&lt;br /&gt;
&lt;br /&gt;
|group5 = [Oregon Department of Aviation|State-owned]]&lt;br /&gt;
|list5 = &lt;br /&gt;
* [[Alkali Lake State Airport|Alkali Lake]]&lt;br /&gt;
* [[Aurora State Airport|Aurora]]&lt;br /&gt;
* [[Bandon State Airport|Bandon]]&lt;br /&gt;
* [[Cape Blanco State Airport|Cape Blanco]]&lt;br /&gt;
* [[Cascade Locks State Airport|Cascade Locks]]&lt;br /&gt;
* [[Chiloquin State Airport|Chiloquin]]&lt;br /&gt;
* [[Condon State Airport|Condon]]&lt;br /&gt;
* [[Cottage Grove State Airport|Cottage Grove]]&lt;br /&gt;
* [[Crescent Lake State Airport|Crescent Lake]]&lt;br /&gt;
* [[Independence State Airport|Independence]]&lt;br /&gt;
* [[Joseph State Airport|Joseph]]&lt;br /&gt;
* [[Lakeside State Airport|Lakeside]]&lt;br /&gt;
* [[Lebanon State Airport|Lebanon]]&lt;br /&gt;
* [[McDermitt State Airport|McDermitt]]&lt;br /&gt;
* [[McKenzie Bridge State Airport|McKenzie Bridge]]&lt;br /&gt;
* [[Mulino State Airport|Mulino]]&lt;br /&gt;
* [[Nehalem Bay State Airport|Nehalem Bay]]&lt;br /&gt;
* [[Oakridge State Airport|Oakridge]]&lt;br /&gt;
* [[Owyhee Reservoir State Airport|Owyhee Reservoir]]&lt;br /&gt;
* [[Pacific City State Airport|Pacific City]]&lt;br /&gt;
* [[Pinehurst State Airport|Pinehurst]]&lt;br /&gt;
* [[Prospect State Airport|Prospect]]&lt;br /&gt;
* [[Rome State Airport|Rome]]&lt;br /&gt;
* [[Santiam Junction State Airport|Santiam Junction]]&lt;br /&gt;
* [[Siletz Bay State Airport|Siletz Bay]]&lt;br /&gt;
* [[Toketee State Airport|Toketee]]&lt;br /&gt;
* [[Toledo State Airport|Toledo]]&lt;br /&gt;
* [[Wasco State Airport|Wasco]]&lt;br /&gt;
* [[Wakonda Beach State Airport|Wakonda Beach]]&lt;br /&gt;
&lt;br /&gt;
|group6= Other&lt;br /&gt;
|list6= &lt;br /&gt;
* [[Arlington Municipal Airport (Oregon)|Arlington]]&lt;br /&gt;
* [[Beaver Marsh Airport|Beaver Marsh]]&lt;br /&gt;
* [[Chehalem Airpark|Chehalem]]&lt;br /&gt;
* [[Country Squire Airpark|Country Squire]]&lt;br /&gt;
* [[Davis Airport (Oregon)|Davis]]&lt;br /&gt;
* [[Enterprise Municipal Airport (Oregon)|Enterprise]]&lt;br /&gt;
* [[George Felt Airport|George Felt]]&lt;br /&gt;
* [[Jantzen Beach Seaplane Base|Jantzen Beach Seaplane]]&lt;br /&gt;
* [[Lake Billy Chinook Airport|Lake Billy]]&lt;br /&gt;
* [[Lake Woahink Seaplane Base|Lake Woahink Seaplane]]&lt;br /&gt;
* [[Lenhardt Airpark|Lenhardt]]&lt;br /&gt;
* [[Memaloose Airport|Memaloose]]&lt;br /&gt;
* [[Malin Airport|Malin]]&lt;br /&gt;
* [[Monument Municipal Airport|Monument]]&lt;br /&gt;
* [[Paisley Airport|Paisley]]&lt;br /&gt;
* [[Powers Airport|Powers]]&lt;br /&gt;
* [[Sandy River Airport|Sandy River]]&lt;br /&gt;
* [[Silver Lake Forest Service Strip|Silver Lake]]&lt;br /&gt;
* [[Sisters Eagle Air Airport|Sisters Eagle]]&lt;br /&gt;
* [[Skyport Airport|Skyport]]&lt;br /&gt;
* [[Stark's Twin Oaks Airpark|Stark's Twin Oaks]]&lt;br /&gt;
* [[Swan Island Municipal Airport|Swan Island]]&lt;br /&gt;
* [[Miller Memorial Airpark|Miller]]&lt;br /&gt;
* [[Valley View Airport|Valley View]]&lt;br /&gt;
* [[Vernonia Municipal Airport|Vernonia]]&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Oregon navigational boxes]]&lt;br /&gt;
[[Category:Airports in Oregon| ]]&lt;br /&gt;
[[Category:United States airport templates|Oregon]]&lt;br /&gt;
[[Category:Transportation in Portland, Oregon| ]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428360</id>
		<title>Template:Cite IETF/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428360"/>
		<updated>2017-11-26T14:46:51Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: /* URL generation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&amp;lt;includeonly&amp;gt;{{Intricate template}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;!-- PLEASE ADD CATEGORIES WHERE INDICATED AT THE BOTTOM OF THIS PAGE --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is a template to cite [[Internet Engineering Task Force|IETF]] documents&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force&lt;br /&gt;
| rfc         = 4677&lt;br /&gt;
| fyi         = 17&lt;br /&gt;
| last1       = Hoffman&lt;br /&gt;
| first1      = Paul&lt;br /&gt;
| authorlink1 = Paul Hoffman (VPNC)&lt;br /&gt;
| last2       = Harris&lt;br /&gt;
| first2      = Susan&lt;br /&gt;
| year        = 2006&lt;br /&gt;
| month       = September&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC4677&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = A Primer On Internet and TCP/IP Tools&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Documentation&lt;br /&gt;
| section     = 4&lt;br /&gt;
| last1       = Kessler&lt;br /&gt;
| first1      = Gary C.&lt;br /&gt;
| last2       = Shepard&lt;br /&gt;
| first2      = Steven D.&lt;br /&gt;
| year        = 1994&lt;br /&gt;
| month       = December&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC1739&lt;br /&gt;
| ref         = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; including:&lt;br /&gt;
*[[Request for Comments]] (RFC)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Request for Comments (RFCs)&lt;br /&gt;
| section     = 4.1&lt;br /&gt;
| pages       = 36–38&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Standard]] (STD)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Internet Standards Process -- Revision 3&lt;br /&gt;
| rfc         = 2026&lt;br /&gt;
| bcp         = 9&lt;br /&gt;
| last        = Bradner&lt;br /&gt;
| first       = Scott O.&lt;br /&gt;
| authorlink  = Scott Bradner&lt;br /&gt;
| year        = 1996&lt;br /&gt;
| month       = October&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC2026&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Standards&lt;br /&gt;
| section     = 4.2&lt;br /&gt;
| pages       = 38–39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Best current practice]] (BCP)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Best Current Practices&lt;br /&gt;
| rfc         = 1818&lt;br /&gt;
| bcp         = 1&lt;br /&gt;
| last1       = Postel&lt;br /&gt;
| first1      = Jon&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2       = Rekhter&lt;br /&gt;
| first2      = Yakov&lt;br /&gt;
| authorlink2 = Yakov Rekhter&lt;br /&gt;
| last3       = Li&lt;br /&gt;
| first3      = Tony&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = August&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC1818&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[For Your Information]] (FYI)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = F.Y.I. on F.Y.I.: Introduction to the F.Y.I. Notes&lt;br /&gt;
| rfc         = 1150&lt;br /&gt;
| fyi         = 1&lt;br /&gt;
| last1       = Malkin&lt;br /&gt;
| first1      = Gary Scott&lt;br /&gt;
| last2       = Reynolds&lt;br /&gt;
| first2      = Joyce K.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year        = 1990&lt;br /&gt;
| month       = March&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC1150&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = For Your Information Documents&lt;br /&gt;
| section     = 4.3&lt;br /&gt;
| page        = 39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Draft]] (I-D)&lt;br /&gt;
*[[Internet Experiment Note]] (IEN)&lt;br /&gt;
*[[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = RARE Technical Reports&lt;br /&gt;
| section     = 4.4&lt;br /&gt;
| page        = 40&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{TOC limit|3}}&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
'''''Note''''': All parameter names '''must''' be in [[lowercase]].&lt;br /&gt;
&lt;br /&gt;
Copy a blank version to use. Remember to use the &amp;quot;|&amp;quot; (pipe) character between each parameter. Please delete any unused parameters to avoid clutter in the edit window.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Full version (copy and paste text below and delete parameters you don't need)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |std= |bcp= |fyi= |draft= |ien= |rtr= |sectionname= |section= |sections= |appendix= |referenceid= |page= |pages= |last1= |first1= |authorlink1= |last2= |first2= |authorlink2= |authormask= |coauthors= |editor1-last= |editor1-first= |editor1-link= |others= |date= |year= |month= |origyear= |publisher=[[Internet Engineering Task Force|IETF]] |location= |language= |format= |accessdate= |url= |section-url= |page-url= |autolink= |id= |idanchor= |idlink= |idlinktype= |doi= |doi_brokendate= |issn= |archiveurl= |archivedate= |quote= |nopp= |nosec= |ref= |laysummary= |laydate= |separator= |postscript= |lastauthoramp= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Most commonly used parameters (use this and you won't have to delete as much)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |sectionname= |section= |page= |last= |first= |authorlink= |coauthors= |year= |month= |publisher=[[Internet Engineering Task Force|IETF]] |accessdate= |doi= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 1&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 2&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&amp;lt;pre&amp;gt;{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
| doi = 10.17487/RFC0854&lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
| doi = 10.17487/RFC0854&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Vertical list !! Prerequisites !! Brief instructions&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title       = &lt;br /&gt;
| rfc         = &lt;br /&gt;
| std         = &lt;br /&gt;
| bcp         = &lt;br /&gt;
| fyi         = &lt;br /&gt;
| draft       = &lt;br /&gt;
| ien         = &lt;br /&gt;
| rtr         = &lt;br /&gt;
| sectionname = &lt;br /&gt;
| section     = &lt;br /&gt;
| sections    = &lt;br /&gt;
| appendix    = &lt;br /&gt;
| referenceid = &lt;br /&gt;
| page        = &lt;br /&gt;
| pages       = &lt;br /&gt;
| last        = &lt;br /&gt;
| first       = &lt;br /&gt;
| authorlink  = &lt;br /&gt;
| authormask  = &lt;br /&gt;
| coauthors   = &lt;br /&gt;
| lastN       = &lt;br /&gt;
| firstN      = &lt;br /&gt;
| authorN-link = &lt;br /&gt;
| editor      = &lt;br /&gt;
| editorN     = &lt;br /&gt;
| editorN-last = &lt;br /&gt;
| editorN-first = &lt;br /&gt;
| editor-link = &lt;br /&gt;
| editorN-link = &lt;br /&gt;
| others      = &lt;br /&gt;
| date        = &lt;br /&gt;
| year        = &lt;br /&gt;
| month       = &lt;br /&gt;
| origyear    = &lt;br /&gt;
| publisher   = &lt;br /&gt;
| location    = &lt;br /&gt;
| language    = &lt;br /&gt;
| format      = &lt;br /&gt;
| accessdate  = &lt;br /&gt;
| url         = &lt;br /&gt;
| section-url = &lt;br /&gt;
| page-url    = &lt;br /&gt;
| autolink    = &lt;br /&gt;
| id          = &lt;br /&gt;
| idanchor    = &lt;br /&gt;
| idlink      = &lt;br /&gt;
| idlinktype  = &lt;br /&gt;
| doi         = &lt;br /&gt;
| doi_brokendate = &lt;br /&gt;
| issn        = &lt;br /&gt;
| archiveurl  = &lt;br /&gt;
| archivedate = &lt;br /&gt;
| quote       = &lt;br /&gt;
| nopp        = &lt;br /&gt;
| nosec       = &lt;br /&gt;
| ref         = &lt;br /&gt;
| laysummary  = &lt;br /&gt;
| laydate     = &lt;br /&gt;
| separator   = &lt;br /&gt;
| postscript  = &lt;br /&gt;
| lastauthoramp = &lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
lastN&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
editorN-last&lt;br /&gt;
editor or editor-last&lt;br /&gt;
editorN or editorN-last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
year&lt;br /&gt;
year or date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
publisher&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
sectionname&lt;br /&gt;
sectionname&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
idanchor or idlink&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
doi&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
url, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
archiveurl&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
page or pages&lt;br /&gt;
section, sections, or appendix&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
laysummary&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
coauthors or &amp;gt;1 lastN&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) RFC number; 4677&lt;br /&gt;
(no wikilink) STD number&lt;br /&gt;
(no wikilink) BCP number&lt;br /&gt;
(no wikilink) FYI number; 17&lt;br /&gt;
(no wikilink) I-D (internet draft) name&lt;br /&gt;
(no wikilink) IEN number&lt;br /&gt;
(no wikilink) RTR number&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) section number; 3.3&lt;br /&gt;
(no wikilink) section range (can be used together with the section parameter)&lt;br /&gt;
(no wikilink) appendix number; A.1&lt;br /&gt;
(no wikilink) reference id&lt;br /&gt;
(no wikilink) page number&lt;br /&gt;
(no wikilink) page range (can be used together with the page parameter)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink)&lt;br /&gt;
(no wikilink)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
alternative to first2, last2...first9, last9&lt;br /&gt;
(no wikilink) N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
preferred (no wikilink) This is the preferred parameter with its alternates listed below.&lt;br /&gt;
alternative to date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
should be &amp;lt;nowiki&amp;gt;[[Internet Engineering Task Force|IETF]]&amp;lt;/nowiki&amp;gt; for IETF documents.&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
hides automatic 'p.' or 'pp.'&lt;br /&gt;
hides automatic 'sec.'&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 7159&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 11&lt;br /&gt;
| author      = T. Bray&lt;br /&gt;
| authorlink  = Tim Bray&lt;br /&gt;
| date        = March 2014&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| doi         = 10.17487/RFC7159&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 7159&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 11&lt;br /&gt;
| author      = T. Bray&lt;br /&gt;
| authorlink  = Tim Bray&lt;br /&gt;
| date        = March 2014&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| doi         = 10.17487/RFC7159&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| doi         = 10.17487/RFC2616&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| doi         = 10.17487/RFC2616&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = August 3, 2008&lt;br /&gt;
| doi         = 10.17487/RFC1034&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = August 3, 2008&lt;br /&gt;
| doi         = 10.17487/RFC1034&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
Nested parameters rely on their parent parameters:&lt;br /&gt;
*''parent''&lt;br /&gt;
*OR: ''parent2''—may be used instead of ''parent''&lt;br /&gt;
**''child''—may be used with ''parent'' (and is ignored if ''parent'' is not used)&lt;br /&gt;
**OR: ''child2''—may be used instead of ''child'' (and is ignored if ''parent2'' is not used)&lt;br /&gt;
&lt;br /&gt;
:Where aliases are listed, only one of the parameters may be defined; if multiple aliased parameters are defined, then only one will show.&lt;br /&gt;
&lt;br /&gt;
This template embeds [[COinS]] metadata in the HTML output, allowing [[reference management software]] to retrieve bibliographic metadata. See: [[Wikipedia:COinS]]. As a general rule, only one data item per parameter. Do not include explanatory or alternate text:&lt;br /&gt;
* Use {{xt|{{para|date|27 September 2007}}}} not {{!xt|{{para|date|27 September 2007 (print version 25 September)}}}}&lt;br /&gt;
&lt;br /&gt;
Use of templates within the citation template, is discouraged because many of these templates will add extraneous HTML or CSS that will be rendered in the metadata. Also, HTML entities (e.g. &amp;lt;code&amp;gt;&amp;amp;amp;nbsp;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;amp;amp;ndash;&amp;lt;/code&amp;gt;) should not be used in parameters that contribute to the metadata.  Do not include Wiki markup &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (italic font) or &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;'''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (bold font) because these markup characters will contaminate the metadata.&lt;br /&gt;
&lt;br /&gt;
{{hidden begin |title=COinS metadata is created for these parameters}}&lt;br /&gt;
*{{para|periodical}}, {{para|journal}}, {{para|newspaper}}, {{para|magazine}}, {{para|work}}, {{para|website}}, {{para|encyclopedia}}, {{para|encyclopaedia}}, {{para|dictionary}}&lt;br /&gt;
*{{para|chapter}}, {{para|contribution}}, {{para|entry}}, {{para|article}}, {{para|section}}&lt;br /&gt;
*{{para|title}}&lt;br /&gt;
*{{para|publicationplace}}, {{para|publication-place}}, {{para|place}}, {{para|location}}&lt;br /&gt;
*{{para|date}}, {{para|year}}, {{para|publicationdate}}, {{para|publication-date}}&lt;br /&gt;
*{{para|series}}, {{para|version}}&lt;br /&gt;
*{{para|volume}}&lt;br /&gt;
*{{para|issue}}, {{para|number}}&lt;br /&gt;
*{{para|page}}, {{para|pages}}, {{para|at}}&lt;br /&gt;
*{{para|edition}}&lt;br /&gt;
*{{para|publisher}}, {{para|distributor}}, {{para|institution}}&lt;br /&gt;
*{{para|url}}&lt;br /&gt;
*{{para|chapterurl}}, {{para|chapter-url}}, {{para|contributionurl}}, {{para|contribution-url}}, {{para|sectionurl}}, {{para|section-url}}&lt;br /&gt;
*{{para|author#}}, {{para|Author#}}, {{para|authors#}}, {{para|author#-last}}, {{para|author-last#}}, {{para|last#}}, {{para|surname#}}&lt;br /&gt;
*{{para|&amp;quot;author#-first}}, {{para|author-first#}}, {{para|first#}}, {{para|given#}}&lt;br /&gt;
*any of the named identifiers ({{para|isbn}}, {{para|issn}}, {{para|doi}}, {{para|pmc}}, etc.)&lt;br /&gt;
{{hidden end}}&lt;br /&gt;
&lt;br /&gt;
By default, sets of fields are terminated with a period (.). {{#ifeq: {{{lua|}}|yes||This can be an issue when the last field uses an abbreviation or initial that ends with a period, as then two periods will display (..). The only solution is to not include the last period in the value for the set of fields.}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
&lt;br /&gt;
====Authors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last''': Surname of author. Do not wikilink—use '''author-link''' instead. For corporate authors, simply use '''last''' to include the same format as the source. Aliases: '''last1''', '''author''', '''authors''', '''author1'''{{#if:|, }}.&lt;br /&gt;
** '''first''': Given or first names of author, including title(s); for example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''author-link''' instead. Aliases: '''first1'''. Requires '''last'''; first name will not display if '''last''' is empty. &lt;br /&gt;
{{#if: |&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''', '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' where ''n'' is any consecutive number for an unlimited number of authors (each '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' requires a corresponding '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''). See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.&lt;br /&gt;
|&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last9''', '''first9''' for up to nine authors. By default, if nine authors are defined, only eight will show and &amp;quot;et al.&amp;quot; will show in place of the last author. See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author9'''.}}&lt;br /&gt;
:* '''author-link''': Title of existing Wikipedia article about the author—not the author's website; do not wikilink. Aliases: '''authorlink1''', '''authorlink''', '''author1-link''', '''author1link'''.&lt;br /&gt;
{{#if: |&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''. Aliases: '''author1link''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;link'''.&lt;br /&gt;
|&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link9'''. Aliases: '''author1link''' through '''author9link'''.}}&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s){{#if: |&lt;br /&gt;
* {{xtd|'''coauthors'''}}: (deprecated) &amp;lt;s&amp;gt;Names of coauthors. Requires '''author''', '''authors''', or '''last''n'''''&amp;lt;/s&amp;gt; Include coauthors in '''author''' or '''authors''' or use separate '''author''n''''' or '''last''n'''''/'''first''n''''' to list coauthors.}}{{#if: yes|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_others&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''others''': To record other contributors to the work, including illustrators and translators. For the parameter value, write ''Illustrated by John Smith'' or ''Translated by John Smith''.}}&lt;br /&gt;
:When using {{sfnote|lc=y}} or {{paren|lc=y}} styles with templates, do not use multiple names in one field or else the anchor will not match the inline link.&lt;br /&gt;
&lt;br /&gt;
====Title====&lt;br /&gt;
* '''title''': Title of the document; displays in italics. If {{em|both}} '''title''' and '''sectionname''' are omitted, then the template will attempt to auto-generate a title using the first of the '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''', '''rtr''' or '''id''' document identifier parameters, in that order.&lt;br /&gt;
:Titles containing certain characters will display and link incorrectly unless those characters are encoded.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left: 5em&amp;quot;&lt;br /&gt;
! newline !! [ !! ] !! &amp;amp;#124;&lt;br /&gt;
|-&lt;br /&gt;
| space || &amp;amp;amp;#91; || &amp;amp;amp;#93; || &amp;amp;amp;#124;&lt;br /&gt;
|}&lt;br /&gt;
* '''sectionname''': The section name or section title of the document, written in full; displays before '''title''' and enclosed in quotes.&lt;br /&gt;
* '''language''': The language the source is written in, if not English. Displays in parentheses with &amp;quot;in&amp;quot; before the language name. Use the full language name{{#if:|&amp;amp;#32;or [[List of ISO 639-1 codes|ISO 639-1]] code; use of language names or language codes recognized by Wikimedia adds the page to the appropriate subcategory of {{cl|CS1 foreign language sources}}}}; do not use templates or wikilinks.&lt;br /&gt;
&lt;br /&gt;
====Date====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_date&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''date''': Date of source being referenced. Can be full date (day, month, and year) or partial date (month and year{{#if:|, season and year}}, or year). Use same format as other publication dates in the citations.{{r|date|group=date}} Required when '''year''' is used to disambiguate {{tlx|sfn}} links to multiple-work citations by the same author in the same year.{{sup|[[Template:Sfn#More_than_one_work_in_a_year|[more]]]}} Do not wikilink. Displays after the authors and is enclosed in parentheses. If there is no author, then displays after publisher.{{#if:|&amp;amp;#32;Aliases: }} {{#if:|For acceptable date formats, see [[Help:Citation Style 1#Dates]].}}&lt;br /&gt;
{{#if:|:For approximate year, precede with &amp;quot;&amp;lt;code&amp;gt;c. &amp;lt;/code&amp;gt;&amp;quot;, like this: {{para|date|c. 1900}}; for no date, add as {{para|date|n.d.}} }}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_year&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR:&lt;br /&gt;
** '''year''': Year of source being referenced ...&lt;br /&gt;
**: Is the template {{tl|cite episode}} or {{tl|cite serial}}?&lt;br /&gt;
&lt;br /&gt;
::::NO: Does the template use {{para|ref|harv}}? (answer YES if the template is {{tlx|citation}})&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES:  Is the date format in {{para|date}} YYYY-MM-DD?&lt;br /&gt;
::::::NO: use {{para|date}}.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
::::YES: Does the citation use {{para|ref|harv}}?&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES: Is the date format in {{para|date}} DD Month YYYY or Month YYYY or YYYY or Month DD, YYYY or YYYY-MM-DD?&lt;br /&gt;
::::::NO: {{para|year}} ''required''.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_origyear&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''orig-year''': Original publication year; displays after the date or year. For clarity, please supply specifics. For example: {{para|orig-year|First published 1859}} or {{para|orig-year|Composed 1904}}.{{#if:|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_began&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR: '''began''': Full date the first part of the program or episode aired.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ended&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;AND: '''ended''': Full date the last part of the program or episode aired.}}{{#if:|&amp;amp;#32;Aliases:}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Publication dates in references within an article should all have the same format. This may be a different format from that used for archive and access dates. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
====Publisher====&lt;br /&gt;
* '''publisher''': Name of publisher; may be wikilinked if relevant. Not normally included for periodicals. Corporate designations such as &amp;quot;Ltd&amp;quot;, &amp;quot;Inc&amp;quot; or &amp;quot;GmbH&amp;quot; are not usually included. Displays after '''title'''.&lt;br /&gt;
:Should normally be set to [[Internet Engineering Task Force|IETF]] for RFC, STD, BCP, FYI, I-D (internet draft), IEN, and RTR documents.&lt;br /&gt;
:Note: There are reasons this can't just be the default; see [[Template talk:Cite IETF#Make publisher always IETF?]]&lt;br /&gt;
* '''location''': Geographical place of publication; generally not wikilinked; omit when the name of the work includes the location (examples: ''The Boston Globe'', ''The Times of India''). Displays preceding '''publisher'''.&lt;br /&gt;
&amp;lt;!--* '''publication-date''': Date of publication when different from the date the work was written. Displays only if '''year''' or '''date''' are defined and only if different, else '''publication-date''' is used and displayed as '''date'''. Use the same format as other dates in the article; do not wikilink. Follows '''publisher'''; preceded by &amp;quot;published&amp;quot; and enclosed in parenthesis.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====In-source locations====&lt;br /&gt;
* '''page''': Page in the source that supports the content. Displays preceded with {{code|p.}} unless {{para|nopp|y}}. Also used to create an anchor link for the document's URL. If either '''section''' or '''appendix''' is also given, the anchor will link to the section or appendix instead of the page. Can also be used in combination with '''pages''' to link to the first page in the given page range if '''section''' and '''appendix''' are not specified.&lt;br /&gt;
* OR: '''pages''': Pages in the source that supports the content; separate page ranges with an en dash (–); separate non-sequential pages with a comma (,); do not use to indicate the total number of pages in the source. Displays preceded with {{code|pp.}} unless {{para|nopp|y}}.&lt;br /&gt;
** '''nopp''': Set to &amp;lt;var&amp;gt;y&amp;lt;/var&amp;gt; to suppress the {{code|p.}} or {{code|pp.}} notations where this is inappropriate; for example, where {{para|page|Front cover}}.&lt;br /&gt;
* '''section''': Section number of the document. {{para|section|4.3.1}} produces &amp;quot;sec. 4.3.1&amp;quot; Also used to create an anchor link for the document's URL. Can also be used in combination with '''sections''' to link to the first section in the given section range.&lt;br /&gt;
* '''sections''': Section range of the document. {{para|sections|4.3-4.7}} produces &amp;quot;sec. 4.3-4.7&amp;quot;&lt;br /&gt;
* OR: '''appendix''': Appendix number of the document. {{para|appendix|A.1}} produces &amp;quot;sec. A.1&amp;quot; Also used to create an anchor link for the document's URL.&lt;br /&gt;
* OR: '''referenceid''': Reference id for the document. Used to create an anchor link for the document's URL.&lt;br /&gt;
* '''nosec''': Using '''section''', ''''sections''', or '''appendix''' automatically places the sec. notation. Se {{para|nosec|y}} to hide the sec. notation.&lt;br /&gt;
&lt;br /&gt;
====URL====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_url&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''url''': URL of an online location where the text of the publication can be found. Cannot be used if '''title''' is wikilinked. If applicable, the link may point to the specific page(s) referenced. Remove spurious tracking parameters from URLs, e.g. &amp;lt;code&amp;gt;#ixzz2rBr3aO94&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;. Do not link to any commercial booksellers, such as Amazon.com. See: [[WP:PAGELINKS]].&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_accessdate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''access-date''': Full date when the contents pointed to by '''url''' was last verified to support the text in the article; do not wikilink; requires '''url'''; use the same format as other access and archive dates in the citations.{{r|date|group=date}}  ''Not required for linked documents that do not change.'' For example, '''access-date''' is not required for links to copies of published research papers accessed via DOI or a published book, but is required for links to news articles on commercial sites (these are changed from time to time, even if also published in a physical medium). Note that '''access-date''' is the date that the URL was checked to not only be working, but to support the assertion being cited (which the current version of the page may not do). Can be [[Help:Citation Style 1/accessdate|hidden or styled]] by registered editors. Alias: '''accessdate'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_archiveurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-url''': The URL of an [[Web archiving|archived]] copy of a web page, if or in case the url becomes unavailable. Typically used to refer to services like [[WebCite]] (see: [[Wikipedia:Using WebCite]]) and [[Internet Archive]] (see: [[Wikipedia:Using the Wayback Machine]]); requires '''archive-date''' and '''url'''. Alias: '''archiveurl'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_archivedate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-date''': Date when the original URL was archived; preceded by default text &amp;quot;archived from the original on&amp;quot;. Use the same format as other access and archive dates in the citations. This does not necessarily have to be the same format that was used for citing publication dates.{{r|date|group=date}} Do not wikilink. Alias: '''archivedate'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_deadurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''dead-url''': When the URL is still live, but pre-emptively archived, then set {{para|dead-url|no}}. This changes the display order with the title retaining the original link and the archive linked at the end. Alias: '''deadurl'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_template doc demo&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''template-doc-demo''': The archive parameters will be error checked to ensure that all the required parameters are included, or else {{tl|citation error}} is invoked. With errors, main, help and template pages are placed into one of the subcategories of [[:Category:Articles with incorrect citation syntax]]. Set {{para|template-doc-demo|true}} to disable categorization; mainly used for documentation where the error is demonstrated.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''format''': Format of the work referred to by '''url'''; for example: PDF, DOC, or XLS; displayed in parentheses after '''title'''. HTML is implied and should not be specified. Does not change the [[Help:External link icons|external link icon]]. Note: External link icons do not include [[Wikipedia:ALT|alt text]]; thus, they do not add format information for the visually impaired.&lt;br /&gt;
{{MediaWiki URL rules}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Access-date and archive-date in references should all have the same format – either the format used for publication dates, or YYYY-MM-DD. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
* '''section-url''': URL to an individual section of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''page-url''': URL to an individual page of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''autolink''': {{para|autolink|&amp;lt;var&amp;gt;yes&amp;lt;/var&amp;gt;}} or {{para|autolink|&amp;lt;var&amp;gt;no&amp;lt;/var&amp;gt;}} Automatically generate a link to ietf.org for documents specified with {{para|rfc}}, {{para|std}}, {{para|bcp}}, {{para|fyi}}, {{para|draft}}, {{para|ien}}, or {{para|rtr}}. (enabled by default)&lt;br /&gt;
&lt;br /&gt;
====Anchor====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ref&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''ref''': ID for anchor. By default, no anchor is generated. The ordinary nonempty value {{para|ref|&amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;}} generates an anchor with the given &amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;; such a linkable reference can be made the target of [[Wikipedia:Citing sources/Further considerations#Wikilinks to full references|wikilinks to full references]], especially useful in short citations like [[Wikipedia:Citing sources#Shortened footnotes|shortened notes]] and [[Wikipedia:Parenthetical referencing|parenthetical referencing]]. The special value {{para|ref|harv}} generates an anchor suitable for the {{tl|harv}} template. See: [[Template:Citation/doc#Anchors for Harvard referencing templates|Anchors for Harvard referencing templates]]. The special value {{para|ref|ietf}} generates an anchor suitable for use with this template's '''idanchor''' parameter.&lt;br /&gt;
&lt;br /&gt;
====Identifiers====&lt;br /&gt;
* '''rfc''': Number of the [[Request for Comments]] (RFC) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''std''': Number of the [[Internet Standard]] (STD) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''bcp''': Number of the [[Best Current Practice]] (BCP) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''fyi''': Number of the [[For Your Information]] (FYI) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''draft''': Name of the [[Internet Draft]] (I-D) document, including the leading draft-. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''ien''': Number of the [[Internet Experiment Note]] (IEN) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''rtr''': Number of the [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''id''': A [[unique identifier]] for the document, used if none of the above are applicable. Overrides automatically generated document identifiers—'''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''—and should not be specified unless absolutely necessary. If used, you also need to specify the kind of identifier you are using. Don't wikilink, use '''idlink''' instead.&lt;br /&gt;
* '''idanchor''': Anchor link target. By default, no anchor link is generated. The special value {{para|idanchor|ietf}} generates an anchor link suitable for use with this template's '''ref''' parameter. Requires one of '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' fields to be present for the anchor link text.&lt;br /&gt;
* OR: '''idlink''': Internal document anchor or title of a Wikipedia article to link via the document identifier. Article should already exist. Must not be wikilinked itself. Do not use this on its own, but along with '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''idlinktype''': One of the values: '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' can be given to '''idlinktype''' to force the template to use the specified document identifier as the link text for '''idanchor''' or '''idlink'''. Do not use this on its own, but along with '''idanchor''' or '''idlink''' and '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''doi''': A [[digital object identifier]] for the document, such as ''10.1038/news070508-7''. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
** '''doi_brokendate''': The date that the DOI was determined to be broken&lt;br /&gt;
* '''issn''': [[International Standard Serial Number]] for the document; 8 characters; may be split into two groups of four using a hyphen. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
&lt;br /&gt;
====Quote====&lt;br /&gt;
* '''quote''': Relevant text quoted from the source. Displays enclosed in quotes.{{#if: ||&amp;amp;#32;When supplied, the citation terminator (a period by default) is suppressed, so the quote needs to include terminating punctuation.}}&lt;br /&gt;
&lt;br /&gt;
====Editors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''editor-last''': Surname of editor. Do not wikilink—use '''editor-link''' instead. Where the surname is usually written first—as in Chinese—or for corporate authors, simply use '''editor-last''' to include the same format as the source. Aliases: '''editor1-last''', '''editor''', '''editors'''{{#if: |, '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.|.}}&lt;br /&gt;
** '''editor-first''': Given or first names of editor, including title(s); example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''editor-link''' instead.  Aliases: '''editor1-first'''.&lt;br /&gt;
**OR: for multiple editors, use '''editor1-last''', '''editor1-first'''  through {{#if: |'''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-last''', '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-first'''|'''editor4-last''', '''editor4-first''' for up to four editors}}.&lt;br /&gt;
:* '''editor-link''': Title of existing Wikipedia article about the editor—not the editor's website; do not wikilink. Aliases: '''editor1-link'''.&lt;br /&gt;
:*OR: for multiple editors, use {{#if: |'''editor1-link''' through '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-link'''|'''editor1-link''' through '''editor4-link'''}}.&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s)&lt;br /&gt;
:Display:&lt;br /&gt;
::If authors: Authors are first, followed by {{#if: |the included work, then &amp;quot;In&amp;quot; and the editors|the editors and the included work}}, then the main work.&lt;br /&gt;
::If no authors: Editors appear before the included work; a single editor is followed by &amp;quot;ed.&amp;quot;; multiple editors are followed by &amp;quot;eds.&amp;quot;{{#if: |{{;}} exactly four editors will show three editors followed by &amp;quot;et al., eds.&amp;quot; &amp;lt;!-- ERROR MESSAGE IS HIDDEN BY DEFAULT --&amp;gt; &amp;lt;!-- along with an error message --&amp;gt;unless '''display-editors''' is used.|{{;}} more than three editors will be followed by &amp;quot;et al., eds.&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
====Laysummary====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lay&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{#if: |'''lay-url'''|'''laysummary'''}}: URL link to a non-technical summary or review of the source; the URL title is set to &amp;quot;Lay summary&amp;quot;. {{#if: |Aliases: '''lay-summary''', '''laysummary'''.|}}&lt;br /&gt;
** '''lay-source''': Name of the source of the laysummary. Displays in italics and preceded by an endash. Alias: '''laysource'''.&lt;br /&gt;
** '''lay-date''': Date of the summary. Displays in parentheses. Alias: '''laydate'''.&lt;br /&gt;
&lt;br /&gt;
====Display options====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_mode&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''mode''': Sets element separator, default terminal punctuation, and certain capitalization according to the value provided.  For {{para|mode|cs1}}, element separator is a semicolon (&amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt;); terminal punctuation is a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); where appropriate, initial letters of certain words are capitalized ('Retrieved...').  For {{para|mode|cs2}}, element separator is a comma (&amp;lt;code&amp;gt;,&amp;lt;/code&amp;gt;); terminal punctuation is omitted; where appropriate, initial letters of certain words are not capitalized ('retrieved...'). To override default terminal punctuation use '''postscript'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-mask&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''author-mask''': Replaces the name of the first author with [[dash#Em dash|em dashes]] or text. Set '''author-mask''' to a numeric value ''n'' to set the dash ''n'' em spaces wide; set '''author-mask''' to a text value to display the text without a trailing author separator; for example, &amp;quot;with&amp;quot;. You must still include the values for all authors for metadata purposes. Primarily intended for use with bibliographies or bibliography styles where multiple works by a single author are listed sequentially such as {{sfnote}}. Do not use in a list generated by {{tlx|reflist}}, {{tag|references|s}} or similar as there is no control of the order in which references are displayed.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-name-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-name-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between last and first names; defaults to a comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between authors; defaults to a semicolon and space (&amp;lt;code&amp;gt;; &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-format'''}}: (deprecated) Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-authors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayauthors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-authors''': {{#if: |Controls the number of author names that are displayed when a citation is published. To change the displayed number of authors, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, all authors are displayed. Aliases: '''displayauthors'''.|Controls the number of author names that are displayed when a citation is published. To control the displayed number of author names, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, the only the first eight cited authors are displayed; subsequent authors beyond eight are represented in the published citation by &amp;quot;et al.&amp;quot; If a citation contains nine author names and one wishes all nine author names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-authors|9}}. Aliases: '''displayauthors'''.}}&lt;br /&gt;
{{#if: |&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayeditors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-editors''': Controls the number of editor names that are displayed when a citation is published. To change the displayed number of editors, set '''display-editors''' to the desired number. For example, {{para|display-editors|2}} will display only the first two editors in a citation. By default, all editors are displayed except when there are four editors, then the editor list in the citation is truncated to three editors, followed by &amp;quot;et al.&amp;quot; This exception mimics the older version of the template for compatibility. If a citation contains four editor names and one wishes all four editor names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-editors|4}}. Aliases: '''displayeditors'''.}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lastauthoramp&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last-author-amp''': Switches the separator between the last two names of the author list to space ampersand space (&amp;lt;code&amp;gt; &amp;amp; &amp;lt;/code&amp;gt;) when set to any value. Example: {{para|last-author-amp|yes}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_postscript&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''postscript''': Controls the closing punctuation for a citation; defaults to {{#if: |none|a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); {{#if: |for no terminating punctuation, specify {{para|postscript|none}} – leaving {{para|postscript}} empty is the same as omitting it, but is ambiguous|if the parameter is present, but blank, no terminating punctuation will be used}}}}. Ignored if '''quote''' is defined.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the punctuation used to separate lists of authors, editors, etc. Defaults to a {{#if: |comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;)|period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;)}};  {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}} }}&amp;lt;/s&amp;gt; Use '''mode'''.&lt;br /&gt;
&lt;br /&gt;
==Citation styles==&lt;br /&gt;
Established citation styles for coauthors:&lt;br /&gt;
&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/mla/mla.htm MLA style]: Last, First and First Last. &amp;quot;If there are more than three authors, you may list only the first author followed by the phrase ''et al''.&amp;quot;&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/apa/apa.htm APA style]: Last, F. &amp;amp; Last, F.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/citchi.htm Chicago Manual of Style]: Last, First, and First Last.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/cittur.htm Turabian]: same as Chicago Reference List, above.&lt;br /&gt;
*[http://www.library.uq.edu.au/training/citation/harvard.html Harvard]: Last, F., Last, F. &amp;amp; Last, F.&lt;br /&gt;
&lt;br /&gt;
==Technical notes==&lt;br /&gt;
&lt;br /&gt;
===Regression testing===&lt;br /&gt;
[[Regression testing|Regression tests]] are available here:&lt;br /&gt;
*{{tl|Cite IETF/regression tests}}&lt;br /&gt;
&lt;br /&gt;
===Subtemplates===&lt;br /&gt;
{{tl|Cite IETF}} uses the following subtemplates:&lt;br /&gt;
*{{tl|Cite IETF/doctypes}}&lt;br /&gt;
*{{tl|Cite IETF/makelink}}&lt;br /&gt;
*{{tl|Cite IETF/refanchor}}&lt;br /&gt;
&lt;br /&gt;
===URL generation===&lt;br /&gt;
HTML versions of the [[Internet Engineering Task Force|IETF]] documents are created with the Rfcmarkup tool from Henrik Levkowetz.&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/&lt;br /&gt;
| title       = Rfcmarkup Tool&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = March 7, 2017&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/rfcmarkup-1.121.tgz&lt;br /&gt;
| title       = rfcmarkup-1.121.tgz (29.7 KB)&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = July 13, 2016&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Request for Comments]] (RFC), [[Best Current Practice]] (BCP), and [[Internet Draft]] (I-D) documents which have been processed by the Rfcmarkup tool are cached by &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;tools.ietf.org/html/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/&lt;br /&gt;
| title       = IETF Documents&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/code.txt&lt;br /&gt;
| title       = HTTP 404 handler for a directory of htmlized documents&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| date        = October 14, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; and are linked via:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/rfc&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/bcp&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/draft-&amp;lt;/nowiki&amp;gt;&amp;lt;draft name&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Standard]] (STD) and [[For Your Information]] (FYI) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;doc=&amp;lt;/code&amp;gt; parameter:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=std&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=fyi&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Experiment Note]] (IEN) and [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;url=&amp;lt;/code&amp;gt; parameter and a path to the document:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/ien/ien&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/museum/RAREreports/rtr&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===URL anchor generation===&lt;br /&gt;
Anchors are generated for the URL using four parameters:&lt;br /&gt;
:{{para|section|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#section-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|appendix|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#appendix-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|referenceid|&amp;lt;var&amp;gt;id&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#ref-&amp;lt;var&amp;gt;&amp;lt;id&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|page|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#page-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
The template will give priority to the first of the parameters: {{para|section}}, {{para|appendix}}, {{para|referenceid}}, or {{para|page}} in this order and create an anchor using the first matching parameter.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
==Further reading==&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Internet Official Protocol Standards&lt;br /&gt;
| rfc         = 5000&lt;br /&gt;
| std         = 1&lt;br /&gt;
| year        = 2008&lt;br /&gt;
| month       = May&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC5000&lt;br /&gt;
}}&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Not All RFCs are Standards&lt;br /&gt;
| rfc         = 1796&lt;br /&gt;
| last1       = Huitema&lt;br /&gt;
| first1      = Christian&lt;br /&gt;
| last2       = Postel&lt;br /&gt;
| first2      = Jon&lt;br /&gt;
| authorlink2 = Jon Postel&lt;br /&gt;
| last3       = Crocker&lt;br /&gt;
| first3      = Steve&lt;br /&gt;
| authorlink3 = Steve Crocker&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = April&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC1796&lt;br /&gt;
}}&lt;br /&gt;
*{{cite web&lt;br /&gt;
| url         = http://www.livinginternet.com/i/ia_rfc_ref.htm&lt;br /&gt;
| title       = Related RFC's, BCP, FYI, IEN, RTR, STD&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Stewart&lt;br /&gt;
| first       = William&lt;br /&gt;
| publisher   = LivingInternet.com&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Citation Style 1}}&lt;br /&gt;
{{Wikipedia referencing}}&lt;br /&gt;
{{UF-COinS}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox |&lt;br /&gt;
| &amp;lt;!-- CATEGORIES BELOW THIS LINE, PLEASE: --&amp;gt;&lt;br /&gt;
[[Category:Citation Style 1 specific-source templates]]&lt;br /&gt;
[[Category:Specific-source templates]]&lt;br /&gt;
[[Category:Templates generating COinS]]&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428359</id>
		<title>Template:Cite IETF/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428359"/>
		<updated>2017-11-26T14:26:16Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: /* Further reading */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&amp;lt;includeonly&amp;gt;{{Intricate template}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;!-- PLEASE ADD CATEGORIES WHERE INDICATED AT THE BOTTOM OF THIS PAGE --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is a template to cite [[Internet Engineering Task Force|IETF]] documents&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force&lt;br /&gt;
| rfc         = 4677&lt;br /&gt;
| fyi         = 17&lt;br /&gt;
| last1       = Hoffman&lt;br /&gt;
| first1      = Paul&lt;br /&gt;
| authorlink1 = Paul Hoffman (VPNC)&lt;br /&gt;
| last2       = Harris&lt;br /&gt;
| first2      = Susan&lt;br /&gt;
| year        = 2006&lt;br /&gt;
| month       = September&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC4677&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = A Primer On Internet and TCP/IP Tools&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Documentation&lt;br /&gt;
| section     = 4&lt;br /&gt;
| last1       = Kessler&lt;br /&gt;
| first1      = Gary C.&lt;br /&gt;
| last2       = Shepard&lt;br /&gt;
| first2      = Steven D.&lt;br /&gt;
| year        = 1994&lt;br /&gt;
| month       = December&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC1739&lt;br /&gt;
| ref         = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; including:&lt;br /&gt;
*[[Request for Comments]] (RFC)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Request for Comments (RFCs)&lt;br /&gt;
| section     = 4.1&lt;br /&gt;
| pages       = 36–38&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Standard]] (STD)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Internet Standards Process -- Revision 3&lt;br /&gt;
| rfc         = 2026&lt;br /&gt;
| bcp         = 9&lt;br /&gt;
| last        = Bradner&lt;br /&gt;
| first       = Scott O.&lt;br /&gt;
| authorlink  = Scott Bradner&lt;br /&gt;
| year        = 1996&lt;br /&gt;
| month       = October&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC2026&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Standards&lt;br /&gt;
| section     = 4.2&lt;br /&gt;
| pages       = 38–39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Best current practice]] (BCP)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Best Current Practices&lt;br /&gt;
| rfc         = 1818&lt;br /&gt;
| bcp         = 1&lt;br /&gt;
| last1       = Postel&lt;br /&gt;
| first1      = Jon&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2       = Rekhter&lt;br /&gt;
| first2      = Yakov&lt;br /&gt;
| authorlink2 = Yakov Rekhter&lt;br /&gt;
| last3       = Li&lt;br /&gt;
| first3      = Tony&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = August&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC1818&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[For Your Information]] (FYI)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = F.Y.I. on F.Y.I.: Introduction to the F.Y.I. Notes&lt;br /&gt;
| rfc         = 1150&lt;br /&gt;
| fyi         = 1&lt;br /&gt;
| last1       = Malkin&lt;br /&gt;
| first1      = Gary Scott&lt;br /&gt;
| last2       = Reynolds&lt;br /&gt;
| first2      = Joyce K.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year        = 1990&lt;br /&gt;
| month       = March&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC1150&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = For Your Information Documents&lt;br /&gt;
| section     = 4.3&lt;br /&gt;
| page        = 39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Draft]] (I-D)&lt;br /&gt;
*[[Internet Experiment Note]] (IEN)&lt;br /&gt;
*[[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = RARE Technical Reports&lt;br /&gt;
| section     = 4.4&lt;br /&gt;
| page        = 40&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{TOC limit|3}}&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
'''''Note''''': All parameter names '''must''' be in [[lowercase]].&lt;br /&gt;
&lt;br /&gt;
Copy a blank version to use. Remember to use the &amp;quot;|&amp;quot; (pipe) character between each parameter. Please delete any unused parameters to avoid clutter in the edit window.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Full version (copy and paste text below and delete parameters you don't need)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |std= |bcp= |fyi= |draft= |ien= |rtr= |sectionname= |section= |sections= |appendix= |referenceid= |page= |pages= |last1= |first1= |authorlink1= |last2= |first2= |authorlink2= |authormask= |coauthors= |editor1-last= |editor1-first= |editor1-link= |others= |date= |year= |month= |origyear= |publisher=[[Internet Engineering Task Force|IETF]] |location= |language= |format= |accessdate= |url= |section-url= |page-url= |autolink= |id= |idanchor= |idlink= |idlinktype= |doi= |doi_brokendate= |issn= |archiveurl= |archivedate= |quote= |nopp= |nosec= |ref= |laysummary= |laydate= |separator= |postscript= |lastauthoramp= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Most commonly used parameters (use this and you won't have to delete as much)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |sectionname= |section= |page= |last= |first= |authorlink= |coauthors= |year= |month= |publisher=[[Internet Engineering Task Force|IETF]] |accessdate= |doi= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 1&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 2&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&amp;lt;pre&amp;gt;{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
| doi = 10.17487/RFC0854&lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
| doi = 10.17487/RFC0854&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Vertical list !! Prerequisites !! Brief instructions&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title       = &lt;br /&gt;
| rfc         = &lt;br /&gt;
| std         = &lt;br /&gt;
| bcp         = &lt;br /&gt;
| fyi         = &lt;br /&gt;
| draft       = &lt;br /&gt;
| ien         = &lt;br /&gt;
| rtr         = &lt;br /&gt;
| sectionname = &lt;br /&gt;
| section     = &lt;br /&gt;
| sections    = &lt;br /&gt;
| appendix    = &lt;br /&gt;
| referenceid = &lt;br /&gt;
| page        = &lt;br /&gt;
| pages       = &lt;br /&gt;
| last        = &lt;br /&gt;
| first       = &lt;br /&gt;
| authorlink  = &lt;br /&gt;
| authormask  = &lt;br /&gt;
| coauthors   = &lt;br /&gt;
| lastN       = &lt;br /&gt;
| firstN      = &lt;br /&gt;
| authorN-link = &lt;br /&gt;
| editor      = &lt;br /&gt;
| editorN     = &lt;br /&gt;
| editorN-last = &lt;br /&gt;
| editorN-first = &lt;br /&gt;
| editor-link = &lt;br /&gt;
| editorN-link = &lt;br /&gt;
| others      = &lt;br /&gt;
| date        = &lt;br /&gt;
| year        = &lt;br /&gt;
| month       = &lt;br /&gt;
| origyear    = &lt;br /&gt;
| publisher   = &lt;br /&gt;
| location    = &lt;br /&gt;
| language    = &lt;br /&gt;
| format      = &lt;br /&gt;
| accessdate  = &lt;br /&gt;
| url         = &lt;br /&gt;
| section-url = &lt;br /&gt;
| page-url    = &lt;br /&gt;
| autolink    = &lt;br /&gt;
| id          = &lt;br /&gt;
| idanchor    = &lt;br /&gt;
| idlink      = &lt;br /&gt;
| idlinktype  = &lt;br /&gt;
| doi         = &lt;br /&gt;
| doi_brokendate = &lt;br /&gt;
| issn        = &lt;br /&gt;
| archiveurl  = &lt;br /&gt;
| archivedate = &lt;br /&gt;
| quote       = &lt;br /&gt;
| nopp        = &lt;br /&gt;
| nosec       = &lt;br /&gt;
| ref         = &lt;br /&gt;
| laysummary  = &lt;br /&gt;
| laydate     = &lt;br /&gt;
| separator   = &lt;br /&gt;
| postscript  = &lt;br /&gt;
| lastauthoramp = &lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
lastN&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
editorN-last&lt;br /&gt;
editor or editor-last&lt;br /&gt;
editorN or editorN-last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
year&lt;br /&gt;
year or date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
publisher&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
sectionname&lt;br /&gt;
sectionname&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
idanchor or idlink&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
doi&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
url, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
archiveurl&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
page or pages&lt;br /&gt;
section, sections, or appendix&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
laysummary&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
coauthors or &amp;gt;1 lastN&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) RFC number; 4677&lt;br /&gt;
(no wikilink) STD number&lt;br /&gt;
(no wikilink) BCP number&lt;br /&gt;
(no wikilink) FYI number; 17&lt;br /&gt;
(no wikilink) I-D (internet draft) name&lt;br /&gt;
(no wikilink) IEN number&lt;br /&gt;
(no wikilink) RTR number&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) section number; 3.3&lt;br /&gt;
(no wikilink) section range (can be used together with the section parameter)&lt;br /&gt;
(no wikilink) appendix number; A.1&lt;br /&gt;
(no wikilink) reference id&lt;br /&gt;
(no wikilink) page number&lt;br /&gt;
(no wikilink) page range (can be used together with the page parameter)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink)&lt;br /&gt;
(no wikilink)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
alternative to first2, last2...first9, last9&lt;br /&gt;
(no wikilink) N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
preferred (no wikilink) This is the preferred parameter with its alternates listed below.&lt;br /&gt;
alternative to date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
should be &amp;lt;nowiki&amp;gt;[[Internet Engineering Task Force|IETF]]&amp;lt;/nowiki&amp;gt; for IETF documents.&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
hides automatic 'p.' or 'pp.'&lt;br /&gt;
hides automatic 'sec.'&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 7159&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 11&lt;br /&gt;
| author      = T. Bray&lt;br /&gt;
| authorlink  = Tim Bray&lt;br /&gt;
| date        = March 2014&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| doi         = 10.17487/RFC7159&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 7159&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 11&lt;br /&gt;
| author      = T. Bray&lt;br /&gt;
| authorlink  = Tim Bray&lt;br /&gt;
| date        = March 2014&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| doi         = 10.17487/RFC7159&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| doi         = 10.17487/RFC2616&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| doi         = 10.17487/RFC2616&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = August 3, 2008&lt;br /&gt;
| doi         = 10.17487/RFC1034&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = August 3, 2008&lt;br /&gt;
| doi         = 10.17487/RFC1034&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
Nested parameters rely on their parent parameters:&lt;br /&gt;
*''parent''&lt;br /&gt;
*OR: ''parent2''—may be used instead of ''parent''&lt;br /&gt;
**''child''—may be used with ''parent'' (and is ignored if ''parent'' is not used)&lt;br /&gt;
**OR: ''child2''—may be used instead of ''child'' (and is ignored if ''parent2'' is not used)&lt;br /&gt;
&lt;br /&gt;
:Where aliases are listed, only one of the parameters may be defined; if multiple aliased parameters are defined, then only one will show.&lt;br /&gt;
&lt;br /&gt;
This template embeds [[COinS]] metadata in the HTML output, allowing [[reference management software]] to retrieve bibliographic metadata. See: [[Wikipedia:COinS]]. As a general rule, only one data item per parameter. Do not include explanatory or alternate text:&lt;br /&gt;
* Use {{xt|{{para|date|27 September 2007}}}} not {{!xt|{{para|date|27 September 2007 (print version 25 September)}}}}&lt;br /&gt;
&lt;br /&gt;
Use of templates within the citation template, is discouraged because many of these templates will add extraneous HTML or CSS that will be rendered in the metadata. Also, HTML entities (e.g. &amp;lt;code&amp;gt;&amp;amp;amp;nbsp;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;amp;amp;ndash;&amp;lt;/code&amp;gt;) should not be used in parameters that contribute to the metadata.  Do not include Wiki markup &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (italic font) or &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;'''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (bold font) because these markup characters will contaminate the metadata.&lt;br /&gt;
&lt;br /&gt;
{{hidden begin |title=COinS metadata is created for these parameters}}&lt;br /&gt;
*{{para|periodical}}, {{para|journal}}, {{para|newspaper}}, {{para|magazine}}, {{para|work}}, {{para|website}}, {{para|encyclopedia}}, {{para|encyclopaedia}}, {{para|dictionary}}&lt;br /&gt;
*{{para|chapter}}, {{para|contribution}}, {{para|entry}}, {{para|article}}, {{para|section}}&lt;br /&gt;
*{{para|title}}&lt;br /&gt;
*{{para|publicationplace}}, {{para|publication-place}}, {{para|place}}, {{para|location}}&lt;br /&gt;
*{{para|date}}, {{para|year}}, {{para|publicationdate}}, {{para|publication-date}}&lt;br /&gt;
*{{para|series}}, {{para|version}}&lt;br /&gt;
*{{para|volume}}&lt;br /&gt;
*{{para|issue}}, {{para|number}}&lt;br /&gt;
*{{para|page}}, {{para|pages}}, {{para|at}}&lt;br /&gt;
*{{para|edition}}&lt;br /&gt;
*{{para|publisher}}, {{para|distributor}}, {{para|institution}}&lt;br /&gt;
*{{para|url}}&lt;br /&gt;
*{{para|chapterurl}}, {{para|chapter-url}}, {{para|contributionurl}}, {{para|contribution-url}}, {{para|sectionurl}}, {{para|section-url}}&lt;br /&gt;
*{{para|author#}}, {{para|Author#}}, {{para|authors#}}, {{para|author#-last}}, {{para|author-last#}}, {{para|last#}}, {{para|surname#}}&lt;br /&gt;
*{{para|&amp;quot;author#-first}}, {{para|author-first#}}, {{para|first#}}, {{para|given#}}&lt;br /&gt;
*any of the named identifiers ({{para|isbn}}, {{para|issn}}, {{para|doi}}, {{para|pmc}}, etc.)&lt;br /&gt;
{{hidden end}}&lt;br /&gt;
&lt;br /&gt;
By default, sets of fields are terminated with a period (.). {{#ifeq: {{{lua|}}|yes||This can be an issue when the last field uses an abbreviation or initial that ends with a period, as then two periods will display (..). The only solution is to not include the last period in the value for the set of fields.}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
&lt;br /&gt;
====Authors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last''': Surname of author. Do not wikilink—use '''author-link''' instead. For corporate authors, simply use '''last''' to include the same format as the source. Aliases: '''last1''', '''author''', '''authors''', '''author1'''{{#if:|, }}.&lt;br /&gt;
** '''first''': Given or first names of author, including title(s); for example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''author-link''' instead. Aliases: '''first1'''. Requires '''last'''; first name will not display if '''last''' is empty. &lt;br /&gt;
{{#if: |&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''', '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' where ''n'' is any consecutive number for an unlimited number of authors (each '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' requires a corresponding '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''). See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.&lt;br /&gt;
|&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last9''', '''first9''' for up to nine authors. By default, if nine authors are defined, only eight will show and &amp;quot;et al.&amp;quot; will show in place of the last author. See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author9'''.}}&lt;br /&gt;
:* '''author-link''': Title of existing Wikipedia article about the author—not the author's website; do not wikilink. Aliases: '''authorlink1''', '''authorlink''', '''author1-link''', '''author1link'''.&lt;br /&gt;
{{#if: |&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''. Aliases: '''author1link''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;link'''.&lt;br /&gt;
|&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link9'''. Aliases: '''author1link''' through '''author9link'''.}}&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s){{#if: |&lt;br /&gt;
* {{xtd|'''coauthors'''}}: (deprecated) &amp;lt;s&amp;gt;Names of coauthors. Requires '''author''', '''authors''', or '''last''n'''''&amp;lt;/s&amp;gt; Include coauthors in '''author''' or '''authors''' or use separate '''author''n''''' or '''last''n'''''/'''first''n''''' to list coauthors.}}{{#if: yes|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_others&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''others''': To record other contributors to the work, including illustrators and translators. For the parameter value, write ''Illustrated by John Smith'' or ''Translated by John Smith''.}}&lt;br /&gt;
:When using {{sfnote|lc=y}} or {{paren|lc=y}} styles with templates, do not use multiple names in one field or else the anchor will not match the inline link.&lt;br /&gt;
&lt;br /&gt;
====Title====&lt;br /&gt;
* '''title''': Title of the document; displays in italics. If {{em|both}} '''title''' and '''sectionname''' are omitted, then the template will attempt to auto-generate a title using the first of the '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''', '''rtr''' or '''id''' document identifier parameters, in that order.&lt;br /&gt;
:Titles containing certain characters will display and link incorrectly unless those characters are encoded.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left: 5em&amp;quot;&lt;br /&gt;
! newline !! [ !! ] !! &amp;amp;#124;&lt;br /&gt;
|-&lt;br /&gt;
| space || &amp;amp;amp;#91; || &amp;amp;amp;#93; || &amp;amp;amp;#124;&lt;br /&gt;
|}&lt;br /&gt;
* '''sectionname''': The section name or section title of the document, written in full; displays before '''title''' and enclosed in quotes.&lt;br /&gt;
* '''language''': The language the source is written in, if not English. Displays in parentheses with &amp;quot;in&amp;quot; before the language name. Use the full language name{{#if:|&amp;amp;#32;or [[List of ISO 639-1 codes|ISO 639-1]] code; use of language names or language codes recognized by Wikimedia adds the page to the appropriate subcategory of {{cl|CS1 foreign language sources}}}}; do not use templates or wikilinks.&lt;br /&gt;
&lt;br /&gt;
====Date====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_date&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''date''': Date of source being referenced. Can be full date (day, month, and year) or partial date (month and year{{#if:|, season and year}}, or year). Use same format as other publication dates in the citations.{{r|date|group=date}} Required when '''year''' is used to disambiguate {{tlx|sfn}} links to multiple-work citations by the same author in the same year.{{sup|[[Template:Sfn#More_than_one_work_in_a_year|[more]]]}} Do not wikilink. Displays after the authors and is enclosed in parentheses. If there is no author, then displays after publisher.{{#if:|&amp;amp;#32;Aliases: }} {{#if:|For acceptable date formats, see [[Help:Citation Style 1#Dates]].}}&lt;br /&gt;
{{#if:|:For approximate year, precede with &amp;quot;&amp;lt;code&amp;gt;c. &amp;lt;/code&amp;gt;&amp;quot;, like this: {{para|date|c. 1900}}; for no date, add as {{para|date|n.d.}} }}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_year&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR:&lt;br /&gt;
** '''year''': Year of source being referenced ...&lt;br /&gt;
**: Is the template {{tl|cite episode}} or {{tl|cite serial}}?&lt;br /&gt;
&lt;br /&gt;
::::NO: Does the template use {{para|ref|harv}}? (answer YES if the template is {{tlx|citation}})&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES:  Is the date format in {{para|date}} YYYY-MM-DD?&lt;br /&gt;
::::::NO: use {{para|date}}.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
::::YES: Does the citation use {{para|ref|harv}}?&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES: Is the date format in {{para|date}} DD Month YYYY or Month YYYY or YYYY or Month DD, YYYY or YYYY-MM-DD?&lt;br /&gt;
::::::NO: {{para|year}} ''required''.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_origyear&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''orig-year''': Original publication year; displays after the date or year. For clarity, please supply specifics. For example: {{para|orig-year|First published 1859}} or {{para|orig-year|Composed 1904}}.{{#if:|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_began&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR: '''began''': Full date the first part of the program or episode aired.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ended&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;AND: '''ended''': Full date the last part of the program or episode aired.}}{{#if:|&amp;amp;#32;Aliases:}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Publication dates in references within an article should all have the same format. This may be a different format from that used for archive and access dates. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
====Publisher====&lt;br /&gt;
* '''publisher''': Name of publisher; may be wikilinked if relevant. Not normally included for periodicals. Corporate designations such as &amp;quot;Ltd&amp;quot;, &amp;quot;Inc&amp;quot; or &amp;quot;GmbH&amp;quot; are not usually included. Displays after '''title'''.&lt;br /&gt;
:Should normally be set to [[Internet Engineering Task Force|IETF]] for RFC, STD, BCP, FYI, I-D (internet draft), IEN, and RTR documents.&lt;br /&gt;
:Note: There are reasons this can't just be the default; see [[Template talk:Cite IETF#Make publisher always IETF?]]&lt;br /&gt;
* '''location''': Geographical place of publication; generally not wikilinked; omit when the name of the work includes the location (examples: ''The Boston Globe'', ''The Times of India''). Displays preceding '''publisher'''.&lt;br /&gt;
&amp;lt;!--* '''publication-date''': Date of publication when different from the date the work was written. Displays only if '''year''' or '''date''' are defined and only if different, else '''publication-date''' is used and displayed as '''date'''. Use the same format as other dates in the article; do not wikilink. Follows '''publisher'''; preceded by &amp;quot;published&amp;quot; and enclosed in parenthesis.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====In-source locations====&lt;br /&gt;
* '''page''': Page in the source that supports the content. Displays preceded with {{code|p.}} unless {{para|nopp|y}}. Also used to create an anchor link for the document's URL. If either '''section''' or '''appendix''' is also given, the anchor will link to the section or appendix instead of the page. Can also be used in combination with '''pages''' to link to the first page in the given page range if '''section''' and '''appendix''' are not specified.&lt;br /&gt;
* OR: '''pages''': Pages in the source that supports the content; separate page ranges with an en dash (–); separate non-sequential pages with a comma (,); do not use to indicate the total number of pages in the source. Displays preceded with {{code|pp.}} unless {{para|nopp|y}}.&lt;br /&gt;
** '''nopp''': Set to &amp;lt;var&amp;gt;y&amp;lt;/var&amp;gt; to suppress the {{code|p.}} or {{code|pp.}} notations where this is inappropriate; for example, where {{para|page|Front cover}}.&lt;br /&gt;
* '''section''': Section number of the document. {{para|section|4.3.1}} produces &amp;quot;sec. 4.3.1&amp;quot; Also used to create an anchor link for the document's URL. Can also be used in combination with '''sections''' to link to the first section in the given section range.&lt;br /&gt;
* '''sections''': Section range of the document. {{para|sections|4.3-4.7}} produces &amp;quot;sec. 4.3-4.7&amp;quot;&lt;br /&gt;
* OR: '''appendix''': Appendix number of the document. {{para|appendix|A.1}} produces &amp;quot;sec. A.1&amp;quot; Also used to create an anchor link for the document's URL.&lt;br /&gt;
* OR: '''referenceid''': Reference id for the document. Used to create an anchor link for the document's URL.&lt;br /&gt;
* '''nosec''': Using '''section''', ''''sections''', or '''appendix''' automatically places the sec. notation. Se {{para|nosec|y}} to hide the sec. notation.&lt;br /&gt;
&lt;br /&gt;
====URL====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_url&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''url''': URL of an online location where the text of the publication can be found. Cannot be used if '''title''' is wikilinked. If applicable, the link may point to the specific page(s) referenced. Remove spurious tracking parameters from URLs, e.g. &amp;lt;code&amp;gt;#ixzz2rBr3aO94&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;. Do not link to any commercial booksellers, such as Amazon.com. See: [[WP:PAGELINKS]].&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_accessdate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''access-date''': Full date when the contents pointed to by '''url''' was last verified to support the text in the article; do not wikilink; requires '''url'''; use the same format as other access and archive dates in the citations.{{r|date|group=date}}  ''Not required for linked documents that do not change.'' For example, '''access-date''' is not required for links to copies of published research papers accessed via DOI or a published book, but is required for links to news articles on commercial sites (these are changed from time to time, even if also published in a physical medium). Note that '''access-date''' is the date that the URL was checked to not only be working, but to support the assertion being cited (which the current version of the page may not do). Can be [[Help:Citation Style 1/accessdate|hidden or styled]] by registered editors. Alias: '''accessdate'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_archiveurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-url''': The URL of an [[Web archiving|archived]] copy of a web page, if or in case the url becomes unavailable. Typically used to refer to services like [[WebCite]] (see: [[Wikipedia:Using WebCite]]) and [[Internet Archive]] (see: [[Wikipedia:Using the Wayback Machine]]); requires '''archive-date''' and '''url'''. Alias: '''archiveurl'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_archivedate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-date''': Date when the original URL was archived; preceded by default text &amp;quot;archived from the original on&amp;quot;. Use the same format as other access and archive dates in the citations. This does not necessarily have to be the same format that was used for citing publication dates.{{r|date|group=date}} Do not wikilink. Alias: '''archivedate'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_deadurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''dead-url''': When the URL is still live, but pre-emptively archived, then set {{para|dead-url|no}}. This changes the display order with the title retaining the original link and the archive linked at the end. Alias: '''deadurl'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_template doc demo&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''template-doc-demo''': The archive parameters will be error checked to ensure that all the required parameters are included, or else {{tl|citation error}} is invoked. With errors, main, help and template pages are placed into one of the subcategories of [[:Category:Articles with incorrect citation syntax]]. Set {{para|template-doc-demo|true}} to disable categorization; mainly used for documentation where the error is demonstrated.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''format''': Format of the work referred to by '''url'''; for example: PDF, DOC, or XLS; displayed in parentheses after '''title'''. HTML is implied and should not be specified. Does not change the [[Help:External link icons|external link icon]]. Note: External link icons do not include [[Wikipedia:ALT|alt text]]; thus, they do not add format information for the visually impaired.&lt;br /&gt;
{{MediaWiki URL rules}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Access-date and archive-date in references should all have the same format – either the format used for publication dates, or YYYY-MM-DD. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
* '''section-url''': URL to an individual section of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''page-url''': URL to an individual page of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''autolink''': {{para|autolink|&amp;lt;var&amp;gt;yes&amp;lt;/var&amp;gt;}} or {{para|autolink|&amp;lt;var&amp;gt;no&amp;lt;/var&amp;gt;}} Automatically generate a link to ietf.org for documents specified with {{para|rfc}}, {{para|std}}, {{para|bcp}}, {{para|fyi}}, {{para|draft}}, {{para|ien}}, or {{para|rtr}}. (enabled by default)&lt;br /&gt;
&lt;br /&gt;
====Anchor====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ref&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''ref''': ID for anchor. By default, no anchor is generated. The ordinary nonempty value {{para|ref|&amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;}} generates an anchor with the given &amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;; such a linkable reference can be made the target of [[Wikipedia:Citing sources/Further considerations#Wikilinks to full references|wikilinks to full references]], especially useful in short citations like [[Wikipedia:Citing sources#Shortened footnotes|shortened notes]] and [[Wikipedia:Parenthetical referencing|parenthetical referencing]]. The special value {{para|ref|harv}} generates an anchor suitable for the {{tl|harv}} template. See: [[Template:Citation/doc#Anchors for Harvard referencing templates|Anchors for Harvard referencing templates]]. The special value {{para|ref|ietf}} generates an anchor suitable for use with this template's '''idanchor''' parameter.&lt;br /&gt;
&lt;br /&gt;
====Identifiers====&lt;br /&gt;
* '''rfc''': Number of the [[Request for Comments]] (RFC) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''std''': Number of the [[Internet Standard]] (STD) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''bcp''': Number of the [[Best Current Practice]] (BCP) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''fyi''': Number of the [[For Your Information]] (FYI) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''draft''': Name of the [[Internet Draft]] (I-D) document, including the leading draft-. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''ien''': Number of the [[Internet Experiment Note]] (IEN) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''rtr''': Number of the [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''id''': A [[unique identifier]] for the document, used if none of the above are applicable. Overrides automatically generated document identifiers—'''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''—and should not be specified unless absolutely necessary. If used, you also need to specify the kind of identifier you are using. Don't wikilink, use '''idlink''' instead.&lt;br /&gt;
* '''idanchor''': Anchor link target. By default, no anchor link is generated. The special value {{para|idanchor|ietf}} generates an anchor link suitable for use with this template's '''ref''' parameter. Requires one of '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' fields to be present for the anchor link text.&lt;br /&gt;
* OR: '''idlink''': Internal document anchor or title of a Wikipedia article to link via the document identifier. Article should already exist. Must not be wikilinked itself. Do not use this on its own, but along with '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''idlinktype''': One of the values: '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' can be given to '''idlinktype''' to force the template to use the specified document identifier as the link text for '''idanchor''' or '''idlink'''. Do not use this on its own, but along with '''idanchor''' or '''idlink''' and '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''doi''': A [[digital object identifier]] for the document, such as ''10.1038/news070508-7''. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
** '''doi_brokendate''': The date that the DOI was determined to be broken&lt;br /&gt;
* '''issn''': [[International Standard Serial Number]] for the document; 8 characters; may be split into two groups of four using a hyphen. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
&lt;br /&gt;
====Quote====&lt;br /&gt;
* '''quote''': Relevant text quoted from the source. Displays enclosed in quotes.{{#if: ||&amp;amp;#32;When supplied, the citation terminator (a period by default) is suppressed, so the quote needs to include terminating punctuation.}}&lt;br /&gt;
&lt;br /&gt;
====Editors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''editor-last''': Surname of editor. Do not wikilink—use '''editor-link''' instead. Where the surname is usually written first—as in Chinese—or for corporate authors, simply use '''editor-last''' to include the same format as the source. Aliases: '''editor1-last''', '''editor''', '''editors'''{{#if: |, '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.|.}}&lt;br /&gt;
** '''editor-first''': Given or first names of editor, including title(s); example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''editor-link''' instead.  Aliases: '''editor1-first'''.&lt;br /&gt;
**OR: for multiple editors, use '''editor1-last''', '''editor1-first'''  through {{#if: |'''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-last''', '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-first'''|'''editor4-last''', '''editor4-first''' for up to four editors}}.&lt;br /&gt;
:* '''editor-link''': Title of existing Wikipedia article about the editor—not the editor's website; do not wikilink. Aliases: '''editor1-link'''.&lt;br /&gt;
:*OR: for multiple editors, use {{#if: |'''editor1-link''' through '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-link'''|'''editor1-link''' through '''editor4-link'''}}.&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s)&lt;br /&gt;
:Display:&lt;br /&gt;
::If authors: Authors are first, followed by {{#if: |the included work, then &amp;quot;In&amp;quot; and the editors|the editors and the included work}}, then the main work.&lt;br /&gt;
::If no authors: Editors appear before the included work; a single editor is followed by &amp;quot;ed.&amp;quot;; multiple editors are followed by &amp;quot;eds.&amp;quot;{{#if: |{{;}} exactly four editors will show three editors followed by &amp;quot;et al., eds.&amp;quot; &amp;lt;!-- ERROR MESSAGE IS HIDDEN BY DEFAULT --&amp;gt; &amp;lt;!-- along with an error message --&amp;gt;unless '''display-editors''' is used.|{{;}} more than three editors will be followed by &amp;quot;et al., eds.&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
====Laysummary====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lay&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{#if: |'''lay-url'''|'''laysummary'''}}: URL link to a non-technical summary or review of the source; the URL title is set to &amp;quot;Lay summary&amp;quot;. {{#if: |Aliases: '''lay-summary''', '''laysummary'''.|}}&lt;br /&gt;
** '''lay-source''': Name of the source of the laysummary. Displays in italics and preceded by an endash. Alias: '''laysource'''.&lt;br /&gt;
** '''lay-date''': Date of the summary. Displays in parentheses. Alias: '''laydate'''.&lt;br /&gt;
&lt;br /&gt;
====Display options====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_mode&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''mode''': Sets element separator, default terminal punctuation, and certain capitalization according to the value provided.  For {{para|mode|cs1}}, element separator is a semicolon (&amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt;); terminal punctuation is a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); where appropriate, initial letters of certain words are capitalized ('Retrieved...').  For {{para|mode|cs2}}, element separator is a comma (&amp;lt;code&amp;gt;,&amp;lt;/code&amp;gt;); terminal punctuation is omitted; where appropriate, initial letters of certain words are not capitalized ('retrieved...'). To override default terminal punctuation use '''postscript'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-mask&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''author-mask''': Replaces the name of the first author with [[dash#Em dash|em dashes]] or text. Set '''author-mask''' to a numeric value ''n'' to set the dash ''n'' em spaces wide; set '''author-mask''' to a text value to display the text without a trailing author separator; for example, &amp;quot;with&amp;quot;. You must still include the values for all authors for metadata purposes. Primarily intended for use with bibliographies or bibliography styles where multiple works by a single author are listed sequentially such as {{sfnote}}. Do not use in a list generated by {{tlx|reflist}}, {{tag|references|s}} or similar as there is no control of the order in which references are displayed.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-name-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-name-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between last and first names; defaults to a comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between authors; defaults to a semicolon and space (&amp;lt;code&amp;gt;; &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-format'''}}: (deprecated) Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-authors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayauthors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-authors''': {{#if: |Controls the number of author names that are displayed when a citation is published. To change the displayed number of authors, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, all authors are displayed. Aliases: '''displayauthors'''.|Controls the number of author names that are displayed when a citation is published. To control the displayed number of author names, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, the only the first eight cited authors are displayed; subsequent authors beyond eight are represented in the published citation by &amp;quot;et al.&amp;quot; If a citation contains nine author names and one wishes all nine author names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-authors|9}}. Aliases: '''displayauthors'''.}}&lt;br /&gt;
{{#if: |&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayeditors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-editors''': Controls the number of editor names that are displayed when a citation is published. To change the displayed number of editors, set '''display-editors''' to the desired number. For example, {{para|display-editors|2}} will display only the first two editors in a citation. By default, all editors are displayed except when there are four editors, then the editor list in the citation is truncated to three editors, followed by &amp;quot;et al.&amp;quot; This exception mimics the older version of the template for compatibility. If a citation contains four editor names and one wishes all four editor names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-editors|4}}. Aliases: '''displayeditors'''.}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lastauthoramp&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last-author-amp''': Switches the separator between the last two names of the author list to space ampersand space (&amp;lt;code&amp;gt; &amp;amp; &amp;lt;/code&amp;gt;) when set to any value. Example: {{para|last-author-amp|yes}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_postscript&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''postscript''': Controls the closing punctuation for a citation; defaults to {{#if: |none|a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); {{#if: |for no terminating punctuation, specify {{para|postscript|none}} – leaving {{para|postscript}} empty is the same as omitting it, but is ambiguous|if the parameter is present, but blank, no terminating punctuation will be used}}}}. Ignored if '''quote''' is defined.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the punctuation used to separate lists of authors, editors, etc. Defaults to a {{#if: |comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;)|period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;)}};  {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}} }}&amp;lt;/s&amp;gt; Use '''mode'''.&lt;br /&gt;
&lt;br /&gt;
==Citation styles==&lt;br /&gt;
Established citation styles for coauthors:&lt;br /&gt;
&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/mla/mla.htm MLA style]: Last, First and First Last. &amp;quot;If there are more than three authors, you may list only the first author followed by the phrase ''et al''.&amp;quot;&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/apa/apa.htm APA style]: Last, F. &amp;amp; Last, F.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/citchi.htm Chicago Manual of Style]: Last, First, and First Last.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/cittur.htm Turabian]: same as Chicago Reference List, above.&lt;br /&gt;
*[http://www.library.uq.edu.au/training/citation/harvard.html Harvard]: Last, F., Last, F. &amp;amp; Last, F.&lt;br /&gt;
&lt;br /&gt;
==Technical notes==&lt;br /&gt;
&lt;br /&gt;
===Regression testing===&lt;br /&gt;
[[Regression testing|Regression tests]] are available here:&lt;br /&gt;
*{{tl|Cite IETF/regression tests}}&lt;br /&gt;
&lt;br /&gt;
===Subtemplates===&lt;br /&gt;
{{tl|Cite IETF}} uses the following subtemplates:&lt;br /&gt;
*{{tl|Cite IETF/doctypes}}&lt;br /&gt;
*{{tl|Cite IETF/makelink}}&lt;br /&gt;
*{{tl|Cite IETF/refanchor}}&lt;br /&gt;
&lt;br /&gt;
===URL generation===&lt;br /&gt;
HTML versions of the [[Internet Engineering Task Force|IETF]] documents are created with the Rfcmarkup tool from Henrik Levkowetz.&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/&lt;br /&gt;
| title       = Rfcmarkup Tool&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = October 16, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/rfcmarkup-1.85.tgz&lt;br /&gt;
| title       = rfcmarkup-1.85.tgz (25 KB)&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = October 16, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Request for Comments]] (RFC), [[Best Current Practice]] (BCP), and [[Internet Draft]] (I-D) documents which have been processed by the Rfcmarkup tool are cached by &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;tools.ietf.org/html/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/&lt;br /&gt;
| title       = IETF Documents&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/code.txt&lt;br /&gt;
| title       = HTTP 404 handler for a directory of htmlized documents&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| date        = October 14, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; and are linked via:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/rfc&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/bcp&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/draft-&amp;lt;/nowiki&amp;gt;&amp;lt;draft name&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Standard]] (STD) and [[For Your Information]] (FYI) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;doc=&amp;lt;/code&amp;gt; parameter:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=std&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=fyi&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Experiment Note]] (IEN) and [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;url=&amp;lt;/code&amp;gt; parameter and a path to the document:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/ien/ien&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/museum/RAREreports/rtr&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===URL anchor generation===&lt;br /&gt;
Anchors are generated for the URL using four parameters:&lt;br /&gt;
:{{para|section|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#section-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|appendix|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#appendix-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|referenceid|&amp;lt;var&amp;gt;id&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#ref-&amp;lt;var&amp;gt;&amp;lt;id&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|page|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#page-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
The template will give priority to the first of the parameters: {{para|section}}, {{para|appendix}}, {{para|referenceid}}, or {{para|page}} in this order and create an anchor using the first matching parameter.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
==Further reading==&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Internet Official Protocol Standards&lt;br /&gt;
| rfc         = 5000&lt;br /&gt;
| std         = 1&lt;br /&gt;
| year        = 2008&lt;br /&gt;
| month       = May&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC5000&lt;br /&gt;
}}&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Not All RFCs are Standards&lt;br /&gt;
| rfc         = 1796&lt;br /&gt;
| last1       = Huitema&lt;br /&gt;
| first1      = Christian&lt;br /&gt;
| last2       = Postel&lt;br /&gt;
| first2      = Jon&lt;br /&gt;
| authorlink2 = Jon Postel&lt;br /&gt;
| last3       = Crocker&lt;br /&gt;
| first3      = Steve&lt;br /&gt;
| authorlink3 = Steve Crocker&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = April&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC1796&lt;br /&gt;
}}&lt;br /&gt;
*{{cite web&lt;br /&gt;
| url         = http://www.livinginternet.com/i/ia_rfc_ref.htm&lt;br /&gt;
| title       = Related RFC's, BCP, FYI, IEN, RTR, STD&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Stewart&lt;br /&gt;
| first       = William&lt;br /&gt;
| publisher   = LivingInternet.com&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Citation Style 1}}&lt;br /&gt;
{{Wikipedia referencing}}&lt;br /&gt;
{{UF-COinS}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox |&lt;br /&gt;
| &amp;lt;!-- CATEGORIES BELOW THIS LINE, PLEASE: --&amp;gt;&lt;br /&gt;
[[Category:Citation Style 1 specific-source templates]]&lt;br /&gt;
[[Category:Specific-source templates]]&lt;br /&gt;
[[Category:Templates generating COinS]]&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428358</id>
		<title>Template:Cite IETF/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428358"/>
		<updated>2017-11-26T14:22:00Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: /* top */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&amp;lt;includeonly&amp;gt;{{Intricate template}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;!-- PLEASE ADD CATEGORIES WHERE INDICATED AT THE BOTTOM OF THIS PAGE --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is a template to cite [[Internet Engineering Task Force|IETF]] documents&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force&lt;br /&gt;
| rfc         = 4677&lt;br /&gt;
| fyi         = 17&lt;br /&gt;
| last1       = Hoffman&lt;br /&gt;
| first1      = Paul&lt;br /&gt;
| authorlink1 = Paul Hoffman (VPNC)&lt;br /&gt;
| last2       = Harris&lt;br /&gt;
| first2      = Susan&lt;br /&gt;
| year        = 2006&lt;br /&gt;
| month       = September&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC4677&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = A Primer On Internet and TCP/IP Tools&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Documentation&lt;br /&gt;
| section     = 4&lt;br /&gt;
| last1       = Kessler&lt;br /&gt;
| first1      = Gary C.&lt;br /&gt;
| last2       = Shepard&lt;br /&gt;
| first2      = Steven D.&lt;br /&gt;
| year        = 1994&lt;br /&gt;
| month       = December&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC1739&lt;br /&gt;
| ref         = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; including:&lt;br /&gt;
*[[Request for Comments]] (RFC)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Request for Comments (RFCs)&lt;br /&gt;
| section     = 4.1&lt;br /&gt;
| pages       = 36–38&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Standard]] (STD)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Internet Standards Process -- Revision 3&lt;br /&gt;
| rfc         = 2026&lt;br /&gt;
| bcp         = 9&lt;br /&gt;
| last        = Bradner&lt;br /&gt;
| first       = Scott O.&lt;br /&gt;
| authorlink  = Scott Bradner&lt;br /&gt;
| year        = 1996&lt;br /&gt;
| month       = October&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC2026&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Standards&lt;br /&gt;
| section     = 4.2&lt;br /&gt;
| pages       = 38–39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Best current practice]] (BCP)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Best Current Practices&lt;br /&gt;
| rfc         = 1818&lt;br /&gt;
| bcp         = 1&lt;br /&gt;
| last1       = Postel&lt;br /&gt;
| first1      = Jon&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2       = Rekhter&lt;br /&gt;
| first2      = Yakov&lt;br /&gt;
| authorlink2 = Yakov Rekhter&lt;br /&gt;
| last3       = Li&lt;br /&gt;
| first3      = Tony&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = August&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC1818&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[For Your Information]] (FYI)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = F.Y.I. on F.Y.I.: Introduction to the F.Y.I. Notes&lt;br /&gt;
| rfc         = 1150&lt;br /&gt;
| fyi         = 1&lt;br /&gt;
| last1       = Malkin&lt;br /&gt;
| first1      = Gary Scott&lt;br /&gt;
| last2       = Reynolds&lt;br /&gt;
| first2      = Joyce K.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year        = 1990&lt;br /&gt;
| month       = March&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 2, 2009&lt;br /&gt;
| doi         = 10.17487/RFC1150&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = For Your Information Documents&lt;br /&gt;
| section     = 4.3&lt;br /&gt;
| page        = 39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Draft]] (I-D)&lt;br /&gt;
*[[Internet Experiment Note]] (IEN)&lt;br /&gt;
*[[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = RARE Technical Reports&lt;br /&gt;
| section     = 4.4&lt;br /&gt;
| page        = 40&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{TOC limit|3}}&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
'''''Note''''': All parameter names '''must''' be in [[lowercase]].&lt;br /&gt;
&lt;br /&gt;
Copy a blank version to use. Remember to use the &amp;quot;|&amp;quot; (pipe) character between each parameter. Please delete any unused parameters to avoid clutter in the edit window.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Full version (copy and paste text below and delete parameters you don't need)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |std= |bcp= |fyi= |draft= |ien= |rtr= |sectionname= |section= |sections= |appendix= |referenceid= |page= |pages= |last1= |first1= |authorlink1= |last2= |first2= |authorlink2= |authormask= |coauthors= |editor1-last= |editor1-first= |editor1-link= |others= |date= |year= |month= |origyear= |publisher=[[Internet Engineering Task Force|IETF]] |location= |language= |format= |accessdate= |url= |section-url= |page-url= |autolink= |id= |idanchor= |idlink= |idlinktype= |doi= |doi_brokendate= |issn= |archiveurl= |archivedate= |quote= |nopp= |nosec= |ref= |laysummary= |laydate= |separator= |postscript= |lastauthoramp= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Most commonly used parameters (use this and you won't have to delete as much)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |sectionname= |section= |page= |last= |first= |authorlink= |coauthors= |year= |month= |publisher=[[Internet Engineering Task Force|IETF]] |accessdate= |doi= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 1&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 2&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&amp;lt;pre&amp;gt;{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
| doi = 10.17487/RFC0854&lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
| doi = 10.17487/RFC0854&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Vertical list !! Prerequisites !! Brief instructions&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title       = &lt;br /&gt;
| rfc         = &lt;br /&gt;
| std         = &lt;br /&gt;
| bcp         = &lt;br /&gt;
| fyi         = &lt;br /&gt;
| draft       = &lt;br /&gt;
| ien         = &lt;br /&gt;
| rtr         = &lt;br /&gt;
| sectionname = &lt;br /&gt;
| section     = &lt;br /&gt;
| sections    = &lt;br /&gt;
| appendix    = &lt;br /&gt;
| referenceid = &lt;br /&gt;
| page        = &lt;br /&gt;
| pages       = &lt;br /&gt;
| last        = &lt;br /&gt;
| first       = &lt;br /&gt;
| authorlink  = &lt;br /&gt;
| authormask  = &lt;br /&gt;
| coauthors   = &lt;br /&gt;
| lastN       = &lt;br /&gt;
| firstN      = &lt;br /&gt;
| authorN-link = &lt;br /&gt;
| editor      = &lt;br /&gt;
| editorN     = &lt;br /&gt;
| editorN-last = &lt;br /&gt;
| editorN-first = &lt;br /&gt;
| editor-link = &lt;br /&gt;
| editorN-link = &lt;br /&gt;
| others      = &lt;br /&gt;
| date        = &lt;br /&gt;
| year        = &lt;br /&gt;
| month       = &lt;br /&gt;
| origyear    = &lt;br /&gt;
| publisher   = &lt;br /&gt;
| location    = &lt;br /&gt;
| language    = &lt;br /&gt;
| format      = &lt;br /&gt;
| accessdate  = &lt;br /&gt;
| url         = &lt;br /&gt;
| section-url = &lt;br /&gt;
| page-url    = &lt;br /&gt;
| autolink    = &lt;br /&gt;
| id          = &lt;br /&gt;
| idanchor    = &lt;br /&gt;
| idlink      = &lt;br /&gt;
| idlinktype  = &lt;br /&gt;
| doi         = &lt;br /&gt;
| doi_brokendate = &lt;br /&gt;
| issn        = &lt;br /&gt;
| archiveurl  = &lt;br /&gt;
| archivedate = &lt;br /&gt;
| quote       = &lt;br /&gt;
| nopp        = &lt;br /&gt;
| nosec       = &lt;br /&gt;
| ref         = &lt;br /&gt;
| laysummary  = &lt;br /&gt;
| laydate     = &lt;br /&gt;
| separator   = &lt;br /&gt;
| postscript  = &lt;br /&gt;
| lastauthoramp = &lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
lastN&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
editorN-last&lt;br /&gt;
editor or editor-last&lt;br /&gt;
editorN or editorN-last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
year&lt;br /&gt;
year or date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
publisher&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
sectionname&lt;br /&gt;
sectionname&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
idanchor or idlink&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
doi&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
url, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
archiveurl&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
page or pages&lt;br /&gt;
section, sections, or appendix&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
laysummary&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
coauthors or &amp;gt;1 lastN&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) RFC number; 4677&lt;br /&gt;
(no wikilink) STD number&lt;br /&gt;
(no wikilink) BCP number&lt;br /&gt;
(no wikilink) FYI number; 17&lt;br /&gt;
(no wikilink) I-D (internet draft) name&lt;br /&gt;
(no wikilink) IEN number&lt;br /&gt;
(no wikilink) RTR number&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) section number; 3.3&lt;br /&gt;
(no wikilink) section range (can be used together with the section parameter)&lt;br /&gt;
(no wikilink) appendix number; A.1&lt;br /&gt;
(no wikilink) reference id&lt;br /&gt;
(no wikilink) page number&lt;br /&gt;
(no wikilink) page range (can be used together with the page parameter)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink)&lt;br /&gt;
(no wikilink)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
alternative to first2, last2...first9, last9&lt;br /&gt;
(no wikilink) N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
preferred (no wikilink) This is the preferred parameter with its alternates listed below.&lt;br /&gt;
alternative to date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
should be &amp;lt;nowiki&amp;gt;[[Internet Engineering Task Force|IETF]]&amp;lt;/nowiki&amp;gt; for IETF documents.&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
hides automatic 'p.' or 'pp.'&lt;br /&gt;
hides automatic 'sec.'&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 7159&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 11&lt;br /&gt;
| author      = T. Bray&lt;br /&gt;
| authorlink  = Tim Bray&lt;br /&gt;
| date        = March 2014&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| doi         = 10.17487/RFC7159&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 7159&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 11&lt;br /&gt;
| author      = T. Bray&lt;br /&gt;
| authorlink  = Tim Bray&lt;br /&gt;
| date        = March 2014&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| doi         = 10.17487/RFC7159&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| doi         = 10.17487/RFC2616&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| doi         = 10.17487/RFC2616&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = August 3, 2008&lt;br /&gt;
| doi         = 10.17487/RFC1034&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = August 3, 2008&lt;br /&gt;
| doi         = 10.17487/RFC1034&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
Nested parameters rely on their parent parameters:&lt;br /&gt;
*''parent''&lt;br /&gt;
*OR: ''parent2''—may be used instead of ''parent''&lt;br /&gt;
**''child''—may be used with ''parent'' (and is ignored if ''parent'' is not used)&lt;br /&gt;
**OR: ''child2''—may be used instead of ''child'' (and is ignored if ''parent2'' is not used)&lt;br /&gt;
&lt;br /&gt;
:Where aliases are listed, only one of the parameters may be defined; if multiple aliased parameters are defined, then only one will show.&lt;br /&gt;
&lt;br /&gt;
This template embeds [[COinS]] metadata in the HTML output, allowing [[reference management software]] to retrieve bibliographic metadata. See: [[Wikipedia:COinS]]. As a general rule, only one data item per parameter. Do not include explanatory or alternate text:&lt;br /&gt;
* Use {{xt|{{para|date|27 September 2007}}}} not {{!xt|{{para|date|27 September 2007 (print version 25 September)}}}}&lt;br /&gt;
&lt;br /&gt;
Use of templates within the citation template, is discouraged because many of these templates will add extraneous HTML or CSS that will be rendered in the metadata. Also, HTML entities (e.g. &amp;lt;code&amp;gt;&amp;amp;amp;nbsp;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;amp;amp;ndash;&amp;lt;/code&amp;gt;) should not be used in parameters that contribute to the metadata.  Do not include Wiki markup &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (italic font) or &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;'''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (bold font) because these markup characters will contaminate the metadata.&lt;br /&gt;
&lt;br /&gt;
{{hidden begin |title=COinS metadata is created for these parameters}}&lt;br /&gt;
*{{para|periodical}}, {{para|journal}}, {{para|newspaper}}, {{para|magazine}}, {{para|work}}, {{para|website}}, {{para|encyclopedia}}, {{para|encyclopaedia}}, {{para|dictionary}}&lt;br /&gt;
*{{para|chapter}}, {{para|contribution}}, {{para|entry}}, {{para|article}}, {{para|section}}&lt;br /&gt;
*{{para|title}}&lt;br /&gt;
*{{para|publicationplace}}, {{para|publication-place}}, {{para|place}}, {{para|location}}&lt;br /&gt;
*{{para|date}}, {{para|year}}, {{para|publicationdate}}, {{para|publication-date}}&lt;br /&gt;
*{{para|series}}, {{para|version}}&lt;br /&gt;
*{{para|volume}}&lt;br /&gt;
*{{para|issue}}, {{para|number}}&lt;br /&gt;
*{{para|page}}, {{para|pages}}, {{para|at}}&lt;br /&gt;
*{{para|edition}}&lt;br /&gt;
*{{para|publisher}}, {{para|distributor}}, {{para|institution}}&lt;br /&gt;
*{{para|url}}&lt;br /&gt;
*{{para|chapterurl}}, {{para|chapter-url}}, {{para|contributionurl}}, {{para|contribution-url}}, {{para|sectionurl}}, {{para|section-url}}&lt;br /&gt;
*{{para|author#}}, {{para|Author#}}, {{para|authors#}}, {{para|author#-last}}, {{para|author-last#}}, {{para|last#}}, {{para|surname#}}&lt;br /&gt;
*{{para|&amp;quot;author#-first}}, {{para|author-first#}}, {{para|first#}}, {{para|given#}}&lt;br /&gt;
*any of the named identifiers ({{para|isbn}}, {{para|issn}}, {{para|doi}}, {{para|pmc}}, etc.)&lt;br /&gt;
{{hidden end}}&lt;br /&gt;
&lt;br /&gt;
By default, sets of fields are terminated with a period (.). {{#ifeq: {{{lua|}}|yes||This can be an issue when the last field uses an abbreviation or initial that ends with a period, as then two periods will display (..). The only solution is to not include the last period in the value for the set of fields.}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
&lt;br /&gt;
====Authors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last''': Surname of author. Do not wikilink—use '''author-link''' instead. For corporate authors, simply use '''last''' to include the same format as the source. Aliases: '''last1''', '''author''', '''authors''', '''author1'''{{#if:|, }}.&lt;br /&gt;
** '''first''': Given or first names of author, including title(s); for example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''author-link''' instead. Aliases: '''first1'''. Requires '''last'''; first name will not display if '''last''' is empty. &lt;br /&gt;
{{#if: |&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''', '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' where ''n'' is any consecutive number for an unlimited number of authors (each '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' requires a corresponding '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''). See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.&lt;br /&gt;
|&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last9''', '''first9''' for up to nine authors. By default, if nine authors are defined, only eight will show and &amp;quot;et al.&amp;quot; will show in place of the last author. See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author9'''.}}&lt;br /&gt;
:* '''author-link''': Title of existing Wikipedia article about the author—not the author's website; do not wikilink. Aliases: '''authorlink1''', '''authorlink''', '''author1-link''', '''author1link'''.&lt;br /&gt;
{{#if: |&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''. Aliases: '''author1link''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;link'''.&lt;br /&gt;
|&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link9'''. Aliases: '''author1link''' through '''author9link'''.}}&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s){{#if: |&lt;br /&gt;
* {{xtd|'''coauthors'''}}: (deprecated) &amp;lt;s&amp;gt;Names of coauthors. Requires '''author''', '''authors''', or '''last''n'''''&amp;lt;/s&amp;gt; Include coauthors in '''author''' or '''authors''' or use separate '''author''n''''' or '''last''n'''''/'''first''n''''' to list coauthors.}}{{#if: yes|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_others&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''others''': To record other contributors to the work, including illustrators and translators. For the parameter value, write ''Illustrated by John Smith'' or ''Translated by John Smith''.}}&lt;br /&gt;
:When using {{sfnote|lc=y}} or {{paren|lc=y}} styles with templates, do not use multiple names in one field or else the anchor will not match the inline link.&lt;br /&gt;
&lt;br /&gt;
====Title====&lt;br /&gt;
* '''title''': Title of the document; displays in italics. If {{em|both}} '''title''' and '''sectionname''' are omitted, then the template will attempt to auto-generate a title using the first of the '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''', '''rtr''' or '''id''' document identifier parameters, in that order.&lt;br /&gt;
:Titles containing certain characters will display and link incorrectly unless those characters are encoded.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left: 5em&amp;quot;&lt;br /&gt;
! newline !! [ !! ] !! &amp;amp;#124;&lt;br /&gt;
|-&lt;br /&gt;
| space || &amp;amp;amp;#91; || &amp;amp;amp;#93; || &amp;amp;amp;#124;&lt;br /&gt;
|}&lt;br /&gt;
* '''sectionname''': The section name or section title of the document, written in full; displays before '''title''' and enclosed in quotes.&lt;br /&gt;
* '''language''': The language the source is written in, if not English. Displays in parentheses with &amp;quot;in&amp;quot; before the language name. Use the full language name{{#if:|&amp;amp;#32;or [[List of ISO 639-1 codes|ISO 639-1]] code; use of language names or language codes recognized by Wikimedia adds the page to the appropriate subcategory of {{cl|CS1 foreign language sources}}}}; do not use templates or wikilinks.&lt;br /&gt;
&lt;br /&gt;
====Date====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_date&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''date''': Date of source being referenced. Can be full date (day, month, and year) or partial date (month and year{{#if:|, season and year}}, or year). Use same format as other publication dates in the citations.{{r|date|group=date}} Required when '''year''' is used to disambiguate {{tlx|sfn}} links to multiple-work citations by the same author in the same year.{{sup|[[Template:Sfn#More_than_one_work_in_a_year|[more]]]}} Do not wikilink. Displays after the authors and is enclosed in parentheses. If there is no author, then displays after publisher.{{#if:|&amp;amp;#32;Aliases: }} {{#if:|For acceptable date formats, see [[Help:Citation Style 1#Dates]].}}&lt;br /&gt;
{{#if:|:For approximate year, precede with &amp;quot;&amp;lt;code&amp;gt;c. &amp;lt;/code&amp;gt;&amp;quot;, like this: {{para|date|c. 1900}}; for no date, add as {{para|date|n.d.}} }}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_year&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR:&lt;br /&gt;
** '''year''': Year of source being referenced ...&lt;br /&gt;
**: Is the template {{tl|cite episode}} or {{tl|cite serial}}?&lt;br /&gt;
&lt;br /&gt;
::::NO: Does the template use {{para|ref|harv}}? (answer YES if the template is {{tlx|citation}})&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES:  Is the date format in {{para|date}} YYYY-MM-DD?&lt;br /&gt;
::::::NO: use {{para|date}}.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
::::YES: Does the citation use {{para|ref|harv}}?&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES: Is the date format in {{para|date}} DD Month YYYY or Month YYYY or YYYY or Month DD, YYYY or YYYY-MM-DD?&lt;br /&gt;
::::::NO: {{para|year}} ''required''.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_origyear&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''orig-year''': Original publication year; displays after the date or year. For clarity, please supply specifics. For example: {{para|orig-year|First published 1859}} or {{para|orig-year|Composed 1904}}.{{#if:|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_began&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR: '''began''': Full date the first part of the program or episode aired.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ended&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;AND: '''ended''': Full date the last part of the program or episode aired.}}{{#if:|&amp;amp;#32;Aliases:}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Publication dates in references within an article should all have the same format. This may be a different format from that used for archive and access dates. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
====Publisher====&lt;br /&gt;
* '''publisher''': Name of publisher; may be wikilinked if relevant. Not normally included for periodicals. Corporate designations such as &amp;quot;Ltd&amp;quot;, &amp;quot;Inc&amp;quot; or &amp;quot;GmbH&amp;quot; are not usually included. Displays after '''title'''.&lt;br /&gt;
:Should normally be set to [[Internet Engineering Task Force|IETF]] for RFC, STD, BCP, FYI, I-D (internet draft), IEN, and RTR documents.&lt;br /&gt;
:Note: There are reasons this can't just be the default; see [[Template talk:Cite IETF#Make publisher always IETF?]]&lt;br /&gt;
* '''location''': Geographical place of publication; generally not wikilinked; omit when the name of the work includes the location (examples: ''The Boston Globe'', ''The Times of India''). Displays preceding '''publisher'''.&lt;br /&gt;
&amp;lt;!--* '''publication-date''': Date of publication when different from the date the work was written. Displays only if '''year''' or '''date''' are defined and only if different, else '''publication-date''' is used and displayed as '''date'''. Use the same format as other dates in the article; do not wikilink. Follows '''publisher'''; preceded by &amp;quot;published&amp;quot; and enclosed in parenthesis.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====In-source locations====&lt;br /&gt;
* '''page''': Page in the source that supports the content. Displays preceded with {{code|p.}} unless {{para|nopp|y}}. Also used to create an anchor link for the document's URL. If either '''section''' or '''appendix''' is also given, the anchor will link to the section or appendix instead of the page. Can also be used in combination with '''pages''' to link to the first page in the given page range if '''section''' and '''appendix''' are not specified.&lt;br /&gt;
* OR: '''pages''': Pages in the source that supports the content; separate page ranges with an en dash (–); separate non-sequential pages with a comma (,); do not use to indicate the total number of pages in the source. Displays preceded with {{code|pp.}} unless {{para|nopp|y}}.&lt;br /&gt;
** '''nopp''': Set to &amp;lt;var&amp;gt;y&amp;lt;/var&amp;gt; to suppress the {{code|p.}} or {{code|pp.}} notations where this is inappropriate; for example, where {{para|page|Front cover}}.&lt;br /&gt;
* '''section''': Section number of the document. {{para|section|4.3.1}} produces &amp;quot;sec. 4.3.1&amp;quot; Also used to create an anchor link for the document's URL. Can also be used in combination with '''sections''' to link to the first section in the given section range.&lt;br /&gt;
* '''sections''': Section range of the document. {{para|sections|4.3-4.7}} produces &amp;quot;sec. 4.3-4.7&amp;quot;&lt;br /&gt;
* OR: '''appendix''': Appendix number of the document. {{para|appendix|A.1}} produces &amp;quot;sec. A.1&amp;quot; Also used to create an anchor link for the document's URL.&lt;br /&gt;
* OR: '''referenceid''': Reference id for the document. Used to create an anchor link for the document's URL.&lt;br /&gt;
* '''nosec''': Using '''section''', ''''sections''', or '''appendix''' automatically places the sec. notation. Se {{para|nosec|y}} to hide the sec. notation.&lt;br /&gt;
&lt;br /&gt;
====URL====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_url&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''url''': URL of an online location where the text of the publication can be found. Cannot be used if '''title''' is wikilinked. If applicable, the link may point to the specific page(s) referenced. Remove spurious tracking parameters from URLs, e.g. &amp;lt;code&amp;gt;#ixzz2rBr3aO94&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;. Do not link to any commercial booksellers, such as Amazon.com. See: [[WP:PAGELINKS]].&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_accessdate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''access-date''': Full date when the contents pointed to by '''url''' was last verified to support the text in the article; do not wikilink; requires '''url'''; use the same format as other access and archive dates in the citations.{{r|date|group=date}}  ''Not required for linked documents that do not change.'' For example, '''access-date''' is not required for links to copies of published research papers accessed via DOI or a published book, but is required for links to news articles on commercial sites (these are changed from time to time, even if also published in a physical medium). Note that '''access-date''' is the date that the URL was checked to not only be working, but to support the assertion being cited (which the current version of the page may not do). Can be [[Help:Citation Style 1/accessdate|hidden or styled]] by registered editors. Alias: '''accessdate'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_archiveurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-url''': The URL of an [[Web archiving|archived]] copy of a web page, if or in case the url becomes unavailable. Typically used to refer to services like [[WebCite]] (see: [[Wikipedia:Using WebCite]]) and [[Internet Archive]] (see: [[Wikipedia:Using the Wayback Machine]]); requires '''archive-date''' and '''url'''. Alias: '''archiveurl'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_archivedate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-date''': Date when the original URL was archived; preceded by default text &amp;quot;archived from the original on&amp;quot;. Use the same format as other access and archive dates in the citations. This does not necessarily have to be the same format that was used for citing publication dates.{{r|date|group=date}} Do not wikilink. Alias: '''archivedate'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_deadurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''dead-url''': When the URL is still live, but pre-emptively archived, then set {{para|dead-url|no}}. This changes the display order with the title retaining the original link and the archive linked at the end. Alias: '''deadurl'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_template doc demo&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''template-doc-demo''': The archive parameters will be error checked to ensure that all the required parameters are included, or else {{tl|citation error}} is invoked. With errors, main, help and template pages are placed into one of the subcategories of [[:Category:Articles with incorrect citation syntax]]. Set {{para|template-doc-demo|true}} to disable categorization; mainly used for documentation where the error is demonstrated.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''format''': Format of the work referred to by '''url'''; for example: PDF, DOC, or XLS; displayed in parentheses after '''title'''. HTML is implied and should not be specified. Does not change the [[Help:External link icons|external link icon]]. Note: External link icons do not include [[Wikipedia:ALT|alt text]]; thus, they do not add format information for the visually impaired.&lt;br /&gt;
{{MediaWiki URL rules}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Access-date and archive-date in references should all have the same format – either the format used for publication dates, or YYYY-MM-DD. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
* '''section-url''': URL to an individual section of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''page-url''': URL to an individual page of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''autolink''': {{para|autolink|&amp;lt;var&amp;gt;yes&amp;lt;/var&amp;gt;}} or {{para|autolink|&amp;lt;var&amp;gt;no&amp;lt;/var&amp;gt;}} Automatically generate a link to ietf.org for documents specified with {{para|rfc}}, {{para|std}}, {{para|bcp}}, {{para|fyi}}, {{para|draft}}, {{para|ien}}, or {{para|rtr}}. (enabled by default)&lt;br /&gt;
&lt;br /&gt;
====Anchor====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ref&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''ref''': ID for anchor. By default, no anchor is generated. The ordinary nonempty value {{para|ref|&amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;}} generates an anchor with the given &amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;; such a linkable reference can be made the target of [[Wikipedia:Citing sources/Further considerations#Wikilinks to full references|wikilinks to full references]], especially useful in short citations like [[Wikipedia:Citing sources#Shortened footnotes|shortened notes]] and [[Wikipedia:Parenthetical referencing|parenthetical referencing]]. The special value {{para|ref|harv}} generates an anchor suitable for the {{tl|harv}} template. See: [[Template:Citation/doc#Anchors for Harvard referencing templates|Anchors for Harvard referencing templates]]. The special value {{para|ref|ietf}} generates an anchor suitable for use with this template's '''idanchor''' parameter.&lt;br /&gt;
&lt;br /&gt;
====Identifiers====&lt;br /&gt;
* '''rfc''': Number of the [[Request for Comments]] (RFC) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''std''': Number of the [[Internet Standard]] (STD) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''bcp''': Number of the [[Best Current Practice]] (BCP) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''fyi''': Number of the [[For Your Information]] (FYI) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''draft''': Name of the [[Internet Draft]] (I-D) document, including the leading draft-. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''ien''': Number of the [[Internet Experiment Note]] (IEN) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''rtr''': Number of the [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''id''': A [[unique identifier]] for the document, used if none of the above are applicable. Overrides automatically generated document identifiers—'''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''—and should not be specified unless absolutely necessary. If used, you also need to specify the kind of identifier you are using. Don't wikilink, use '''idlink''' instead.&lt;br /&gt;
* '''idanchor''': Anchor link target. By default, no anchor link is generated. The special value {{para|idanchor|ietf}} generates an anchor link suitable for use with this template's '''ref''' parameter. Requires one of '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' fields to be present for the anchor link text.&lt;br /&gt;
* OR: '''idlink''': Internal document anchor or title of a Wikipedia article to link via the document identifier. Article should already exist. Must not be wikilinked itself. Do not use this on its own, but along with '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''idlinktype''': One of the values: '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' can be given to '''idlinktype''' to force the template to use the specified document identifier as the link text for '''idanchor''' or '''idlink'''. Do not use this on its own, but along with '''idanchor''' or '''idlink''' and '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''doi''': A [[digital object identifier]] for the document, such as ''10.1038/news070508-7''. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
** '''doi_brokendate''': The date that the DOI was determined to be broken&lt;br /&gt;
* '''issn''': [[International Standard Serial Number]] for the document; 8 characters; may be split into two groups of four using a hyphen. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
&lt;br /&gt;
====Quote====&lt;br /&gt;
* '''quote''': Relevant text quoted from the source. Displays enclosed in quotes.{{#if: ||&amp;amp;#32;When supplied, the citation terminator (a period by default) is suppressed, so the quote needs to include terminating punctuation.}}&lt;br /&gt;
&lt;br /&gt;
====Editors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''editor-last''': Surname of editor. Do not wikilink—use '''editor-link''' instead. Where the surname is usually written first—as in Chinese—or for corporate authors, simply use '''editor-last''' to include the same format as the source. Aliases: '''editor1-last''', '''editor''', '''editors'''{{#if: |, '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.|.}}&lt;br /&gt;
** '''editor-first''': Given or first names of editor, including title(s); example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''editor-link''' instead.  Aliases: '''editor1-first'''.&lt;br /&gt;
**OR: for multiple editors, use '''editor1-last''', '''editor1-first'''  through {{#if: |'''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-last''', '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-first'''|'''editor4-last''', '''editor4-first''' for up to four editors}}.&lt;br /&gt;
:* '''editor-link''': Title of existing Wikipedia article about the editor—not the editor's website; do not wikilink. Aliases: '''editor1-link'''.&lt;br /&gt;
:*OR: for multiple editors, use {{#if: |'''editor1-link''' through '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-link'''|'''editor1-link''' through '''editor4-link'''}}.&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s)&lt;br /&gt;
:Display:&lt;br /&gt;
::If authors: Authors are first, followed by {{#if: |the included work, then &amp;quot;In&amp;quot; and the editors|the editors and the included work}}, then the main work.&lt;br /&gt;
::If no authors: Editors appear before the included work; a single editor is followed by &amp;quot;ed.&amp;quot;; multiple editors are followed by &amp;quot;eds.&amp;quot;{{#if: |{{;}} exactly four editors will show three editors followed by &amp;quot;et al., eds.&amp;quot; &amp;lt;!-- ERROR MESSAGE IS HIDDEN BY DEFAULT --&amp;gt; &amp;lt;!-- along with an error message --&amp;gt;unless '''display-editors''' is used.|{{;}} more than three editors will be followed by &amp;quot;et al., eds.&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
====Laysummary====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lay&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{#if: |'''lay-url'''|'''laysummary'''}}: URL link to a non-technical summary or review of the source; the URL title is set to &amp;quot;Lay summary&amp;quot;. {{#if: |Aliases: '''lay-summary''', '''laysummary'''.|}}&lt;br /&gt;
** '''lay-source''': Name of the source of the laysummary. Displays in italics and preceded by an endash. Alias: '''laysource'''.&lt;br /&gt;
** '''lay-date''': Date of the summary. Displays in parentheses. Alias: '''laydate'''.&lt;br /&gt;
&lt;br /&gt;
====Display options====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_mode&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''mode''': Sets element separator, default terminal punctuation, and certain capitalization according to the value provided.  For {{para|mode|cs1}}, element separator is a semicolon (&amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt;); terminal punctuation is a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); where appropriate, initial letters of certain words are capitalized ('Retrieved...').  For {{para|mode|cs2}}, element separator is a comma (&amp;lt;code&amp;gt;,&amp;lt;/code&amp;gt;); terminal punctuation is omitted; where appropriate, initial letters of certain words are not capitalized ('retrieved...'). To override default terminal punctuation use '''postscript'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-mask&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''author-mask''': Replaces the name of the first author with [[dash#Em dash|em dashes]] or text. Set '''author-mask''' to a numeric value ''n'' to set the dash ''n'' em spaces wide; set '''author-mask''' to a text value to display the text without a trailing author separator; for example, &amp;quot;with&amp;quot;. You must still include the values for all authors for metadata purposes. Primarily intended for use with bibliographies or bibliography styles where multiple works by a single author are listed sequentially such as {{sfnote}}. Do not use in a list generated by {{tlx|reflist}}, {{tag|references|s}} or similar as there is no control of the order in which references are displayed.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-name-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-name-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between last and first names; defaults to a comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between authors; defaults to a semicolon and space (&amp;lt;code&amp;gt;; &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-format'''}}: (deprecated) Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-authors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayauthors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-authors''': {{#if: |Controls the number of author names that are displayed when a citation is published. To change the displayed number of authors, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, all authors are displayed. Aliases: '''displayauthors'''.|Controls the number of author names that are displayed when a citation is published. To control the displayed number of author names, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, the only the first eight cited authors are displayed; subsequent authors beyond eight are represented in the published citation by &amp;quot;et al.&amp;quot; If a citation contains nine author names and one wishes all nine author names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-authors|9}}. Aliases: '''displayauthors'''.}}&lt;br /&gt;
{{#if: |&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayeditors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-editors''': Controls the number of editor names that are displayed when a citation is published. To change the displayed number of editors, set '''display-editors''' to the desired number. For example, {{para|display-editors|2}} will display only the first two editors in a citation. By default, all editors are displayed except when there are four editors, then the editor list in the citation is truncated to three editors, followed by &amp;quot;et al.&amp;quot; This exception mimics the older version of the template for compatibility. If a citation contains four editor names and one wishes all four editor names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-editors|4}}. Aliases: '''displayeditors'''.}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lastauthoramp&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last-author-amp''': Switches the separator between the last two names of the author list to space ampersand space (&amp;lt;code&amp;gt; &amp;amp; &amp;lt;/code&amp;gt;) when set to any value. Example: {{para|last-author-amp|yes}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_postscript&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''postscript''': Controls the closing punctuation for a citation; defaults to {{#if: |none|a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); {{#if: |for no terminating punctuation, specify {{para|postscript|none}} – leaving {{para|postscript}} empty is the same as omitting it, but is ambiguous|if the parameter is present, but blank, no terminating punctuation will be used}}}}. Ignored if '''quote''' is defined.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the punctuation used to separate lists of authors, editors, etc. Defaults to a {{#if: |comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;)|period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;)}};  {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}} }}&amp;lt;/s&amp;gt; Use '''mode'''.&lt;br /&gt;
&lt;br /&gt;
==Citation styles==&lt;br /&gt;
Established citation styles for coauthors:&lt;br /&gt;
&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/mla/mla.htm MLA style]: Last, First and First Last. &amp;quot;If there are more than three authors, you may list only the first author followed by the phrase ''et al''.&amp;quot;&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/apa/apa.htm APA style]: Last, F. &amp;amp; Last, F.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/citchi.htm Chicago Manual of Style]: Last, First, and First Last.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/cittur.htm Turabian]: same as Chicago Reference List, above.&lt;br /&gt;
*[http://www.library.uq.edu.au/training/citation/harvard.html Harvard]: Last, F., Last, F. &amp;amp; Last, F.&lt;br /&gt;
&lt;br /&gt;
==Technical notes==&lt;br /&gt;
&lt;br /&gt;
===Regression testing===&lt;br /&gt;
[[Regression testing|Regression tests]] are available here:&lt;br /&gt;
*{{tl|Cite IETF/regression tests}}&lt;br /&gt;
&lt;br /&gt;
===Subtemplates===&lt;br /&gt;
{{tl|Cite IETF}} uses the following subtemplates:&lt;br /&gt;
*{{tl|Cite IETF/doctypes}}&lt;br /&gt;
*{{tl|Cite IETF/makelink}}&lt;br /&gt;
*{{tl|Cite IETF/refanchor}}&lt;br /&gt;
&lt;br /&gt;
===URL generation===&lt;br /&gt;
HTML versions of the [[Internet Engineering Task Force|IETF]] documents are created with the Rfcmarkup tool from Henrik Levkowetz.&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/&lt;br /&gt;
| title       = Rfcmarkup Tool&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = October 16, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/rfcmarkup-1.85.tgz&lt;br /&gt;
| title       = rfcmarkup-1.85.tgz (25 KB)&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = October 16, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Request for Comments]] (RFC), [[Best Current Practice]] (BCP), and [[Internet Draft]] (I-D) documents which have been processed by the Rfcmarkup tool are cached by &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;tools.ietf.org/html/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/&lt;br /&gt;
| title       = IETF Documents&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/code.txt&lt;br /&gt;
| title       = HTTP 404 handler for a directory of htmlized documents&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| date        = October 14, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; and are linked via:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/rfc&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/bcp&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/draft-&amp;lt;/nowiki&amp;gt;&amp;lt;draft name&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Standard]] (STD) and [[For Your Information]] (FYI) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;doc=&amp;lt;/code&amp;gt; parameter:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=std&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=fyi&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Experiment Note]] (IEN) and [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;url=&amp;lt;/code&amp;gt; parameter and a path to the document:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/ien/ien&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/museum/RAREreports/rtr&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===URL anchor generation===&lt;br /&gt;
Anchors are generated for the URL using four parameters:&lt;br /&gt;
:{{para|section|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#section-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|appendix|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#appendix-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|referenceid|&amp;lt;var&amp;gt;id&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#ref-&amp;lt;var&amp;gt;&amp;lt;id&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|page|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#page-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
The template will give priority to the first of the parameters: {{para|section}}, {{para|appendix}}, {{para|referenceid}}, or {{para|page}} in this order and create an anchor using the first matching parameter.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
==Further reading==&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Internet Official Protocol Standards&lt;br /&gt;
| rfc         = 5000&lt;br /&gt;
| std         = 1&lt;br /&gt;
| year        = 2008&lt;br /&gt;
| month       = May&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Not All RFCs are Standards&lt;br /&gt;
| rfc         = 1796&lt;br /&gt;
| last1       = Huitema&lt;br /&gt;
| first1      = Christian&lt;br /&gt;
| last2       = Postel&lt;br /&gt;
| first2      = Jon&lt;br /&gt;
| authorlink2 = Jon Postel&lt;br /&gt;
| last3       = Crocker&lt;br /&gt;
| first3      = Steve&lt;br /&gt;
| authorlink3 = Steve Crocker&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = April&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&lt;br /&gt;
*{{cite web&lt;br /&gt;
| url         = http://www.livinginternet.com/i/ia_rfc_ref.htm&lt;br /&gt;
| title       = Related RFC's, BCP, FYI, IEN, RTR, STD&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Stewart&lt;br /&gt;
| first       = William&lt;br /&gt;
| publisher   = LivingInternet.com&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Citation Style 1}}&lt;br /&gt;
{{Wikipedia referencing}}&lt;br /&gt;
{{UF-COinS}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox |&lt;br /&gt;
| &amp;lt;!-- CATEGORIES BELOW THIS LINE, PLEASE: --&amp;gt;&lt;br /&gt;
[[Category:Citation Style 1 specific-source templates]]&lt;br /&gt;
[[Category:Specific-source templates]]&lt;br /&gt;
[[Category:Templates generating COinS]]&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428357</id>
		<title>Template:Cite IETF/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428357"/>
		<updated>2017-11-26T14:09:30Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&amp;lt;includeonly&amp;gt;{{Intricate template}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;!-- PLEASE ADD CATEGORIES WHERE INDICATED AT THE BOTTOM OF THIS PAGE --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is a template to cite [[Internet Engineering Task Force|IETF]] documents&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force&lt;br /&gt;
| rfc         = 4677&lt;br /&gt;
| fyi         = 17&lt;br /&gt;
| last1       = Hoffman&lt;br /&gt;
| first1      = Paul&lt;br /&gt;
| authorlink1 = Paul Hoffman (VPNC)&lt;br /&gt;
| last2       = Harris&lt;br /&gt;
| first2      = Susan&lt;br /&gt;
| year        = 2006&lt;br /&gt;
| month       = September&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = A Primer On Internet and TCP/IP Tools&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Documentation&lt;br /&gt;
| section     = 4&lt;br /&gt;
| last1       = Kessler&lt;br /&gt;
| first1      = Gary C.&lt;br /&gt;
| last2       = Shepard&lt;br /&gt;
| first2      = Steven D.&lt;br /&gt;
| year        = 1994&lt;br /&gt;
| month       = December&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| ref         = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; including:&lt;br /&gt;
*[[Request for Comments]] (RFC)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Request for Comments (RFCs)&lt;br /&gt;
| section     = 4.1&lt;br /&gt;
| pages       = 36&amp;amp;nbsp;– 38&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Standard]] (STD)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Internet Standards Process -- Revision 3&lt;br /&gt;
| rfc         = 2026&lt;br /&gt;
| bcp         = 9&lt;br /&gt;
| last        = Bradner&lt;br /&gt;
| first       = Scott O.&lt;br /&gt;
| authorlink  = Scott Bradner&lt;br /&gt;
| year        = 1996&lt;br /&gt;
| month       = October&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Standards&lt;br /&gt;
| section     = 4.2&lt;br /&gt;
| pages       = 38&amp;amp;nbsp;– 39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Best current practice]] (BCP)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Best Current Practices&lt;br /&gt;
| rfc         = 1818&lt;br /&gt;
| bcp         = 1&lt;br /&gt;
| last1       = Postel&lt;br /&gt;
| first1      = Jon&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2       = Rekhter&lt;br /&gt;
| first2      = Yakov&lt;br /&gt;
| authorlink2 = Yakov Rekhter&lt;br /&gt;
| last3       = Li&lt;br /&gt;
| first3      = Tony&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = August&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[For Your Information]] (FYI)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = F.Y.I. on F.Y.I.: Introduction to the F.Y.I. Notes&lt;br /&gt;
| rfc         = 1150&lt;br /&gt;
| fyi         = 1&lt;br /&gt;
| last1       = Malkin&lt;br /&gt;
| first1      = Gary Scott&lt;br /&gt;
| last2       = Reynolds&lt;br /&gt;
| first2      = Joyce K.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year        = 1990&lt;br /&gt;
| month       = March&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = For Your Information Documents&lt;br /&gt;
| section     = 4.3&lt;br /&gt;
| page        = 39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Draft]] (I-D)&lt;br /&gt;
*[[Internet Experiment Note]] (IEN)&lt;br /&gt;
*[[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = RARE Technical Reports&lt;br /&gt;
| section     = 4.4&lt;br /&gt;
| page        = 40&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{TOC limit|3}}&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
'''''Note''''': All parameter names '''must''' be in [[lowercase]].&lt;br /&gt;
&lt;br /&gt;
Copy a blank version to use. Remember to use the &amp;quot;|&amp;quot; (pipe) character between each parameter. Please delete any unused parameters to avoid clutter in the edit window.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Full version (copy and paste text below and delete parameters you don't need)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |std= |bcp= |fyi= |draft= |ien= |rtr= |sectionname= |section= |sections= |appendix= |referenceid= |page= |pages= |last1= |first1= |authorlink1= |last2= |first2= |authorlink2= |authormask= |coauthors= |editor1-last= |editor1-first= |editor1-link= |others= |date= |year= |month= |origyear= |publisher=[[Internet Engineering Task Force|IETF]] |location= |language= |format= |accessdate= |url= |section-url= |page-url= |autolink= |id= |idanchor= |idlink= |idlinktype= |doi= |doi_brokendate= |issn= |archiveurl= |archivedate= |quote= |nopp= |nosec= |ref= |laysummary= |laydate= |separator= |postscript= |lastauthoramp= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Most commonly used parameters (use this and you won't have to delete as much)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |sectionname= |section= |page= |last= |first= |authorlink= |coauthors= |year= |month= |publisher=[[Internet Engineering Task Force|IETF]] |accessdate= |doi= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 1&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 2&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&amp;lt;pre&amp;gt;{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
| doi = 10.17487/RFC0854&lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
| doi = 10.17487/RFC0854&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Vertical list !! Prerequisites !! Brief instructions&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title       = &lt;br /&gt;
| rfc         = &lt;br /&gt;
| std         = &lt;br /&gt;
| bcp         = &lt;br /&gt;
| fyi         = &lt;br /&gt;
| draft       = &lt;br /&gt;
| ien         = &lt;br /&gt;
| rtr         = &lt;br /&gt;
| sectionname = &lt;br /&gt;
| section     = &lt;br /&gt;
| sections    = &lt;br /&gt;
| appendix    = &lt;br /&gt;
| referenceid = &lt;br /&gt;
| page        = &lt;br /&gt;
| pages       = &lt;br /&gt;
| last        = &lt;br /&gt;
| first       = &lt;br /&gt;
| authorlink  = &lt;br /&gt;
| authormask  = &lt;br /&gt;
| coauthors   = &lt;br /&gt;
| lastN       = &lt;br /&gt;
| firstN      = &lt;br /&gt;
| authorN-link = &lt;br /&gt;
| editor      = &lt;br /&gt;
| editorN     = &lt;br /&gt;
| editorN-last = &lt;br /&gt;
| editorN-first = &lt;br /&gt;
| editor-link = &lt;br /&gt;
| editorN-link = &lt;br /&gt;
| others      = &lt;br /&gt;
| date        = &lt;br /&gt;
| year        = &lt;br /&gt;
| month       = &lt;br /&gt;
| origyear    = &lt;br /&gt;
| publisher   = &lt;br /&gt;
| location    = &lt;br /&gt;
| language    = &lt;br /&gt;
| format      = &lt;br /&gt;
| accessdate  = &lt;br /&gt;
| url         = &lt;br /&gt;
| section-url = &lt;br /&gt;
| page-url    = &lt;br /&gt;
| autolink    = &lt;br /&gt;
| id          = &lt;br /&gt;
| idanchor    = &lt;br /&gt;
| idlink      = &lt;br /&gt;
| idlinktype  = &lt;br /&gt;
| doi         = &lt;br /&gt;
| doi_brokendate = &lt;br /&gt;
| issn        = &lt;br /&gt;
| archiveurl  = &lt;br /&gt;
| archivedate = &lt;br /&gt;
| quote       = &lt;br /&gt;
| nopp        = &lt;br /&gt;
| nosec       = &lt;br /&gt;
| ref         = &lt;br /&gt;
| laysummary  = &lt;br /&gt;
| laydate     = &lt;br /&gt;
| separator   = &lt;br /&gt;
| postscript  = &lt;br /&gt;
| lastauthoramp = &lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
lastN&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
editorN-last&lt;br /&gt;
editor or editor-last&lt;br /&gt;
editorN or editorN-last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
year&lt;br /&gt;
year or date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
publisher&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
sectionname&lt;br /&gt;
sectionname&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
idanchor or idlink&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
doi&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
url, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
archiveurl&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
page or pages&lt;br /&gt;
section, sections, or appendix&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
laysummary&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
coauthors or &amp;gt;1 lastN&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) RFC number; 4677&lt;br /&gt;
(no wikilink) STD number&lt;br /&gt;
(no wikilink) BCP number&lt;br /&gt;
(no wikilink) FYI number; 17&lt;br /&gt;
(no wikilink) I-D (internet draft) name&lt;br /&gt;
(no wikilink) IEN number&lt;br /&gt;
(no wikilink) RTR number&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) section number; 3.3&lt;br /&gt;
(no wikilink) section range (can be used together with the section parameter)&lt;br /&gt;
(no wikilink) appendix number; A.1&lt;br /&gt;
(no wikilink) reference id&lt;br /&gt;
(no wikilink) page number&lt;br /&gt;
(no wikilink) page range (can be used together with the page parameter)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink)&lt;br /&gt;
(no wikilink)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
alternative to first2, last2...first9, last9&lt;br /&gt;
(no wikilink) N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
preferred (no wikilink) This is the preferred parameter with its alternates listed below.&lt;br /&gt;
alternative to date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
should be &amp;lt;nowiki&amp;gt;[[Internet Engineering Task Force|IETF]]&amp;lt;/nowiki&amp;gt; for IETF documents.&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
hides automatic 'p.' or 'pp.'&lt;br /&gt;
hides automatic 'sec.'&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 7159&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 11&lt;br /&gt;
| author      = T. Bray&lt;br /&gt;
| authorlink  = Tim Bray&lt;br /&gt;
| date        = March 2014&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| doi         = 10.17487/RFC7159&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 7159&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 11&lt;br /&gt;
| author      = T. Bray&lt;br /&gt;
| authorlink  = Tim Bray&lt;br /&gt;
| date        = March 2014&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| doi         = 10.17487/RFC7159&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| doi         = 10.17487/RFC2616&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| doi         = 10.17487/RFC2616&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = August 3, 2008&lt;br /&gt;
| doi         = 10.17487/RFC1034&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = August 3, 2008&lt;br /&gt;
| doi         = 10.17487/RFC1034&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
Nested parameters rely on their parent parameters:&lt;br /&gt;
*''parent''&lt;br /&gt;
*OR: ''parent2''—may be used instead of ''parent''&lt;br /&gt;
**''child''—may be used with ''parent'' (and is ignored if ''parent'' is not used)&lt;br /&gt;
**OR: ''child2''—may be used instead of ''child'' (and is ignored if ''parent2'' is not used)&lt;br /&gt;
&lt;br /&gt;
:Where aliases are listed, only one of the parameters may be defined; if multiple aliased parameters are defined, then only one will show.&lt;br /&gt;
&lt;br /&gt;
This template embeds [[COinS]] metadata in the HTML output, allowing [[reference management software]] to retrieve bibliographic metadata. See: [[Wikipedia:COinS]]. As a general rule, only one data item per parameter. Do not include explanatory or alternate text:&lt;br /&gt;
* Use {{xt|{{para|date|27 September 2007}}}} not {{!xt|{{para|date|27 September 2007 (print version 25 September)}}}}&lt;br /&gt;
&lt;br /&gt;
Use of templates within the citation template, is discouraged because many of these templates will add extraneous HTML or CSS that will be rendered in the metadata. Also, HTML entities (e.g. &amp;lt;code&amp;gt;&amp;amp;amp;nbsp;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;amp;amp;ndash;&amp;lt;/code&amp;gt;) should not be used in parameters that contribute to the metadata.  Do not include Wiki markup &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (italic font) or &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;'''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (bold font) because these markup characters will contaminate the metadata.&lt;br /&gt;
&lt;br /&gt;
{{hidden begin |title=COinS metadata is created for these parameters}}&lt;br /&gt;
*{{para|periodical}}, {{para|journal}}, {{para|newspaper}}, {{para|magazine}}, {{para|work}}, {{para|website}}, {{para|encyclopedia}}, {{para|encyclopaedia}}, {{para|dictionary}}&lt;br /&gt;
*{{para|chapter}}, {{para|contribution}}, {{para|entry}}, {{para|article}}, {{para|section}}&lt;br /&gt;
*{{para|title}}&lt;br /&gt;
*{{para|publicationplace}}, {{para|publication-place}}, {{para|place}}, {{para|location}}&lt;br /&gt;
*{{para|date}}, {{para|year}}, {{para|publicationdate}}, {{para|publication-date}}&lt;br /&gt;
*{{para|series}}, {{para|version}}&lt;br /&gt;
*{{para|volume}}&lt;br /&gt;
*{{para|issue}}, {{para|number}}&lt;br /&gt;
*{{para|page}}, {{para|pages}}, {{para|at}}&lt;br /&gt;
*{{para|edition}}&lt;br /&gt;
*{{para|publisher}}, {{para|distributor}}, {{para|institution}}&lt;br /&gt;
*{{para|url}}&lt;br /&gt;
*{{para|chapterurl}}, {{para|chapter-url}}, {{para|contributionurl}}, {{para|contribution-url}}, {{para|sectionurl}}, {{para|section-url}}&lt;br /&gt;
*{{para|author#}}, {{para|Author#}}, {{para|authors#}}, {{para|author#-last}}, {{para|author-last#}}, {{para|last#}}, {{para|surname#}}&lt;br /&gt;
*{{para|&amp;quot;author#-first}}, {{para|author-first#}}, {{para|first#}}, {{para|given#}}&lt;br /&gt;
*any of the named identifiers ({{para|isbn}}, {{para|issn}}, {{para|doi}}, {{para|pmc}}, etc.)&lt;br /&gt;
{{hidden end}}&lt;br /&gt;
&lt;br /&gt;
By default, sets of fields are terminated with a period (.). {{#ifeq: {{{lua|}}|yes||This can be an issue when the last field uses an abbreviation or initial that ends with a period, as then two periods will display (..). The only solution is to not include the last period in the value for the set of fields.}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
&lt;br /&gt;
====Authors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last''': Surname of author. Do not wikilink—use '''author-link''' instead. For corporate authors, simply use '''last''' to include the same format as the source. Aliases: '''last1''', '''author''', '''authors''', '''author1'''{{#if:|, }}.&lt;br /&gt;
** '''first''': Given or first names of author, including title(s); for example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''author-link''' instead. Aliases: '''first1'''. Requires '''last'''; first name will not display if '''last''' is empty. &lt;br /&gt;
{{#if: |&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''', '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' where ''n'' is any consecutive number for an unlimited number of authors (each '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' requires a corresponding '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''). See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.&lt;br /&gt;
|&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last9''', '''first9''' for up to nine authors. By default, if nine authors are defined, only eight will show and &amp;quot;et al.&amp;quot; will show in place of the last author. See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author9'''.}}&lt;br /&gt;
:* '''author-link''': Title of existing Wikipedia article about the author—not the author's website; do not wikilink. Aliases: '''authorlink1''', '''authorlink''', '''author1-link''', '''author1link'''.&lt;br /&gt;
{{#if: |&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''. Aliases: '''author1link''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;link'''.&lt;br /&gt;
|&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link9'''. Aliases: '''author1link''' through '''author9link'''.}}&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s){{#if: |&lt;br /&gt;
* {{xtd|'''coauthors'''}}: (deprecated) &amp;lt;s&amp;gt;Names of coauthors. Requires '''author''', '''authors''', or '''last''n'''''&amp;lt;/s&amp;gt; Include coauthors in '''author''' or '''authors''' or use separate '''author''n''''' or '''last''n'''''/'''first''n''''' to list coauthors.}}{{#if: yes|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_others&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''others''': To record other contributors to the work, including illustrators and translators. For the parameter value, write ''Illustrated by John Smith'' or ''Translated by John Smith''.}}&lt;br /&gt;
:When using {{sfnote|lc=y}} or {{paren|lc=y}} styles with templates, do not use multiple names in one field or else the anchor will not match the inline link.&lt;br /&gt;
&lt;br /&gt;
====Title====&lt;br /&gt;
* '''title''': Title of the document; displays in italics. If {{em|both}} '''title''' and '''sectionname''' are omitted, then the template will attempt to auto-generate a title using the first of the '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''', '''rtr''' or '''id''' document identifier parameters, in that order.&lt;br /&gt;
:Titles containing certain characters will display and link incorrectly unless those characters are encoded.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left: 5em&amp;quot;&lt;br /&gt;
! newline !! [ !! ] !! &amp;amp;#124;&lt;br /&gt;
|-&lt;br /&gt;
| space || &amp;amp;amp;#91; || &amp;amp;amp;#93; || &amp;amp;amp;#124;&lt;br /&gt;
|}&lt;br /&gt;
* '''sectionname''': The section name or section title of the document, written in full; displays before '''title''' and enclosed in quotes.&lt;br /&gt;
* '''language''': The language the source is written in, if not English. Displays in parentheses with &amp;quot;in&amp;quot; before the language name. Use the full language name{{#if:|&amp;amp;#32;or [[List of ISO 639-1 codes|ISO 639-1]] code; use of language names or language codes recognized by Wikimedia adds the page to the appropriate subcategory of {{cl|CS1 foreign language sources}}}}; do not use templates or wikilinks.&lt;br /&gt;
&lt;br /&gt;
====Date====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_date&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''date''': Date of source being referenced. Can be full date (day, month, and year) or partial date (month and year{{#if:|, season and year}}, or year). Use same format as other publication dates in the citations.{{r|date|group=date}} Required when '''year''' is used to disambiguate {{tlx|sfn}} links to multiple-work citations by the same author in the same year.{{sup|[[Template:Sfn#More_than_one_work_in_a_year|[more]]]}} Do not wikilink. Displays after the authors and is enclosed in parentheses. If there is no author, then displays after publisher.{{#if:|&amp;amp;#32;Aliases: }} {{#if:|For acceptable date formats, see [[Help:Citation Style 1#Dates]].}}&lt;br /&gt;
{{#if:|:For approximate year, precede with &amp;quot;&amp;lt;code&amp;gt;c. &amp;lt;/code&amp;gt;&amp;quot;, like this: {{para|date|c. 1900}}; for no date, add as {{para|date|n.d.}} }}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_year&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR:&lt;br /&gt;
** '''year''': Year of source being referenced ...&lt;br /&gt;
**: Is the template {{tl|cite episode}} or {{tl|cite serial}}?&lt;br /&gt;
&lt;br /&gt;
::::NO: Does the template use {{para|ref|harv}}? (answer YES if the template is {{tlx|citation}})&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES:  Is the date format in {{para|date}} YYYY-MM-DD?&lt;br /&gt;
::::::NO: use {{para|date}}.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
::::YES: Does the citation use {{para|ref|harv}}?&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES: Is the date format in {{para|date}} DD Month YYYY or Month YYYY or YYYY or Month DD, YYYY or YYYY-MM-DD?&lt;br /&gt;
::::::NO: {{para|year}} ''required''.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_origyear&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''orig-year''': Original publication year; displays after the date or year. For clarity, please supply specifics. For example: {{para|orig-year|First published 1859}} or {{para|orig-year|Composed 1904}}.{{#if:|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_began&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR: '''began''': Full date the first part of the program or episode aired.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ended&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;AND: '''ended''': Full date the last part of the program or episode aired.}}{{#if:|&amp;amp;#32;Aliases:}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Publication dates in references within an article should all have the same format. This may be a different format from that used for archive and access dates. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
====Publisher====&lt;br /&gt;
* '''publisher''': Name of publisher; may be wikilinked if relevant. Not normally included for periodicals. Corporate designations such as &amp;quot;Ltd&amp;quot;, &amp;quot;Inc&amp;quot; or &amp;quot;GmbH&amp;quot; are not usually included. Displays after '''title'''.&lt;br /&gt;
:Should normally be set to [[Internet Engineering Task Force|IETF]] for RFC, STD, BCP, FYI, I-D (internet draft), IEN, and RTR documents.&lt;br /&gt;
:Note: There are reasons this can't just be the default; see [[Template talk:Cite IETF#Make publisher always IETF?]]&lt;br /&gt;
* '''location''': Geographical place of publication; generally not wikilinked; omit when the name of the work includes the location (examples: ''The Boston Globe'', ''The Times of India''). Displays preceding '''publisher'''.&lt;br /&gt;
&amp;lt;!--* '''publication-date''': Date of publication when different from the date the work was written. Displays only if '''year''' or '''date''' are defined and only if different, else '''publication-date''' is used and displayed as '''date'''. Use the same format as other dates in the article; do not wikilink. Follows '''publisher'''; preceded by &amp;quot;published&amp;quot; and enclosed in parenthesis.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====In-source locations====&lt;br /&gt;
* '''page''': Page in the source that supports the content. Displays preceded with {{code|p.}} unless {{para|nopp|y}}. Also used to create an anchor link for the document's URL. If either '''section''' or '''appendix''' is also given, the anchor will link to the section or appendix instead of the page. Can also be used in combination with '''pages''' to link to the first page in the given page range if '''section''' and '''appendix''' are not specified.&lt;br /&gt;
* OR: '''pages''': Pages in the source that supports the content; separate page ranges with an en dash (–); separate non-sequential pages with a comma (,); do not use to indicate the total number of pages in the source. Displays preceded with {{code|pp.}} unless {{para|nopp|y}}.&lt;br /&gt;
** '''nopp''': Set to &amp;lt;var&amp;gt;y&amp;lt;/var&amp;gt; to suppress the {{code|p.}} or {{code|pp.}} notations where this is inappropriate; for example, where {{para|page|Front cover}}.&lt;br /&gt;
* '''section''': Section number of the document. {{para|section|4.3.1}} produces &amp;quot;sec. 4.3.1&amp;quot; Also used to create an anchor link for the document's URL. Can also be used in combination with '''sections''' to link to the first section in the given section range.&lt;br /&gt;
* '''sections''': Section range of the document. {{para|sections|4.3-4.7}} produces &amp;quot;sec. 4.3-4.7&amp;quot;&lt;br /&gt;
* OR: '''appendix''': Appendix number of the document. {{para|appendix|A.1}} produces &amp;quot;sec. A.1&amp;quot; Also used to create an anchor link for the document's URL.&lt;br /&gt;
* OR: '''referenceid''': Reference id for the document. Used to create an anchor link for the document's URL.&lt;br /&gt;
* '''nosec''': Using '''section''', ''''sections''', or '''appendix''' automatically places the sec. notation. Se {{para|nosec|y}} to hide the sec. notation.&lt;br /&gt;
&lt;br /&gt;
====URL====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_url&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''url''': URL of an online location where the text of the publication can be found. Cannot be used if '''title''' is wikilinked. If applicable, the link may point to the specific page(s) referenced. Remove spurious tracking parameters from URLs, e.g. &amp;lt;code&amp;gt;#ixzz2rBr3aO94&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;. Do not link to any commercial booksellers, such as Amazon.com. See: [[WP:PAGELINKS]].&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_accessdate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''access-date''': Full date when the contents pointed to by '''url''' was last verified to support the text in the article; do not wikilink; requires '''url'''; use the same format as other access and archive dates in the citations.{{r|date|group=date}}  ''Not required for linked documents that do not change.'' For example, '''access-date''' is not required for links to copies of published research papers accessed via DOI or a published book, but is required for links to news articles on commercial sites (these are changed from time to time, even if also published in a physical medium). Note that '''access-date''' is the date that the URL was checked to not only be working, but to support the assertion being cited (which the current version of the page may not do). Can be [[Help:Citation Style 1/accessdate|hidden or styled]] by registered editors. Alias: '''accessdate'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_archiveurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-url''': The URL of an [[Web archiving|archived]] copy of a web page, if or in case the url becomes unavailable. Typically used to refer to services like [[WebCite]] (see: [[Wikipedia:Using WebCite]]) and [[Internet Archive]] (see: [[Wikipedia:Using the Wayback Machine]]); requires '''archive-date''' and '''url'''. Alias: '''archiveurl'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_archivedate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-date''': Date when the original URL was archived; preceded by default text &amp;quot;archived from the original on&amp;quot;. Use the same format as other access and archive dates in the citations. This does not necessarily have to be the same format that was used for citing publication dates.{{r|date|group=date}} Do not wikilink. Alias: '''archivedate'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_deadurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''dead-url''': When the URL is still live, but pre-emptively archived, then set {{para|dead-url|no}}. This changes the display order with the title retaining the original link and the archive linked at the end. Alias: '''deadurl'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_template doc demo&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''template-doc-demo''': The archive parameters will be error checked to ensure that all the required parameters are included, or else {{tl|citation error}} is invoked. With errors, main, help and template pages are placed into one of the subcategories of [[:Category:Articles with incorrect citation syntax]]. Set {{para|template-doc-demo|true}} to disable categorization; mainly used for documentation where the error is demonstrated.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''format''': Format of the work referred to by '''url'''; for example: PDF, DOC, or XLS; displayed in parentheses after '''title'''. HTML is implied and should not be specified. Does not change the [[Help:External link icons|external link icon]]. Note: External link icons do not include [[Wikipedia:ALT|alt text]]; thus, they do not add format information for the visually impaired.&lt;br /&gt;
{{MediaWiki URL rules}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Access-date and archive-date in references should all have the same format – either the format used for publication dates, or YYYY-MM-DD. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
* '''section-url''': URL to an individual section of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''page-url''': URL to an individual page of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''autolink''': {{para|autolink|&amp;lt;var&amp;gt;yes&amp;lt;/var&amp;gt;}} or {{para|autolink|&amp;lt;var&amp;gt;no&amp;lt;/var&amp;gt;}} Automatically generate a link to ietf.org for documents specified with {{para|rfc}}, {{para|std}}, {{para|bcp}}, {{para|fyi}}, {{para|draft}}, {{para|ien}}, or {{para|rtr}}. (enabled by default)&lt;br /&gt;
&lt;br /&gt;
====Anchor====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ref&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''ref''': ID for anchor. By default, no anchor is generated. The ordinary nonempty value {{para|ref|&amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;}} generates an anchor with the given &amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;; such a linkable reference can be made the target of [[Wikipedia:Citing sources/Further considerations#Wikilinks to full references|wikilinks to full references]], especially useful in short citations like [[Wikipedia:Citing sources#Shortened footnotes|shortened notes]] and [[Wikipedia:Parenthetical referencing|parenthetical referencing]]. The special value {{para|ref|harv}} generates an anchor suitable for the {{tl|harv}} template. See: [[Template:Citation/doc#Anchors for Harvard referencing templates|Anchors for Harvard referencing templates]]. The special value {{para|ref|ietf}} generates an anchor suitable for use with this template's '''idanchor''' parameter.&lt;br /&gt;
&lt;br /&gt;
====Identifiers====&lt;br /&gt;
* '''rfc''': Number of the [[Request for Comments]] (RFC) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''std''': Number of the [[Internet Standard]] (STD) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''bcp''': Number of the [[Best Current Practice]] (BCP) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''fyi''': Number of the [[For Your Information]] (FYI) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''draft''': Name of the [[Internet Draft]] (I-D) document, including the leading draft-. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''ien''': Number of the [[Internet Experiment Note]] (IEN) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''rtr''': Number of the [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''id''': A [[unique identifier]] for the document, used if none of the above are applicable. Overrides automatically generated document identifiers—'''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''—and should not be specified unless absolutely necessary. If used, you also need to specify the kind of identifier you are using. Don't wikilink, use '''idlink''' instead.&lt;br /&gt;
* '''idanchor''': Anchor link target. By default, no anchor link is generated. The special value {{para|idanchor|ietf}} generates an anchor link suitable for use with this template's '''ref''' parameter. Requires one of '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' fields to be present for the anchor link text.&lt;br /&gt;
* OR: '''idlink''': Internal document anchor or title of a Wikipedia article to link via the document identifier. Article should already exist. Must not be wikilinked itself. Do not use this on its own, but along with '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''idlinktype''': One of the values: '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' can be given to '''idlinktype''' to force the template to use the specified document identifier as the link text for '''idanchor''' or '''idlink'''. Do not use this on its own, but along with '''idanchor''' or '''idlink''' and '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''doi''': A [[digital object identifier]] for the document, such as ''10.1038/news070508-7''. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
** '''doi_brokendate''': The date that the DOI was determined to be broken&lt;br /&gt;
* '''issn''': [[International Standard Serial Number]] for the document; 8 characters; may be split into two groups of four using a hyphen. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
&lt;br /&gt;
====Quote====&lt;br /&gt;
* '''quote''': Relevant text quoted from the source. Displays enclosed in quotes.{{#if: ||&amp;amp;#32;When supplied, the citation terminator (a period by default) is suppressed, so the quote needs to include terminating punctuation.}}&lt;br /&gt;
&lt;br /&gt;
====Editors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''editor-last''': Surname of editor. Do not wikilink—use '''editor-link''' instead. Where the surname is usually written first—as in Chinese—or for corporate authors, simply use '''editor-last''' to include the same format as the source. Aliases: '''editor1-last''', '''editor''', '''editors'''{{#if: |, '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.|.}}&lt;br /&gt;
** '''editor-first''': Given or first names of editor, including title(s); example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''editor-link''' instead.  Aliases: '''editor1-first'''.&lt;br /&gt;
**OR: for multiple editors, use '''editor1-last''', '''editor1-first'''  through {{#if: |'''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-last''', '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-first'''|'''editor4-last''', '''editor4-first''' for up to four editors}}.&lt;br /&gt;
:* '''editor-link''': Title of existing Wikipedia article about the editor—not the editor's website; do not wikilink. Aliases: '''editor1-link'''.&lt;br /&gt;
:*OR: for multiple editors, use {{#if: |'''editor1-link''' through '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-link'''|'''editor1-link''' through '''editor4-link'''}}.&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s)&lt;br /&gt;
:Display:&lt;br /&gt;
::If authors: Authors are first, followed by {{#if: |the included work, then &amp;quot;In&amp;quot; and the editors|the editors and the included work}}, then the main work.&lt;br /&gt;
::If no authors: Editors appear before the included work; a single editor is followed by &amp;quot;ed.&amp;quot;; multiple editors are followed by &amp;quot;eds.&amp;quot;{{#if: |{{;}} exactly four editors will show three editors followed by &amp;quot;et al., eds.&amp;quot; &amp;lt;!-- ERROR MESSAGE IS HIDDEN BY DEFAULT --&amp;gt; &amp;lt;!-- along with an error message --&amp;gt;unless '''display-editors''' is used.|{{;}} more than three editors will be followed by &amp;quot;et al., eds.&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
====Laysummary====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lay&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{#if: |'''lay-url'''|'''laysummary'''}}: URL link to a non-technical summary or review of the source; the URL title is set to &amp;quot;Lay summary&amp;quot;. {{#if: |Aliases: '''lay-summary''', '''laysummary'''.|}}&lt;br /&gt;
** '''lay-source''': Name of the source of the laysummary. Displays in italics and preceded by an endash. Alias: '''laysource'''.&lt;br /&gt;
** '''lay-date''': Date of the summary. Displays in parentheses. Alias: '''laydate'''.&lt;br /&gt;
&lt;br /&gt;
====Display options====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_mode&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''mode''': Sets element separator, default terminal punctuation, and certain capitalization according to the value provided.  For {{para|mode|cs1}}, element separator is a semicolon (&amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt;); terminal punctuation is a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); where appropriate, initial letters of certain words are capitalized ('Retrieved...').  For {{para|mode|cs2}}, element separator is a comma (&amp;lt;code&amp;gt;,&amp;lt;/code&amp;gt;); terminal punctuation is omitted; where appropriate, initial letters of certain words are not capitalized ('retrieved...'). To override default terminal punctuation use '''postscript'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-mask&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''author-mask''': Replaces the name of the first author with [[dash#Em dash|em dashes]] or text. Set '''author-mask''' to a numeric value ''n'' to set the dash ''n'' em spaces wide; set '''author-mask''' to a text value to display the text without a trailing author separator; for example, &amp;quot;with&amp;quot;. You must still include the values for all authors for metadata purposes. Primarily intended for use with bibliographies or bibliography styles where multiple works by a single author are listed sequentially such as {{sfnote}}. Do not use in a list generated by {{tlx|reflist}}, {{tag|references|s}} or similar as there is no control of the order in which references are displayed.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-name-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-name-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between last and first names; defaults to a comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between authors; defaults to a semicolon and space (&amp;lt;code&amp;gt;; &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-format'''}}: (deprecated) Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-authors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayauthors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-authors''': {{#if: |Controls the number of author names that are displayed when a citation is published. To change the displayed number of authors, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, all authors are displayed. Aliases: '''displayauthors'''.|Controls the number of author names that are displayed when a citation is published. To control the displayed number of author names, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, the only the first eight cited authors are displayed; subsequent authors beyond eight are represented in the published citation by &amp;quot;et al.&amp;quot; If a citation contains nine author names and one wishes all nine author names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-authors|9}}. Aliases: '''displayauthors'''.}}&lt;br /&gt;
{{#if: |&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayeditors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-editors''': Controls the number of editor names that are displayed when a citation is published. To change the displayed number of editors, set '''display-editors''' to the desired number. For example, {{para|display-editors|2}} will display only the first two editors in a citation. By default, all editors are displayed except when there are four editors, then the editor list in the citation is truncated to three editors, followed by &amp;quot;et al.&amp;quot; This exception mimics the older version of the template for compatibility. If a citation contains four editor names and one wishes all four editor names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-editors|4}}. Aliases: '''displayeditors'''.}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lastauthoramp&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last-author-amp''': Switches the separator between the last two names of the author list to space ampersand space (&amp;lt;code&amp;gt; &amp;amp; &amp;lt;/code&amp;gt;) when set to any value. Example: {{para|last-author-amp|yes}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_postscript&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''postscript''': Controls the closing punctuation for a citation; defaults to {{#if: |none|a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); {{#if: |for no terminating punctuation, specify {{para|postscript|none}} – leaving {{para|postscript}} empty is the same as omitting it, but is ambiguous|if the parameter is present, but blank, no terminating punctuation will be used}}}}. Ignored if '''quote''' is defined.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the punctuation used to separate lists of authors, editors, etc. Defaults to a {{#if: |comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;)|period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;)}};  {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}} }}&amp;lt;/s&amp;gt; Use '''mode'''.&lt;br /&gt;
&lt;br /&gt;
==Citation styles==&lt;br /&gt;
Established citation styles for coauthors:&lt;br /&gt;
&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/mla/mla.htm MLA style]: Last, First and First Last. &amp;quot;If there are more than three authors, you may list only the first author followed by the phrase ''et al''.&amp;quot;&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/apa/apa.htm APA style]: Last, F. &amp;amp; Last, F.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/citchi.htm Chicago Manual of Style]: Last, First, and First Last.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/cittur.htm Turabian]: same as Chicago Reference List, above.&lt;br /&gt;
*[http://www.library.uq.edu.au/training/citation/harvard.html Harvard]: Last, F., Last, F. &amp;amp; Last, F.&lt;br /&gt;
&lt;br /&gt;
==Technical notes==&lt;br /&gt;
&lt;br /&gt;
===Regression testing===&lt;br /&gt;
[[Regression testing|Regression tests]] are available here:&lt;br /&gt;
*{{tl|Cite IETF/regression tests}}&lt;br /&gt;
&lt;br /&gt;
===Subtemplates===&lt;br /&gt;
{{tl|Cite IETF}} uses the following subtemplates:&lt;br /&gt;
*{{tl|Cite IETF/doctypes}}&lt;br /&gt;
*{{tl|Cite IETF/makelink}}&lt;br /&gt;
*{{tl|Cite IETF/refanchor}}&lt;br /&gt;
&lt;br /&gt;
===URL generation===&lt;br /&gt;
HTML versions of the [[Internet Engineering Task Force|IETF]] documents are created with the Rfcmarkup tool from Henrik Levkowetz.&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/&lt;br /&gt;
| title       = Rfcmarkup Tool&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = October 16, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/rfcmarkup-1.85.tgz&lt;br /&gt;
| title       = rfcmarkup-1.85.tgz (25 KB)&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = October 16, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Request for Comments]] (RFC), [[Best Current Practice]] (BCP), and [[Internet Draft]] (I-D) documents which have been processed by the Rfcmarkup tool are cached by &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;tools.ietf.org/html/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/&lt;br /&gt;
| title       = IETF Documents&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/code.txt&lt;br /&gt;
| title       = HTTP 404 handler for a directory of htmlized documents&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| date        = October 14, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; and are linked via:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/rfc&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/bcp&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/draft-&amp;lt;/nowiki&amp;gt;&amp;lt;draft name&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Standard]] (STD) and [[For Your Information]] (FYI) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;doc=&amp;lt;/code&amp;gt; parameter:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=std&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=fyi&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Experiment Note]] (IEN) and [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;url=&amp;lt;/code&amp;gt; parameter and a path to the document:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/ien/ien&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/museum/RAREreports/rtr&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===URL anchor generation===&lt;br /&gt;
Anchors are generated for the URL using four parameters:&lt;br /&gt;
:{{para|section|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#section-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|appendix|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#appendix-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|referenceid|&amp;lt;var&amp;gt;id&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#ref-&amp;lt;var&amp;gt;&amp;lt;id&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|page|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#page-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
The template will give priority to the first of the parameters: {{para|section}}, {{para|appendix}}, {{para|referenceid}}, or {{para|page}} in this order and create an anchor using the first matching parameter.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
==Further reading==&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Internet Official Protocol Standards&lt;br /&gt;
| rfc         = 5000&lt;br /&gt;
| std         = 1&lt;br /&gt;
| year        = 2008&lt;br /&gt;
| month       = May&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Not All RFCs are Standards&lt;br /&gt;
| rfc         = 1796&lt;br /&gt;
| last1       = Huitema&lt;br /&gt;
| first1      = Christian&lt;br /&gt;
| last2       = Postel&lt;br /&gt;
| first2      = Jon&lt;br /&gt;
| authorlink2 = Jon Postel&lt;br /&gt;
| last3       = Crocker&lt;br /&gt;
| first3      = Steve&lt;br /&gt;
| authorlink3 = Steve Crocker&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = April&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&lt;br /&gt;
*{{cite web&lt;br /&gt;
| url         = http://www.livinginternet.com/i/ia_rfc_ref.htm&lt;br /&gt;
| title       = Related RFC's, BCP, FYI, IEN, RTR, STD&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Stewart&lt;br /&gt;
| first       = William&lt;br /&gt;
| publisher   = LivingInternet.com&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Citation Style 1}}&lt;br /&gt;
{{Wikipedia referencing}}&lt;br /&gt;
{{UF-COinS}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox |&lt;br /&gt;
| &amp;lt;!-- CATEGORIES BELOW THIS LINE, PLEASE: --&amp;gt;&lt;br /&gt;
[[Category:Citation Style 1 specific-source templates]]&lt;br /&gt;
[[Category:Specific-source templates]]&lt;br /&gt;
[[Category:Templates generating COinS]]&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428356</id>
		<title>Template:Cite IETF/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428356"/>
		<updated>2017-11-26T13:53:55Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&amp;lt;includeonly&amp;gt;{{Intricate template}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;!-- PLEASE ADD CATEGORIES WHERE INDICATED AT THE BOTTOM OF THIS PAGE --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is a template to cite [[Internet Engineering Task Force|IETF]] documents&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force&lt;br /&gt;
| rfc         = 4677&lt;br /&gt;
| fyi         = 17&lt;br /&gt;
| last1       = Hoffman&lt;br /&gt;
| first1      = Paul&lt;br /&gt;
| authorlink1 = Paul Hoffman (VPNC)&lt;br /&gt;
| last2       = Harris&lt;br /&gt;
| first2      = Susan&lt;br /&gt;
| year        = 2006&lt;br /&gt;
| month       = September&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = A Primer On Internet and TCP/IP Tools&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Documentation&lt;br /&gt;
| section     = 4&lt;br /&gt;
| last1       = Kessler&lt;br /&gt;
| first1      = Gary C.&lt;br /&gt;
| last2       = Shepard&lt;br /&gt;
| first2      = Steven D.&lt;br /&gt;
| year        = 1994&lt;br /&gt;
| month       = December&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| ref         = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; including:&lt;br /&gt;
*[[Request for Comments]] (RFC)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Request for Comments (RFCs)&lt;br /&gt;
| section     = 4.1&lt;br /&gt;
| pages       = 36&amp;amp;nbsp;– 38&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Standard]] (STD)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Internet Standards Process -- Revision 3&lt;br /&gt;
| rfc         = 2026&lt;br /&gt;
| bcp         = 9&lt;br /&gt;
| last        = Bradner&lt;br /&gt;
| first       = Scott O.&lt;br /&gt;
| authorlink  = Scott Bradner&lt;br /&gt;
| year        = 1996&lt;br /&gt;
| month       = October&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Standards&lt;br /&gt;
| section     = 4.2&lt;br /&gt;
| pages       = 38&amp;amp;nbsp;– 39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Best current practice]] (BCP)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Best Current Practices&lt;br /&gt;
| rfc         = 1818&lt;br /&gt;
| bcp         = 1&lt;br /&gt;
| last1       = Postel&lt;br /&gt;
| first1      = Jon&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2       = Rekhter&lt;br /&gt;
| first2      = Yakov&lt;br /&gt;
| authorlink2 = Yakov Rekhter&lt;br /&gt;
| last3       = Li&lt;br /&gt;
| first3      = Tony&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = August&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[For Your Information]] (FYI)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = F.Y.I. on F.Y.I.: Introduction to the F.Y.I. Notes&lt;br /&gt;
| rfc         = 1150&lt;br /&gt;
| fyi         = 1&lt;br /&gt;
| last1       = Malkin&lt;br /&gt;
| first1      = Gary Scott&lt;br /&gt;
| last2       = Reynolds&lt;br /&gt;
| first2      = Joyce K.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year        = 1990&lt;br /&gt;
| month       = March&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = For Your Information Documents&lt;br /&gt;
| section     = 4.3&lt;br /&gt;
| page        = 39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Draft]] (I-D)&lt;br /&gt;
*[[Internet Experiment Note]] (IEN)&lt;br /&gt;
*[[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = RARE Technical Reports&lt;br /&gt;
| section     = 4.4&lt;br /&gt;
| page        = 40&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{TOC limit|3}}&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
'''''Note''''': All parameter names '''must''' be in [[lowercase]].&lt;br /&gt;
&lt;br /&gt;
Copy a blank version to use. Remember to use the &amp;quot;|&amp;quot; (pipe) character between each parameter. Please delete any unused parameters to avoid clutter in the edit window.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Full version (copy and paste text below and delete parameters you don't need)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |std= |bcp= |fyi= |draft= |ien= |rtr= |sectionname= |section= |sections= |appendix= |referenceid= |page= |pages= |last1= |first1= |authorlink1= |last2= |first2= |authorlink2= |authormask= |coauthors= |editor1-last= |editor1-first= |editor1-link= |others= |date= |year= |month= |origyear= |publisher=[[Internet Engineering Task Force|IETF]] |location= |language= |format= |accessdate= |url= |section-url= |page-url= |autolink= |id= |idanchor= |idlink= |idlinktype= |doi= |doi_brokendate= |issn= |archiveurl= |archivedate= |quote= |nopp= |nosec= |ref= |laysummary= |laydate= |separator= |postscript= |lastauthoramp= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Most commonly used parameters (use this and you won't have to delete as much)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |sectionname= |section= |page= |last= |first= |authorlink= |coauthors= |year= |month= |publisher=[[Internet Engineering Task Force|IETF]] |accessdate= |doi= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 1&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 2&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&amp;lt;pre&amp;gt;{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Vertical list !! Prerequisites !! Brief instructions&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title       = &lt;br /&gt;
| rfc         = &lt;br /&gt;
| std         = &lt;br /&gt;
| bcp         = &lt;br /&gt;
| fyi         = &lt;br /&gt;
| draft       = &lt;br /&gt;
| ien         = &lt;br /&gt;
| rtr         = &lt;br /&gt;
| sectionname = &lt;br /&gt;
| section     = &lt;br /&gt;
| sections    = &lt;br /&gt;
| appendix    = &lt;br /&gt;
| referenceid = &lt;br /&gt;
| page        = &lt;br /&gt;
| pages       = &lt;br /&gt;
| last        = &lt;br /&gt;
| first       = &lt;br /&gt;
| authorlink  = &lt;br /&gt;
| authormask  = &lt;br /&gt;
| coauthors   = &lt;br /&gt;
| lastN       = &lt;br /&gt;
| firstN      = &lt;br /&gt;
| authorN-link = &lt;br /&gt;
| editor      = &lt;br /&gt;
| editorN     = &lt;br /&gt;
| editorN-last = &lt;br /&gt;
| editorN-first = &lt;br /&gt;
| editor-link = &lt;br /&gt;
| editorN-link = &lt;br /&gt;
| others      = &lt;br /&gt;
| date        = &lt;br /&gt;
| year        = &lt;br /&gt;
| month       = &lt;br /&gt;
| origyear    = &lt;br /&gt;
| publisher   = &lt;br /&gt;
| location    = &lt;br /&gt;
| language    = &lt;br /&gt;
| format      = &lt;br /&gt;
| accessdate  = &lt;br /&gt;
| url         = &lt;br /&gt;
| section-url = &lt;br /&gt;
| page-url    = &lt;br /&gt;
| autolink    = &lt;br /&gt;
| id          = &lt;br /&gt;
| idanchor    = &lt;br /&gt;
| idlink      = &lt;br /&gt;
| idlinktype  = &lt;br /&gt;
| doi         = &lt;br /&gt;
| doi_brokendate = &lt;br /&gt;
| issn        = &lt;br /&gt;
| archiveurl  = &lt;br /&gt;
| archivedate = &lt;br /&gt;
| quote       = &lt;br /&gt;
| nopp        = &lt;br /&gt;
| nosec       = &lt;br /&gt;
| ref         = &lt;br /&gt;
| laysummary  = &lt;br /&gt;
| laydate     = &lt;br /&gt;
| separator   = &lt;br /&gt;
| postscript  = &lt;br /&gt;
| lastauthoramp = &lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
lastN&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
editorN-last&lt;br /&gt;
editor or editor-last&lt;br /&gt;
editorN or editorN-last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
year&lt;br /&gt;
year or date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
publisher&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
sectionname&lt;br /&gt;
sectionname&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
idanchor or idlink&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
doi&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
url, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
archiveurl&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
page or pages&lt;br /&gt;
section, sections, or appendix&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
laysummary&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
coauthors or &amp;gt;1 lastN&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) RFC number; 4677&lt;br /&gt;
(no wikilink) STD number&lt;br /&gt;
(no wikilink) BCP number&lt;br /&gt;
(no wikilink) FYI number; 17&lt;br /&gt;
(no wikilink) I-D (internet draft) name&lt;br /&gt;
(no wikilink) IEN number&lt;br /&gt;
(no wikilink) RTR number&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) section number; 3.3&lt;br /&gt;
(no wikilink) section range (can be used together with the section parameter)&lt;br /&gt;
(no wikilink) appendix number; A.1&lt;br /&gt;
(no wikilink) reference id&lt;br /&gt;
(no wikilink) page number&lt;br /&gt;
(no wikilink) page range (can be used together with the page parameter)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink)&lt;br /&gt;
(no wikilink)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
alternative to first2, last2...first9, last9&lt;br /&gt;
(no wikilink) N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
preferred (no wikilink) This is the preferred parameter with its alternates listed below.&lt;br /&gt;
alternative to date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
should be &amp;lt;nowiki&amp;gt;[[Internet Engineering Task Force|IETF]]&amp;lt;/nowiki&amp;gt; for IETF documents.&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
hides automatic 'p.' or 'pp.'&lt;br /&gt;
hides automatic 'sec.'&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 7159&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 11&lt;br /&gt;
| author      = T. Bray&lt;br /&gt;
| authorlink  = Tim Bray&lt;br /&gt;
| date        = March 2014&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| doi         = 10.17487/RFC7159&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 7159&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 11&lt;br /&gt;
| author      = T. Bray&lt;br /&gt;
| authorlink  = Tim Bray&lt;br /&gt;
| date        = March 2014&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = November 26, 2017&lt;br /&gt;
| doi         = 10.17487/RFC7159&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| doi         = 10.17487/RFC2616&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| doi         = 10.17487/RFC2616&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = August 3, 2008&lt;br /&gt;
| doi         = 10.17487/RFC1034&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  = August 3, 2008&lt;br /&gt;
| doi         = 10.17487/RFC1034&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
Nested parameters rely on their parent parameters:&lt;br /&gt;
*''parent''&lt;br /&gt;
*OR: ''parent2''—may be used instead of ''parent''&lt;br /&gt;
**''child''—may be used with ''parent'' (and is ignored if ''parent'' is not used)&lt;br /&gt;
**OR: ''child2''—may be used instead of ''child'' (and is ignored if ''parent2'' is not used)&lt;br /&gt;
&lt;br /&gt;
:Where aliases are listed, only one of the parameters may be defined; if multiple aliased parameters are defined, then only one will show.&lt;br /&gt;
&lt;br /&gt;
This template embeds [[COinS]] metadata in the HTML output, allowing [[reference management software]] to retrieve bibliographic metadata. See: [[Wikipedia:COinS]]. As a general rule, only one data item per parameter. Do not include explanatory or alternate text:&lt;br /&gt;
* Use {{xt|{{para|date|27 September 2007}}}} not {{!xt|{{para|date|27 September 2007 (print version 25 September)}}}}&lt;br /&gt;
&lt;br /&gt;
Use of templates within the citation template, is discouraged because many of these templates will add extraneous HTML or CSS that will be rendered in the metadata. Also, HTML entities (e.g. &amp;lt;code&amp;gt;&amp;amp;amp;nbsp;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;amp;amp;ndash;&amp;lt;/code&amp;gt;) should not be used in parameters that contribute to the metadata.  Do not include Wiki markup &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (italic font) or &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;'''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (bold font) because these markup characters will contaminate the metadata.&lt;br /&gt;
&lt;br /&gt;
{{hidden begin |title=COinS metadata is created for these parameters}}&lt;br /&gt;
*{{para|periodical}}, {{para|journal}}, {{para|newspaper}}, {{para|magazine}}, {{para|work}}, {{para|website}}, {{para|encyclopedia}}, {{para|encyclopaedia}}, {{para|dictionary}}&lt;br /&gt;
*{{para|chapter}}, {{para|contribution}}, {{para|entry}}, {{para|article}}, {{para|section}}&lt;br /&gt;
*{{para|title}}&lt;br /&gt;
*{{para|publicationplace}}, {{para|publication-place}}, {{para|place}}, {{para|location}}&lt;br /&gt;
*{{para|date}}, {{para|year}}, {{para|publicationdate}}, {{para|publication-date}}&lt;br /&gt;
*{{para|series}}, {{para|version}}&lt;br /&gt;
*{{para|volume}}&lt;br /&gt;
*{{para|issue}}, {{para|number}}&lt;br /&gt;
*{{para|page}}, {{para|pages}}, {{para|at}}&lt;br /&gt;
*{{para|edition}}&lt;br /&gt;
*{{para|publisher}}, {{para|distributor}}, {{para|institution}}&lt;br /&gt;
*{{para|url}}&lt;br /&gt;
*{{para|chapterurl}}, {{para|chapter-url}}, {{para|contributionurl}}, {{para|contribution-url}}, {{para|sectionurl}}, {{para|section-url}}&lt;br /&gt;
*{{para|author#}}, {{para|Author#}}, {{para|authors#}}, {{para|author#-last}}, {{para|author-last#}}, {{para|last#}}, {{para|surname#}}&lt;br /&gt;
*{{para|&amp;quot;author#-first}}, {{para|author-first#}}, {{para|first#}}, {{para|given#}}&lt;br /&gt;
*any of the named identifiers ({{para|isbn}}, {{para|issn}}, {{para|doi}}, {{para|pmc}}, etc.)&lt;br /&gt;
{{hidden end}}&lt;br /&gt;
&lt;br /&gt;
By default, sets of fields are terminated with a period (.). {{#ifeq: {{{lua|}}|yes||This can be an issue when the last field uses an abbreviation or initial that ends with a period, as then two periods will display (..). The only solution is to not include the last period in the value for the set of fields.}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
&lt;br /&gt;
====Authors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last''': Surname of author. Do not wikilink—use '''author-link''' instead. For corporate authors, simply use '''last''' to include the same format as the source. Aliases: '''last1''', '''author''', '''authors''', '''author1'''{{#if:|, }}.&lt;br /&gt;
** '''first''': Given or first names of author, including title(s); for example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''author-link''' instead. Aliases: '''first1'''. Requires '''last'''; first name will not display if '''last''' is empty. &lt;br /&gt;
{{#if: |&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''', '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' where ''n'' is any consecutive number for an unlimited number of authors (each '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' requires a corresponding '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''). See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.&lt;br /&gt;
|&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last9''', '''first9''' for up to nine authors. By default, if nine authors are defined, only eight will show and &amp;quot;et al.&amp;quot; will show in place of the last author. See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author9'''.}}&lt;br /&gt;
:* '''author-link''': Title of existing Wikipedia article about the author—not the author's website; do not wikilink. Aliases: '''authorlink1''', '''authorlink''', '''author1-link''', '''author1link'''.&lt;br /&gt;
{{#if: |&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''. Aliases: '''author1link''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;link'''.&lt;br /&gt;
|&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link9'''. Aliases: '''author1link''' through '''author9link'''.}}&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s){{#if: |&lt;br /&gt;
* {{xtd|'''coauthors'''}}: (deprecated) &amp;lt;s&amp;gt;Names of coauthors. Requires '''author''', '''authors''', or '''last''n'''''&amp;lt;/s&amp;gt; Include coauthors in '''author''' or '''authors''' or use separate '''author''n''''' or '''last''n'''''/'''first''n''''' to list coauthors.}}{{#if: yes|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_others&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''others''': To record other contributors to the work, including illustrators and translators. For the parameter value, write ''Illustrated by John Smith'' or ''Translated by John Smith''.}}&lt;br /&gt;
:When using {{sfnote|lc=y}} or {{paren|lc=y}} styles with templates, do not use multiple names in one field or else the anchor will not match the inline link.&lt;br /&gt;
&lt;br /&gt;
====Title====&lt;br /&gt;
* '''title''': Title of the document; displays in italics. If {{em|both}} '''title''' and '''sectionname''' are omitted, then the template will attempt to auto-generate a title using the first of the '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''', '''rtr''' or '''id''' document identifier parameters, in that order.&lt;br /&gt;
:Titles containing certain characters will display and link incorrectly unless those characters are encoded.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left: 5em&amp;quot;&lt;br /&gt;
! newline !! [ !! ] !! &amp;amp;#124;&lt;br /&gt;
|-&lt;br /&gt;
| space || &amp;amp;amp;#91; || &amp;amp;amp;#93; || &amp;amp;amp;#124;&lt;br /&gt;
|}&lt;br /&gt;
* '''sectionname''': The section name or section title of the document, written in full; displays before '''title''' and enclosed in quotes.&lt;br /&gt;
* '''language''': The language the source is written in, if not English. Displays in parentheses with &amp;quot;in&amp;quot; before the language name. Use the full language name{{#if:|&amp;amp;#32;or [[List of ISO 639-1 codes|ISO 639-1]] code; use of language names or language codes recognized by Wikimedia adds the page to the appropriate subcategory of {{cl|CS1 foreign language sources}}}}; do not use templates or wikilinks.&lt;br /&gt;
&lt;br /&gt;
====Date====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_date&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''date''': Date of source being referenced. Can be full date (day, month, and year) or partial date (month and year{{#if:|, season and year}}, or year). Use same format as other publication dates in the citations.{{r|date|group=date}} Required when '''year''' is used to disambiguate {{tlx|sfn}} links to multiple-work citations by the same author in the same year.{{sup|[[Template:Sfn#More_than_one_work_in_a_year|[more]]]}} Do not wikilink. Displays after the authors and is enclosed in parentheses. If there is no author, then displays after publisher.{{#if:|&amp;amp;#32;Aliases: }} {{#if:|For acceptable date formats, see [[Help:Citation Style 1#Dates]].}}&lt;br /&gt;
{{#if:|:For approximate year, precede with &amp;quot;&amp;lt;code&amp;gt;c. &amp;lt;/code&amp;gt;&amp;quot;, like this: {{para|date|c. 1900}}; for no date, add as {{para|date|n.d.}} }}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_year&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR:&lt;br /&gt;
** '''year''': Year of source being referenced ...&lt;br /&gt;
**: Is the template {{tl|cite episode}} or {{tl|cite serial}}?&lt;br /&gt;
&lt;br /&gt;
::::NO: Does the template use {{para|ref|harv}}? (answer YES if the template is {{tlx|citation}})&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES:  Is the date format in {{para|date}} YYYY-MM-DD?&lt;br /&gt;
::::::NO: use {{para|date}}.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
::::YES: Does the citation use {{para|ref|harv}}?&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES: Is the date format in {{para|date}} DD Month YYYY or Month YYYY or YYYY or Month DD, YYYY or YYYY-MM-DD?&lt;br /&gt;
::::::NO: {{para|year}} ''required''.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_origyear&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''orig-year''': Original publication year; displays after the date or year. For clarity, please supply specifics. For example: {{para|orig-year|First published 1859}} or {{para|orig-year|Composed 1904}}.{{#if:|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_began&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR: '''began''': Full date the first part of the program or episode aired.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ended&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;AND: '''ended''': Full date the last part of the program or episode aired.}}{{#if:|&amp;amp;#32;Aliases:}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Publication dates in references within an article should all have the same format. This may be a different format from that used for archive and access dates. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
====Publisher====&lt;br /&gt;
* '''publisher''': Name of publisher; may be wikilinked if relevant. Not normally included for periodicals. Corporate designations such as &amp;quot;Ltd&amp;quot;, &amp;quot;Inc&amp;quot; or &amp;quot;GmbH&amp;quot; are not usually included. Displays after '''title'''.&lt;br /&gt;
:Should normally be set to [[Internet Engineering Task Force|IETF]] for RFC, STD, BCP, FYI, I-D (internet draft), IEN, and RTR documents.&lt;br /&gt;
:Note: There are reasons this can't just be the default; see [[Template talk:Cite IETF#Make publisher always IETF?]]&lt;br /&gt;
* '''location''': Geographical place of publication; generally not wikilinked; omit when the name of the work includes the location (examples: ''The Boston Globe'', ''The Times of India''). Displays preceding '''publisher'''.&lt;br /&gt;
&amp;lt;!--* '''publication-date''': Date of publication when different from the date the work was written. Displays only if '''year''' or '''date''' are defined and only if different, else '''publication-date''' is used and displayed as '''date'''. Use the same format as other dates in the article; do not wikilink. Follows '''publisher'''; preceded by &amp;quot;published&amp;quot; and enclosed in parenthesis.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====In-source locations====&lt;br /&gt;
* '''page''': Page in the source that supports the content. Displays preceded with {{code|p.}} unless {{para|nopp|y}}. Also used to create an anchor link for the document's URL. If either '''section''' or '''appendix''' is also given, the anchor will link to the section or appendix instead of the page. Can also be used in combination with '''pages''' to link to the first page in the given page range if '''section''' and '''appendix''' are not specified.&lt;br /&gt;
* OR: '''pages''': Pages in the source that supports the content; separate page ranges with an en dash (–); separate non-sequential pages with a comma (,); do not use to indicate the total number of pages in the source. Displays preceded with {{code|pp.}} unless {{para|nopp|y}}.&lt;br /&gt;
** '''nopp''': Set to &amp;lt;var&amp;gt;y&amp;lt;/var&amp;gt; to suppress the {{code|p.}} or {{code|pp.}} notations where this is inappropriate; for example, where {{para|page|Front cover}}.&lt;br /&gt;
* '''section''': Section number of the document. {{para|section|4.3.1}} produces &amp;quot;sec. 4.3.1&amp;quot; Also used to create an anchor link for the document's URL. Can also be used in combination with '''sections''' to link to the first section in the given section range.&lt;br /&gt;
* '''sections''': Section range of the document. {{para|sections|4.3-4.7}} produces &amp;quot;sec. 4.3-4.7&amp;quot;&lt;br /&gt;
* OR: '''appendix''': Appendix number of the document. {{para|appendix|A.1}} produces &amp;quot;sec. A.1&amp;quot; Also used to create an anchor link for the document's URL.&lt;br /&gt;
* OR: '''referenceid''': Reference id for the document. Used to create an anchor link for the document's URL.&lt;br /&gt;
* '''nosec''': Using '''section''', ''''sections''', or '''appendix''' automatically places the sec. notation. Se {{para|nosec|y}} to hide the sec. notation.&lt;br /&gt;
&lt;br /&gt;
====URL====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_url&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''url''': URL of an online location where the text of the publication can be found. Cannot be used if '''title''' is wikilinked. If applicable, the link may point to the specific page(s) referenced. Remove spurious tracking parameters from URLs, e.g. &amp;lt;code&amp;gt;#ixzz2rBr3aO94&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;. Do not link to any commercial booksellers, such as Amazon.com. See: [[WP:PAGELINKS]].&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_accessdate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''access-date''': Full date when the contents pointed to by '''url''' was last verified to support the text in the article; do not wikilink; requires '''url'''; use the same format as other access and archive dates in the citations.{{r|date|group=date}}  ''Not required for linked documents that do not change.'' For example, '''access-date''' is not required for links to copies of published research papers accessed via DOI or a published book, but is required for links to news articles on commercial sites (these are changed from time to time, even if also published in a physical medium). Note that '''access-date''' is the date that the URL was checked to not only be working, but to support the assertion being cited (which the current version of the page may not do). Can be [[Help:Citation Style 1/accessdate|hidden or styled]] by registered editors. Alias: '''accessdate'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_archiveurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-url''': The URL of an [[Web archiving|archived]] copy of a web page, if or in case the url becomes unavailable. Typically used to refer to services like [[WebCite]] (see: [[Wikipedia:Using WebCite]]) and [[Internet Archive]] (see: [[Wikipedia:Using the Wayback Machine]]); requires '''archive-date''' and '''url'''. Alias: '''archiveurl'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_archivedate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-date''': Date when the original URL was archived; preceded by default text &amp;quot;archived from the original on&amp;quot;. Use the same format as other access and archive dates in the citations. This does not necessarily have to be the same format that was used for citing publication dates.{{r|date|group=date}} Do not wikilink. Alias: '''archivedate'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_deadurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''dead-url''': When the URL is still live, but pre-emptively archived, then set {{para|dead-url|no}}. This changes the display order with the title retaining the original link and the archive linked at the end. Alias: '''deadurl'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_template doc demo&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''template-doc-demo''': The archive parameters will be error checked to ensure that all the required parameters are included, or else {{tl|citation error}} is invoked. With errors, main, help and template pages are placed into one of the subcategories of [[:Category:Articles with incorrect citation syntax]]. Set {{para|template-doc-demo|true}} to disable categorization; mainly used for documentation where the error is demonstrated.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''format''': Format of the work referred to by '''url'''; for example: PDF, DOC, or XLS; displayed in parentheses after '''title'''. HTML is implied and should not be specified. Does not change the [[Help:External link icons|external link icon]]. Note: External link icons do not include [[Wikipedia:ALT|alt text]]; thus, they do not add format information for the visually impaired.&lt;br /&gt;
{{MediaWiki URL rules}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Access-date and archive-date in references should all have the same format – either the format used for publication dates, or YYYY-MM-DD. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
* '''section-url''': URL to an individual section of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''page-url''': URL to an individual page of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''autolink''': {{para|autolink|&amp;lt;var&amp;gt;yes&amp;lt;/var&amp;gt;}} or {{para|autolink|&amp;lt;var&amp;gt;no&amp;lt;/var&amp;gt;}} Automatically generate a link to ietf.org for documents specified with {{para|rfc}}, {{para|std}}, {{para|bcp}}, {{para|fyi}}, {{para|draft}}, {{para|ien}}, or {{para|rtr}}. (enabled by default)&lt;br /&gt;
&lt;br /&gt;
====Anchor====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ref&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''ref''': ID for anchor. By default, no anchor is generated. The ordinary nonempty value {{para|ref|&amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;}} generates an anchor with the given &amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;; such a linkable reference can be made the target of [[Wikipedia:Citing sources/Further considerations#Wikilinks to full references|wikilinks to full references]], especially useful in short citations like [[Wikipedia:Citing sources#Shortened footnotes|shortened notes]] and [[Wikipedia:Parenthetical referencing|parenthetical referencing]]. The special value {{para|ref|harv}} generates an anchor suitable for the {{tl|harv}} template. See: [[Template:Citation/doc#Anchors for Harvard referencing templates|Anchors for Harvard referencing templates]]. The special value {{para|ref|ietf}} generates an anchor suitable for use with this template's '''idanchor''' parameter.&lt;br /&gt;
&lt;br /&gt;
====Identifiers====&lt;br /&gt;
* '''rfc''': Number of the [[Request for Comments]] (RFC) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''std''': Number of the [[Internet Standard]] (STD) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''bcp''': Number of the [[Best Current Practice]] (BCP) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''fyi''': Number of the [[For Your Information]] (FYI) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''draft''': Name of the [[Internet Draft]] (I-D) document, including the leading draft-. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''ien''': Number of the [[Internet Experiment Note]] (IEN) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''rtr''': Number of the [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''id''': A [[unique identifier]] for the document, used if none of the above are applicable. Overrides automatically generated document identifiers—'''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''—and should not be specified unless absolutely necessary. If used, you also need to specify the kind of identifier you are using. Don't wikilink, use '''idlink''' instead.&lt;br /&gt;
* '''idanchor''': Anchor link target. By default, no anchor link is generated. The special value {{para|idanchor|ietf}} generates an anchor link suitable for use with this template's '''ref''' parameter. Requires one of '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' fields to be present for the anchor link text.&lt;br /&gt;
* OR: '''idlink''': Internal document anchor or title of a Wikipedia article to link via the document identifier. Article should already exist. Must not be wikilinked itself. Do not use this on its own, but along with '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''idlinktype''': One of the values: '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' can be given to '''idlinktype''' to force the template to use the specified document identifier as the link text for '''idanchor''' or '''idlink'''. Do not use this on its own, but along with '''idanchor''' or '''idlink''' and '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''doi''': A [[digital object identifier]] for the document, such as ''10.1038/news070508-7''. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
** '''doi_brokendate''': The date that the DOI was determined to be broken&lt;br /&gt;
* '''issn''': [[International Standard Serial Number]] for the document; 8 characters; may be split into two groups of four using a hyphen. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
&lt;br /&gt;
====Quote====&lt;br /&gt;
* '''quote''': Relevant text quoted from the source. Displays enclosed in quotes.{{#if: ||&amp;amp;#32;When supplied, the citation terminator (a period by default) is suppressed, so the quote needs to include terminating punctuation.}}&lt;br /&gt;
&lt;br /&gt;
====Editors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''editor-last''': Surname of editor. Do not wikilink—use '''editor-link''' instead. Where the surname is usually written first—as in Chinese—or for corporate authors, simply use '''editor-last''' to include the same format as the source. Aliases: '''editor1-last''', '''editor''', '''editors'''{{#if: |, '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.|.}}&lt;br /&gt;
** '''editor-first''': Given or first names of editor, including title(s); example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''editor-link''' instead.  Aliases: '''editor1-first'''.&lt;br /&gt;
**OR: for multiple editors, use '''editor1-last''', '''editor1-first'''  through {{#if: |'''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-last''', '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-first'''|'''editor4-last''', '''editor4-first''' for up to four editors}}.&lt;br /&gt;
:* '''editor-link''': Title of existing Wikipedia article about the editor—not the editor's website; do not wikilink. Aliases: '''editor1-link'''.&lt;br /&gt;
:*OR: for multiple editors, use {{#if: |'''editor1-link''' through '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-link'''|'''editor1-link''' through '''editor4-link'''}}.&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s)&lt;br /&gt;
:Display:&lt;br /&gt;
::If authors: Authors are first, followed by {{#if: |the included work, then &amp;quot;In&amp;quot; and the editors|the editors and the included work}}, then the main work.&lt;br /&gt;
::If no authors: Editors appear before the included work; a single editor is followed by &amp;quot;ed.&amp;quot;; multiple editors are followed by &amp;quot;eds.&amp;quot;{{#if: |{{;}} exactly four editors will show three editors followed by &amp;quot;et al., eds.&amp;quot; &amp;lt;!-- ERROR MESSAGE IS HIDDEN BY DEFAULT --&amp;gt; &amp;lt;!-- along with an error message --&amp;gt;unless '''display-editors''' is used.|{{;}} more than three editors will be followed by &amp;quot;et al., eds.&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
====Laysummary====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lay&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{#if: |'''lay-url'''|'''laysummary'''}}: URL link to a non-technical summary or review of the source; the URL title is set to &amp;quot;Lay summary&amp;quot;. {{#if: |Aliases: '''lay-summary''', '''laysummary'''.|}}&lt;br /&gt;
** '''lay-source''': Name of the source of the laysummary. Displays in italics and preceded by an endash. Alias: '''laysource'''.&lt;br /&gt;
** '''lay-date''': Date of the summary. Displays in parentheses. Alias: '''laydate'''.&lt;br /&gt;
&lt;br /&gt;
====Display options====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_mode&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''mode''': Sets element separator, default terminal punctuation, and certain capitalization according to the value provided.  For {{para|mode|cs1}}, element separator is a semicolon (&amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt;); terminal punctuation is a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); where appropriate, initial letters of certain words are capitalized ('Retrieved...').  For {{para|mode|cs2}}, element separator is a comma (&amp;lt;code&amp;gt;,&amp;lt;/code&amp;gt;); terminal punctuation is omitted; where appropriate, initial letters of certain words are not capitalized ('retrieved...'). To override default terminal punctuation use '''postscript'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-mask&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''author-mask''': Replaces the name of the first author with [[dash#Em dash|em dashes]] or text. Set '''author-mask''' to a numeric value ''n'' to set the dash ''n'' em spaces wide; set '''author-mask''' to a text value to display the text without a trailing author separator; for example, &amp;quot;with&amp;quot;. You must still include the values for all authors for metadata purposes. Primarily intended for use with bibliographies or bibliography styles where multiple works by a single author are listed sequentially such as {{sfnote}}. Do not use in a list generated by {{tlx|reflist}}, {{tag|references|s}} or similar as there is no control of the order in which references are displayed.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-name-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-name-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between last and first names; defaults to a comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between authors; defaults to a semicolon and space (&amp;lt;code&amp;gt;; &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-format'''}}: (deprecated) Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-authors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayauthors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-authors''': {{#if: |Controls the number of author names that are displayed when a citation is published. To change the displayed number of authors, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, all authors are displayed. Aliases: '''displayauthors'''.|Controls the number of author names that are displayed when a citation is published. To control the displayed number of author names, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, the only the first eight cited authors are displayed; subsequent authors beyond eight are represented in the published citation by &amp;quot;et al.&amp;quot; If a citation contains nine author names and one wishes all nine author names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-authors|9}}. Aliases: '''displayauthors'''.}}&lt;br /&gt;
{{#if: |&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayeditors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-editors''': Controls the number of editor names that are displayed when a citation is published. To change the displayed number of editors, set '''display-editors''' to the desired number. For example, {{para|display-editors|2}} will display only the first two editors in a citation. By default, all editors are displayed except when there are four editors, then the editor list in the citation is truncated to three editors, followed by &amp;quot;et al.&amp;quot; This exception mimics the older version of the template for compatibility. If a citation contains four editor names and one wishes all four editor names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-editors|4}}. Aliases: '''displayeditors'''.}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lastauthoramp&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last-author-amp''': Switches the separator between the last two names of the author list to space ampersand space (&amp;lt;code&amp;gt; &amp;amp; &amp;lt;/code&amp;gt;) when set to any value. Example: {{para|last-author-amp|yes}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_postscript&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''postscript''': Controls the closing punctuation for a citation; defaults to {{#if: |none|a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); {{#if: |for no terminating punctuation, specify {{para|postscript|none}} – leaving {{para|postscript}} empty is the same as omitting it, but is ambiguous|if the parameter is present, but blank, no terminating punctuation will be used}}}}. Ignored if '''quote''' is defined.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the punctuation used to separate lists of authors, editors, etc. Defaults to a {{#if: |comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;)|period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;)}};  {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}} }}&amp;lt;/s&amp;gt; Use '''mode'''.&lt;br /&gt;
&lt;br /&gt;
==Citation styles==&lt;br /&gt;
Established citation styles for coauthors:&lt;br /&gt;
&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/mla/mla.htm MLA style]: Last, First and First Last. &amp;quot;If there are more than three authors, you may list only the first author followed by the phrase ''et al''.&amp;quot;&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/apa/apa.htm APA style]: Last, F. &amp;amp; Last, F.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/citchi.htm Chicago Manual of Style]: Last, First, and First Last.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/cittur.htm Turabian]: same as Chicago Reference List, above.&lt;br /&gt;
*[http://www.library.uq.edu.au/training/citation/harvard.html Harvard]: Last, F., Last, F. &amp;amp; Last, F.&lt;br /&gt;
&lt;br /&gt;
==Technical notes==&lt;br /&gt;
&lt;br /&gt;
===Regression testing===&lt;br /&gt;
[[Regression testing|Regression tests]] are available here:&lt;br /&gt;
*{{tl|Cite IETF/regression tests}}&lt;br /&gt;
&lt;br /&gt;
===Subtemplates===&lt;br /&gt;
{{tl|Cite IETF}} uses the following subtemplates:&lt;br /&gt;
*{{tl|Cite IETF/doctypes}}&lt;br /&gt;
*{{tl|Cite IETF/makelink}}&lt;br /&gt;
*{{tl|Cite IETF/refanchor}}&lt;br /&gt;
&lt;br /&gt;
===URL generation===&lt;br /&gt;
HTML versions of the [[Internet Engineering Task Force|IETF]] documents are created with the Rfcmarkup tool from Henrik Levkowetz.&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/&lt;br /&gt;
| title       = Rfcmarkup Tool&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = October 16, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/rfcmarkup-1.85.tgz&lt;br /&gt;
| title       = rfcmarkup-1.85.tgz (25 KB)&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = October 16, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Request for Comments]] (RFC), [[Best Current Practice]] (BCP), and [[Internet Draft]] (I-D) documents which have been processed by the Rfcmarkup tool are cached by &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;tools.ietf.org/html/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/&lt;br /&gt;
| title       = IETF Documents&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/code.txt&lt;br /&gt;
| title       = HTTP 404 handler for a directory of htmlized documents&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| date        = October 14, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; and are linked via:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/rfc&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/bcp&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/draft-&amp;lt;/nowiki&amp;gt;&amp;lt;draft name&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Standard]] (STD) and [[For Your Information]] (FYI) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;doc=&amp;lt;/code&amp;gt; parameter:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=std&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=fyi&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Experiment Note]] (IEN) and [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;url=&amp;lt;/code&amp;gt; parameter and a path to the document:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/ien/ien&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/museum/RAREreports/rtr&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===URL anchor generation===&lt;br /&gt;
Anchors are generated for the URL using four parameters:&lt;br /&gt;
:{{para|section|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#section-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|appendix|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#appendix-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|referenceid|&amp;lt;var&amp;gt;id&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#ref-&amp;lt;var&amp;gt;&amp;lt;id&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|page|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#page-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
The template will give priority to the first of the parameters: {{para|section}}, {{para|appendix}}, {{para|referenceid}}, or {{para|page}} in this order and create an anchor using the first matching parameter.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
==Further reading==&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Internet Official Protocol Standards&lt;br /&gt;
| rfc         = 5000&lt;br /&gt;
| std         = 1&lt;br /&gt;
| year        = 2008&lt;br /&gt;
| month       = May&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Not All RFCs are Standards&lt;br /&gt;
| rfc         = 1796&lt;br /&gt;
| last1       = Huitema&lt;br /&gt;
| first1      = Christian&lt;br /&gt;
| last2       = Postel&lt;br /&gt;
| first2      = Jon&lt;br /&gt;
| authorlink2 = Jon Postel&lt;br /&gt;
| last3       = Crocker&lt;br /&gt;
| first3      = Steve&lt;br /&gt;
| authorlink3 = Steve Crocker&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = April&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&lt;br /&gt;
*{{cite web&lt;br /&gt;
| url         = http://www.livinginternet.com/i/ia_rfc_ref.htm&lt;br /&gt;
| title       = Related RFC's, BCP, FYI, IEN, RTR, STD&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Stewart&lt;br /&gt;
| first       = William&lt;br /&gt;
| publisher   = LivingInternet.com&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Citation Style 1}}&lt;br /&gt;
{{Wikipedia referencing}}&lt;br /&gt;
{{UF-COinS}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox |&lt;br /&gt;
| &amp;lt;!-- CATEGORIES BELOW THIS LINE, PLEASE: --&amp;gt;&lt;br /&gt;
[[Category:Citation Style 1 specific-source templates]]&lt;br /&gt;
[[Category:Specific-source templates]]&lt;br /&gt;
[[Category:Templates generating COinS]]&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428355</id>
		<title>Template:Cite IETF/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cite_IETF/doc&amp;diff=3428355"/>
		<updated>2017-11-26T13:37:14Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&amp;lt;includeonly&amp;gt;{{Intricate template}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;!-- PLEASE ADD CATEGORIES WHERE INDICATED AT THE BOTTOM OF THIS PAGE --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is a template to cite [[Internet Engineering Task Force|IETF]] documents&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force&lt;br /&gt;
| rfc         = 4677&lt;br /&gt;
| fyi         = 17&lt;br /&gt;
| last1       = Hoffman&lt;br /&gt;
| first1      = Paul&lt;br /&gt;
| authorlink1 = Paul Hoffman (VPNC)&lt;br /&gt;
| last2       = Harris&lt;br /&gt;
| first2      = Susan&lt;br /&gt;
| year        = 2006&lt;br /&gt;
| month       = September&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = A Primer On Internet and TCP/IP Tools&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Documentation&lt;br /&gt;
| section     = 4&lt;br /&gt;
| last1       = Kessler&lt;br /&gt;
| first1      = Gary C.&lt;br /&gt;
| last2       = Shepard&lt;br /&gt;
| first2      = Steven D.&lt;br /&gt;
| year        = 1994&lt;br /&gt;
| month       = December&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| ref         = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; including:&lt;br /&gt;
*[[Request for Comments]] (RFC)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Request for Comments (RFCs)&lt;br /&gt;
| section     = 4.1&lt;br /&gt;
| pages       = 36&amp;amp;nbsp;– 38&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Standard]] (STD)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = The Internet Standards Process -- Revision 3&lt;br /&gt;
| rfc         = 2026&lt;br /&gt;
| bcp         = 9&lt;br /&gt;
| last        = Bradner&lt;br /&gt;
| first       = Scott O.&lt;br /&gt;
| authorlink  = Scott Bradner&lt;br /&gt;
| year        = 1996&lt;br /&gt;
| month       = October&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = Internet Standards&lt;br /&gt;
| section     = 4.2&lt;br /&gt;
| pages       = 38&amp;amp;nbsp;– 39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Best current practice]] (BCP)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Best Current Practices&lt;br /&gt;
| rfc         = 1818&lt;br /&gt;
| bcp         = 1&lt;br /&gt;
| last1       = Postel&lt;br /&gt;
| first1      = Jon&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2       = Rekhter&lt;br /&gt;
| first2      = Yakov&lt;br /&gt;
| authorlink2 = Yakov Rekhter&lt;br /&gt;
| last3       = Li&lt;br /&gt;
| first3      = Tony&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = August&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[For Your Information]] (FYI)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| title       = F.Y.I. on F.Y.I.: Introduction to the F.Y.I. Notes&lt;br /&gt;
| rfc         = 1150&lt;br /&gt;
| fyi         = 1&lt;br /&gt;
| last1       = Malkin&lt;br /&gt;
| first1      = Gary Scott&lt;br /&gt;
| last2       = Reynolds&lt;br /&gt;
| first2      = Joyce K.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year        = 1990&lt;br /&gt;
| month       = March&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = For Your Information Documents&lt;br /&gt;
| section     = 4.3&lt;br /&gt;
| page        = 39&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*[[Internet Draft]] (I-D)&lt;br /&gt;
*[[Internet Experiment Note]] (IEN)&lt;br /&gt;
*[[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR)&amp;lt;ref&amp;gt;{{cite IETF&lt;br /&gt;
| rfc         = 1739&lt;br /&gt;
| sectionname = RARE Technical Reports&lt;br /&gt;
| section     = 4.4&lt;br /&gt;
| page        = 40&lt;br /&gt;
| idanchor    = ietf&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{TOC limit|3}}&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
'''''Note''''': All parameter names '''must''' be in [[lowercase]].&lt;br /&gt;
&lt;br /&gt;
Copy a blank version to use. Remember to use the &amp;quot;|&amp;quot; (pipe) character between each parameter. Please delete any unused parameters to avoid clutter in the edit window.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Full version (copy and paste text below and delete parameters you don't need)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |std= |bcp= |fyi= |draft= |ien= |rtr= |sectionname= |section= |sections= |appendix= |referenceid= |page= |pages= |last1= |first1= |authorlink1= |last2= |first2= |authorlink2= |authormask= |coauthors= |editor1-last= |editor1-first= |editor1-link= |others= |date= |year= |month= |origyear= |publisher=[[Internet Engineering Task Force|IETF]] |location= |language= |format= |accessdate= |url= |section-url= |page-url= |autolink= |id= |idanchor= |idlink= |idlinktype= |doi= |doi_brokendate= |issn= |archiveurl= |archivedate= |quote= |nopp= |nosec= |ref= |laysummary= |laydate= |separator= |postscript= |lastauthoramp= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Most commonly used parameters (use this and you won't have to delete as much)&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title= |rfc= |sectionname= |section= |page= |last= |first= |authorlink= |coauthors= |year= |month= |publisher=[[Internet Engineering Task Force|IETF]] |accessdate= |doi= }}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 1&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF |title=The Tao of IETF: A Novice's Guide to the Internet Engineering Task Force |rfc=4677 |fyi=17 |last1=Hoffman |first1=P. |authorlink1=Paul Hoffman (VPNC) |last2=Harris |first2=S. |year=2006 |month=September |publisher=[[Internet Engineering Task Force|IETF]] |accessdate=October 20, 2009 |doi=10.17487/RFC4677}}&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Example 2&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&amp;lt;pre&amp;gt;{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align: top;&amp;quot; |&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title = Telnet protocol specification&lt;br /&gt;
| rfc = 854&lt;br /&gt;
| std = 8&lt;br /&gt;
| sectionname = Are You There (AYT)&lt;br /&gt;
| page = 8&lt;br /&gt;
| last1 = Postel&lt;br /&gt;
| first1 = J.&lt;br /&gt;
| authorlink1 = Jon Postel&lt;br /&gt;
| last2 = Reynolds&lt;br /&gt;
| first2 = J.&lt;br /&gt;
| authorlink2 = Joyce K. Reynolds&lt;br /&gt;
| year = 1983&lt;br /&gt;
| month = May&lt;br /&gt;
| publisher = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate = October 20, 2009&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
! Vertical list !! Prerequisites !! Brief instructions&lt;br /&gt;
|- width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
{{cite IETF&lt;br /&gt;
| title       = &lt;br /&gt;
| rfc         = &lt;br /&gt;
| std         = &lt;br /&gt;
| bcp         = &lt;br /&gt;
| fyi         = &lt;br /&gt;
| draft       = &lt;br /&gt;
| ien         = &lt;br /&gt;
| rtr         = &lt;br /&gt;
| sectionname = &lt;br /&gt;
| section     = &lt;br /&gt;
| sections    = &lt;br /&gt;
| appendix    = &lt;br /&gt;
| referenceid = &lt;br /&gt;
| page        = &lt;br /&gt;
| pages       = &lt;br /&gt;
| last        = &lt;br /&gt;
| first       = &lt;br /&gt;
| authorlink  = &lt;br /&gt;
| authormask  = &lt;br /&gt;
| coauthors   = &lt;br /&gt;
| lastN       = &lt;br /&gt;
| firstN      = &lt;br /&gt;
| authorN-link = &lt;br /&gt;
| editor      = &lt;br /&gt;
| editorN     = &lt;br /&gt;
| editorN-last = &lt;br /&gt;
| editorN-first = &lt;br /&gt;
| editor-link = &lt;br /&gt;
| editorN-link = &lt;br /&gt;
| others      = &lt;br /&gt;
| date        = &lt;br /&gt;
| year        = &lt;br /&gt;
| month       = &lt;br /&gt;
| origyear    = &lt;br /&gt;
| publisher   = &lt;br /&gt;
| location    = &lt;br /&gt;
| language    = &lt;br /&gt;
| format      = &lt;br /&gt;
| accessdate  = &lt;br /&gt;
| url         = &lt;br /&gt;
| section-url = &lt;br /&gt;
| page-url    = &lt;br /&gt;
| autolink    = &lt;br /&gt;
| id          = &lt;br /&gt;
| idanchor    = &lt;br /&gt;
| idlink      = &lt;br /&gt;
| idlinktype  = &lt;br /&gt;
| doi         = &lt;br /&gt;
| doi_brokendate = &lt;br /&gt;
| issn        = &lt;br /&gt;
| archiveurl  = &lt;br /&gt;
| archivedate = &lt;br /&gt;
| quote       = &lt;br /&gt;
| nopp        = &lt;br /&gt;
| nosec       = &lt;br /&gt;
| ref         = &lt;br /&gt;
| laysummary  = &lt;br /&gt;
| laydate     = &lt;br /&gt;
| separator   = &lt;br /&gt;
| postscript  = &lt;br /&gt;
| lastauthoramp = &lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
lastN&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
editorN-last&lt;br /&gt;
editor or editor-last&lt;br /&gt;
editorN or editorN-last&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
year&lt;br /&gt;
year or date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
publisher&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
sectionname&lt;br /&gt;
sectionname&lt;br /&gt;
rfc, std, bcp, fyi, draft, ien, rtr, or url&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
id, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
idanchor or idlink&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
doi&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
url, rfc, std, bcp, fyi, draft, ien, or rtr&lt;br /&gt;
archiveurl&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
page or pages&lt;br /&gt;
section, sections, or appendix&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
laysummary&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
coauthors or &amp;gt;1 lastN&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;padding:1ex;&amp;quot; |&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) RFC number; 4677&lt;br /&gt;
(no wikilink) STD number&lt;br /&gt;
(no wikilink) BCP number&lt;br /&gt;
(no wikilink) FYI number; 17&lt;br /&gt;
(no wikilink) I-D (internet draft) name&lt;br /&gt;
(no wikilink) IEN number&lt;br /&gt;
(no wikilink) RTR number&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink) section number; 3.3&lt;br /&gt;
(no wikilink) section range (can be used together with the section parameter)&lt;br /&gt;
(no wikilink) appendix number; A.1&lt;br /&gt;
(no wikilink) reference id&lt;br /&gt;
(no wikilink) page number&lt;br /&gt;
(no wikilink) page range (can be used together with the page parameter)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
(no wikilink)&lt;br /&gt;
(no wikilink)&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
alternative to first2, last2...first9, last9&lt;br /&gt;
(no wikilink) N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
N=1 through 9&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
N=1 through 4&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
preferred (no wikilink) This is the preferred parameter with its alternates listed below.&lt;br /&gt;
alternative to date&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
should be &amp;lt;nowiki&amp;gt;[[Internet Engineering Task Force|IETF]]&amp;lt;/nowiki&amp;gt; for IETF documents.&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
hides automatic 'p.' or 'pp.'&lt;br /&gt;
hides automatic 'sec.'&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&amp;amp;nbsp;&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 4267&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 6&lt;br /&gt;
| author      = Douglas Crockford&lt;br /&gt;
| authorlink  = Douglas Crockford&lt;br /&gt;
| date        = July 2006&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =July 3, 2009&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = JSON&lt;br /&gt;
| rfc         = 4267&lt;br /&gt;
| sectionname = IANA Considerations&lt;br /&gt;
| section     = 6&lt;br /&gt;
| author      = Douglas Crockford&lt;br /&gt;
| authorlink  = Douglas Crockford&lt;br /&gt;
| date        = July 2006&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =July 3, 2009&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Hypertext Transfer Protocol -- HTTP/1.1&lt;br /&gt;
| rfc         = 2616&lt;br /&gt;
| first1      = R.&lt;br /&gt;
| last1       = Fielding&lt;br /&gt;
| authorlink1 = Roy Fielding&lt;br /&gt;
| first2      = J.&lt;br /&gt;
| last2       = Gettys&lt;br /&gt;
| authorlink2 = Jim Gettys&lt;br /&gt;
| first3      = J.&lt;br /&gt;
| last3       = Mogul&lt;br /&gt;
| first4      = H.&lt;br /&gt;
| last4       = Frystyk&lt;br /&gt;
| authorlink4 = Henrik Frystyk Nielsen&lt;br /&gt;
| first5      = L.&lt;br /&gt;
| last5       = Masinter&lt;br /&gt;
| first6      = P.&lt;br /&gt;
| last6       = Leach&lt;br /&gt;
| first7      = T.&lt;br /&gt;
| last7       = Berners-Lee&lt;br /&gt;
| authorlink7 = Tim Berners-Lee&lt;br /&gt;
| year        = 1999&lt;br /&gt;
| month       = June&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =August 3, 2008&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;→ &amp;lt;span style=&amp;quot;background:white&amp;quot;&amp;gt;{{cite IETF&lt;br /&gt;
| title       = Domain names - concepts and facilities&lt;br /&gt;
| rfc         = 1034&lt;br /&gt;
| sectionname = Name space specifications and terminology&lt;br /&gt;
| section     = 3.1&lt;br /&gt;
| author      = P. Mockapetris&lt;br /&gt;
| authorlink  = Paul Mockapetris&lt;br /&gt;
| year        = 1987&lt;br /&gt;
| month       = November&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =August 3, 2008&lt;br /&gt;
| quote       = A domain is a subdomain of another domain if it is contained within that domain. This relationship can be tested by seeing if the subdomain's name ends with the containing domain's name. For example, A.B.C.D is a subdomain of B.C.D, C.D, D, and ' '.&lt;br /&gt;
}}&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
Nested parameters rely on their parent parameters:&lt;br /&gt;
*''parent''&lt;br /&gt;
*OR: ''parent2''—may be used instead of ''parent''&lt;br /&gt;
**''child''—may be used with ''parent'' (and is ignored if ''parent'' is not used)&lt;br /&gt;
**OR: ''child2''—may be used instead of ''child'' (and is ignored if ''parent2'' is not used)&lt;br /&gt;
&lt;br /&gt;
:Where aliases are listed, only one of the parameters may be defined; if multiple aliased parameters are defined, then only one will show.&lt;br /&gt;
&lt;br /&gt;
This template embeds [[COinS]] metadata in the HTML output, allowing [[reference management software]] to retrieve bibliographic metadata. See: [[Wikipedia:COinS]]. As a general rule, only one data item per parameter. Do not include explanatory or alternate text:&lt;br /&gt;
* Use {{xt|{{para|date|27 September 2007}}}} not {{!xt|{{para|date|27 September 2007 (print version 25 September)}}}}&lt;br /&gt;
&lt;br /&gt;
Use of templates within the citation template, is discouraged because many of these templates will add extraneous HTML or CSS that will be rendered in the metadata. Also, HTML entities (e.g. &amp;lt;code&amp;gt;&amp;amp;amp;nbsp;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;amp;amp;ndash;&amp;lt;/code&amp;gt;) should not be used in parameters that contribute to the metadata.  Do not include Wiki markup &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (italic font) or &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;'''&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (bold font) because these markup characters will contaminate the metadata.&lt;br /&gt;
&lt;br /&gt;
{{hidden begin |title=COinS metadata is created for these parameters}}&lt;br /&gt;
*{{para|periodical}}, {{para|journal}}, {{para|newspaper}}, {{para|magazine}}, {{para|work}}, {{para|website}}, {{para|encyclopedia}}, {{para|encyclopaedia}}, {{para|dictionary}}&lt;br /&gt;
*{{para|chapter}}, {{para|contribution}}, {{para|entry}}, {{para|article}}, {{para|section}}&lt;br /&gt;
*{{para|title}}&lt;br /&gt;
*{{para|publicationplace}}, {{para|publication-place}}, {{para|place}}, {{para|location}}&lt;br /&gt;
*{{para|date}}, {{para|year}}, {{para|publicationdate}}, {{para|publication-date}}&lt;br /&gt;
*{{para|series}}, {{para|version}}&lt;br /&gt;
*{{para|volume}}&lt;br /&gt;
*{{para|issue}}, {{para|number}}&lt;br /&gt;
*{{para|page}}, {{para|pages}}, {{para|at}}&lt;br /&gt;
*{{para|edition}}&lt;br /&gt;
*{{para|publisher}}, {{para|distributor}}, {{para|institution}}&lt;br /&gt;
*{{para|url}}&lt;br /&gt;
*{{para|chapterurl}}, {{para|chapter-url}}, {{para|contributionurl}}, {{para|contribution-url}}, {{para|sectionurl}}, {{para|section-url}}&lt;br /&gt;
*{{para|author#}}, {{para|Author#}}, {{para|authors#}}, {{para|author#-last}}, {{para|author-last#}}, {{para|last#}}, {{para|surname#}}&lt;br /&gt;
*{{para|&amp;quot;author#-first}}, {{para|author-first#}}, {{para|first#}}, {{para|given#}}&lt;br /&gt;
*any of the named identifiers ({{para|isbn}}, {{para|issn}}, {{para|doi}}, {{para|pmc}}, etc.)&lt;br /&gt;
{{hidden end}}&lt;br /&gt;
&lt;br /&gt;
By default, sets of fields are terminated with a period (.). {{#ifeq: {{{lua|}}|yes||This can be an issue when the last field uses an abbreviation or initial that ends with a period, as then two periods will display (..). The only solution is to not include the last period in the value for the set of fields.}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
&lt;br /&gt;
====Authors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last''': Surname of author. Do not wikilink—use '''author-link''' instead. For corporate authors, simply use '''last''' to include the same format as the source. Aliases: '''last1''', '''author''', '''authors''', '''author1'''{{#if:|, }}.&lt;br /&gt;
** '''first''': Given or first names of author, including title(s); for example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''author-link''' instead. Aliases: '''first1'''. Requires '''last'''; first name will not display if '''last''' is empty. &lt;br /&gt;
{{#if: |&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''', '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' where ''n'' is any consecutive number for an unlimited number of authors (each '''first&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;''' requires a corresponding '''last&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''). See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.&lt;br /&gt;
|&lt;br /&gt;
** OR: for multiple authors, use '''last1''', '''first1''' through '''last9''', '''first9''' for up to nine authors. By default, if nine authors are defined, only eight will show and &amp;quot;et al.&amp;quot; will show in place of the last author. See the [[#csdoc_display|display]] parameters to change how many authors are displayed. Aliases: '''author1''' through '''author9'''.}}&lt;br /&gt;
:* '''author-link''': Title of existing Wikipedia article about the author—not the author's website; do not wikilink. Aliases: '''authorlink1''', '''authorlink''', '''author1-link''', '''author1link'''.&lt;br /&gt;
{{#if: |&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''. Aliases: '''author1link''' through '''author&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;link'''.&lt;br /&gt;
|&lt;br /&gt;
:*OR: for multiple authors, use '''author-link1''' through '''author-link9'''. Aliases: '''author1link''' through '''author9link'''.}}&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s){{#if: |&lt;br /&gt;
* {{xtd|'''coauthors'''}}: (deprecated) &amp;lt;s&amp;gt;Names of coauthors. Requires '''author''', '''authors''', or '''last''n'''''&amp;lt;/s&amp;gt; Include coauthors in '''author''' or '''authors''' or use separate '''author''n''''' or '''last''n'''''/'''first''n''''' to list coauthors.}}{{#if: yes|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_others&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''others''': To record other contributors to the work, including illustrators and translators. For the parameter value, write ''Illustrated by John Smith'' or ''Translated by John Smith''.}}&lt;br /&gt;
:When using {{sfnote|lc=y}} or {{paren|lc=y}} styles with templates, do not use multiple names in one field or else the anchor will not match the inline link.&lt;br /&gt;
&lt;br /&gt;
====Title====&lt;br /&gt;
* '''title''': Title of the document; displays in italics. If {{em|both}} '''title''' and '''sectionname''' are omitted, then the template will attempt to auto-generate a title using the first of the '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''', '''rtr''' or '''id''' document identifier parameters, in that order.&lt;br /&gt;
:Titles containing certain characters will display and link incorrectly unless those characters are encoded.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin-left: 5em&amp;quot;&lt;br /&gt;
! newline !! [ !! ] !! &amp;amp;#124;&lt;br /&gt;
|-&lt;br /&gt;
| space || &amp;amp;amp;#91; || &amp;amp;amp;#93; || &amp;amp;amp;#124;&lt;br /&gt;
|}&lt;br /&gt;
* '''sectionname''': The section name or section title of the document, written in full; displays before '''title''' and enclosed in quotes.&lt;br /&gt;
* '''language''': The language the source is written in, if not English. Displays in parentheses with &amp;quot;in&amp;quot; before the language name. Use the full language name{{#if:|&amp;amp;#32;or [[List of ISO 639-1 codes|ISO 639-1]] code; use of language names or language codes recognized by Wikimedia adds the page to the appropriate subcategory of {{cl|CS1 foreign language sources}}}}; do not use templates or wikilinks.&lt;br /&gt;
&lt;br /&gt;
====Date====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_date&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''date''': Date of source being referenced. Can be full date (day, month, and year) or partial date (month and year{{#if:|, season and year}}, or year). Use same format as other publication dates in the citations.{{r|date|group=date}} Required when '''year''' is used to disambiguate {{tlx|sfn}} links to multiple-work citations by the same author in the same year.{{sup|[[Template:Sfn#More_than_one_work_in_a_year|[more]]]}} Do not wikilink. Displays after the authors and is enclosed in parentheses. If there is no author, then displays after publisher.{{#if:|&amp;amp;#32;Aliases: }} {{#if:|For acceptable date formats, see [[Help:Citation Style 1#Dates]].}}&lt;br /&gt;
{{#if:|:For approximate year, precede with &amp;quot;&amp;lt;code&amp;gt;c. &amp;lt;/code&amp;gt;&amp;quot;, like this: {{para|date|c. 1900}}; for no date, add as {{para|date|n.d.}} }}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_year&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR:&lt;br /&gt;
** '''year''': Year of source being referenced ...&lt;br /&gt;
**: Is the template {{tl|cite episode}} or {{tl|cite serial}}?&lt;br /&gt;
&lt;br /&gt;
::::NO: Does the template use {{para|ref|harv}}? (answer YES if the template is {{tlx|citation}})&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES:  Is the date format in {{para|date}} YYYY-MM-DD?&lt;br /&gt;
::::::NO: use {{para|date}}.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
::::YES: Does the citation use {{para|ref|harv}}?&lt;br /&gt;
:::::NO: use {{para|date}}.&lt;br /&gt;
:::::YES: Is the date format in {{para|date}} DD Month YYYY or Month YYYY or YYYY or Month DD, YYYY or YYYY-MM-DD?&lt;br /&gt;
::::::NO: {{para|year}} ''required''.&lt;br /&gt;
::::::YES: Does the citation require a &amp;lt;code&amp;gt;[[Wikipedia:Citation templates and reference anchors|CITEREF]]&amp;lt;/code&amp;gt; [[Template:Sfn#More than one work in a year|disambiguator]]?&lt;br /&gt;
:::::::NO: use {{para|date}}.&lt;br /&gt;
:::::::YES: {{para|year}} ''required''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_origyear&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''orig-year''': Original publication year; displays after the date or year. For clarity, please supply specifics. For example: {{para|orig-year|First published 1859}} or {{para|orig-year|Composed 1904}}.{{#if:|&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_began&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;OR: '''began''': Full date the first part of the program or episode aired.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ended&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;AND: '''ended''': Full date the last part of the program or episode aired.}}{{#if:|&amp;amp;#32;Aliases:}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Publication dates in references within an article should all have the same format. This may be a different format from that used for archive and access dates. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
====Publisher====&lt;br /&gt;
* '''publisher''': Name of publisher; may be wikilinked if relevant. Not normally included for periodicals. Corporate designations such as &amp;quot;Ltd&amp;quot;, &amp;quot;Inc&amp;quot; or &amp;quot;GmbH&amp;quot; are not usually included. Displays after '''title'''.&lt;br /&gt;
:Should normally be set to [[Internet Engineering Task Force|IETF]] for RFC, STD, BCP, FYI, I-D (internet draft), IEN, and RTR documents.&lt;br /&gt;
:Note: There are reasons this can't just be the default; see [[Template talk:Cite IETF#Make publisher always IETF?]]&lt;br /&gt;
* '''location''': Geographical place of publication; generally not wikilinked; omit when the name of the work includes the location (examples: ''The Boston Globe'', ''The Times of India''). Displays preceding '''publisher'''.&lt;br /&gt;
&amp;lt;!--* '''publication-date''': Date of publication when different from the date the work was written. Displays only if '''year''' or '''date''' are defined and only if different, else '''publication-date''' is used and displayed as '''date'''. Use the same format as other dates in the article; do not wikilink. Follows '''publisher'''; preceded by &amp;quot;published&amp;quot; and enclosed in parenthesis.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====In-source locations====&lt;br /&gt;
* '''page''': Page in the source that supports the content. Displays preceded with {{code|p.}} unless {{para|nopp|y}}. Also used to create an anchor link for the document's URL. If either '''section''' or '''appendix''' is also given, the anchor will link to the section or appendix instead of the page. Can also be used in combination with '''pages''' to link to the first page in the given page range if '''section''' and '''appendix''' are not specified.&lt;br /&gt;
* OR: '''pages''': Pages in the source that supports the content; separate page ranges with an en dash (–); separate non-sequential pages with a comma (,); do not use to indicate the total number of pages in the source. Displays preceded with {{code|pp.}} unless {{para|nopp|y}}.&lt;br /&gt;
** '''nopp''': Set to &amp;lt;var&amp;gt;y&amp;lt;/var&amp;gt; to suppress the {{code|p.}} or {{code|pp.}} notations where this is inappropriate; for example, where {{para|page|Front cover}}.&lt;br /&gt;
* '''section''': Section number of the document. {{para|section|4.3.1}} produces &amp;quot;sec. 4.3.1&amp;quot; Also used to create an anchor link for the document's URL. Can also be used in combination with '''sections''' to link to the first section in the given section range.&lt;br /&gt;
* '''sections''': Section range of the document. {{para|sections|4.3-4.7}} produces &amp;quot;sec. 4.3-4.7&amp;quot;&lt;br /&gt;
* OR: '''appendix''': Appendix number of the document. {{para|appendix|A.1}} produces &amp;quot;sec. A.1&amp;quot; Also used to create an anchor link for the document's URL.&lt;br /&gt;
* OR: '''referenceid''': Reference id for the document. Used to create an anchor link for the document's URL.&lt;br /&gt;
* '''nosec''': Using '''section''', ''''sections''', or '''appendix''' automatically places the sec. notation. Se {{para|nosec|y}} to hide the sec. notation.&lt;br /&gt;
&lt;br /&gt;
====URL====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_url&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''url''': URL of an online location where the text of the publication can be found. Cannot be used if '''title''' is wikilinked. If applicable, the link may point to the specific page(s) referenced. Remove spurious tracking parameters from URLs, e.g. &amp;lt;code&amp;gt;#ixzz2rBr3aO94&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;. Do not link to any commercial booksellers, such as Amazon.com. See: [[WP:PAGELINKS]].&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_accessdate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''access-date''': Full date when the contents pointed to by '''url''' was last verified to support the text in the article; do not wikilink; requires '''url'''; use the same format as other access and archive dates in the citations.{{r|date|group=date}}  ''Not required for linked documents that do not change.'' For example, '''access-date''' is not required for links to copies of published research papers accessed via DOI or a published book, but is required for links to news articles on commercial sites (these are changed from time to time, even if also published in a physical medium). Note that '''access-date''' is the date that the URL was checked to not only be working, but to support the assertion being cited (which the current version of the page may not do). Can be [[Help:Citation Style 1/accessdate|hidden or styled]] by registered editors. Alias: '''accessdate'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_archiveurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-url''': The URL of an [[Web archiving|archived]] copy of a web page, if or in case the url becomes unavailable. Typically used to refer to services like [[WebCite]] (see: [[Wikipedia:Using WebCite]]) and [[Internet Archive]] (see: [[Wikipedia:Using the Wayback Machine]]); requires '''archive-date''' and '''url'''. Alias: '''archiveurl'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_archivedate&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''archive-date''': Date when the original URL was archived; preceded by default text &amp;quot;archived from the original on&amp;quot;. Use the same format as other access and archive dates in the citations. This does not necessarily have to be the same format that was used for citing publication dates.{{r|date|group=date}} Do not wikilink. Alias: '''archivedate'''.&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;csdoc_deadurl&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''dead-url''': When the URL is still live, but pre-emptively archived, then set {{para|dead-url|no}}. This changes the display order with the title retaining the original link and the archive linked at the end. Alias: '''deadurl'''.&lt;br /&gt;
** &amp;lt;span id=&amp;quot;csdoc_template doc demo&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''template-doc-demo''': The archive parameters will be error checked to ensure that all the required parameters are included, or else {{tl|citation error}} is invoked. With errors, main, help and template pages are placed into one of the subcategories of [[:Category:Articles with incorrect citation syntax]]. Set {{para|template-doc-demo|true}} to disable categorization; mainly used for documentation where the error is demonstrated.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''format''': Format of the work referred to by '''url'''; for example: PDF, DOC, or XLS; displayed in parentheses after '''title'''. HTML is implied and should not be specified. Does not change the [[Help:External link icons|external link icon]]. Note: External link icons do not include [[Wikipedia:ALT|alt text]]; thus, they do not add format information for the visually impaired.&lt;br /&gt;
{{MediaWiki URL rules}}&lt;br /&gt;
{{reflist|group=date|refs=&amp;lt;ref name=date&amp;gt;Access-date and archive-date in references should all have the same format – either the format used for publication dates, or YYYY-MM-DD. See: [[MOS:DATEUNIFY]].&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
* '''section-url''': URL to an individual section of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''page-url''': URL to an individual page of the document (including an anchor if required). Overrides an automatically generated URL and should not be specified unless absolutely necessary. Should be at the same site as {{para|url}}, if any.&lt;br /&gt;
* '''autolink''': {{para|autolink|&amp;lt;var&amp;gt;yes&amp;lt;/var&amp;gt;}} or {{para|autolink|&amp;lt;var&amp;gt;no&amp;lt;/var&amp;gt;}} Automatically generate a link to ietf.org for documents specified with {{para|rfc}}, {{para|std}}, {{para|bcp}}, {{para|fyi}}, {{para|draft}}, {{para|ien}}, or {{para|rtr}}. (enabled by default)&lt;br /&gt;
&lt;br /&gt;
====Anchor====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_ref&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''ref''': ID for anchor. By default, no anchor is generated. The ordinary nonempty value {{para|ref|&amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;}} generates an anchor with the given &amp;lt;var&amp;gt;ID&amp;lt;/var&amp;gt;; such a linkable reference can be made the target of [[Wikipedia:Citing sources/Further considerations#Wikilinks to full references|wikilinks to full references]], especially useful in short citations like [[Wikipedia:Citing sources#Shortened footnotes|shortened notes]] and [[Wikipedia:Parenthetical referencing|parenthetical referencing]]. The special value {{para|ref|harv}} generates an anchor suitable for the {{tl|harv}} template. See: [[Template:Citation/doc#Anchors for Harvard referencing templates|Anchors for Harvard referencing templates]]. The special value {{para|ref|ietf}} generates an anchor suitable for use with this template's '''idanchor''' parameter.&lt;br /&gt;
&lt;br /&gt;
====Identifiers====&lt;br /&gt;
* '''rfc''': Number of the [[Request for Comments]] (RFC) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''std''': Number of the [[Internet Standard]] (STD) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''bcp''': Number of the [[Best Current Practice]] (BCP) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''fyi''': Number of the [[For Your Information]] (FYI) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''draft''': Name of the [[Internet Draft]] (I-D) document, including the leading draft-. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''ien''': Number of the [[Internet Experiment Note]] (IEN) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''rtr''': Number of the [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) document. Also used to automatically generate a link to ietf.org.&lt;br /&gt;
* '''id''': A [[unique identifier]] for the document, used if none of the above are applicable. Overrides automatically generated document identifiers—'''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''—and should not be specified unless absolutely necessary. If used, you also need to specify the kind of identifier you are using. Don't wikilink, use '''idlink''' instead.&lt;br /&gt;
* '''idanchor''': Anchor link target. By default, no anchor link is generated. The special value {{para|idanchor|ietf}} generates an anchor link suitable for use with this template's '''ref''' parameter. Requires one of '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' fields to be present for the anchor link text.&lt;br /&gt;
* OR: '''idlink''': Internal document anchor or title of a Wikipedia article to link via the document identifier. Article should already exist. Must not be wikilinked itself. Do not use this on its own, but along with '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''idlinktype''': One of the values: '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr''' can be given to '''idlinktype''' to force the template to use the specified document identifier as the link text for '''idanchor''' or '''idlink'''. Do not use this on its own, but along with '''idanchor''' or '''idlink''' and '''id''', '''rfc''', '''std''', '''bcp''', '''fyi''', '''draft''', '''ien''' or '''rtr'''.&lt;br /&gt;
* '''doi''': A [[digital object identifier]] for the document, such as ''10.1038/news070508-7''. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
** '''doi_brokendate''': The date that the DOI was determined to be broken&lt;br /&gt;
* '''issn''': [[International Standard Serial Number]] for the document; 8 characters; may be split into two groups of four using a hyphen. The field must not be wikilinked as the template automatically creates a link.&lt;br /&gt;
&lt;br /&gt;
====Quote====&lt;br /&gt;
* '''quote''': Relevant text quoted from the source. Displays enclosed in quotes.{{#if: ||&amp;amp;#32;When supplied, the citation terminator (a period by default) is suppressed, so the quote needs to include terminating punctuation.}}&lt;br /&gt;
&lt;br /&gt;
====Editors====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''editor-last''': Surname of editor. Do not wikilink—use '''editor-link''' instead. Where the surname is usually written first—as in Chinese—or for corporate authors, simply use '''editor-last''' to include the same format as the source. Aliases: '''editor1-last''', '''editor''', '''editors'''{{#if: |, '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;'''.|.}}&lt;br /&gt;
** '''editor-first''': Given or first names of editor, including title(s); example: ''Firstname Middlename'' or ''Firstname M.'' or ''Dr. Firstname M., Sr.'' Do not wikilink—use '''editor-link''' instead.  Aliases: '''editor1-first'''.&lt;br /&gt;
**OR: for multiple editors, use '''editor1-last''', '''editor1-first'''  through {{#if: |'''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-last''', '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-first'''|'''editor4-last''', '''editor4-first''' for up to four editors}}.&lt;br /&gt;
:* '''editor-link''': Title of existing Wikipedia article about the editor—not the editor's website; do not wikilink. Aliases: '''editor1-link'''.&lt;br /&gt;
:*OR: for multiple editors, use {{#if: |'''editor1-link''' through '''editor&amp;lt;var&amp;gt;n&amp;lt;/var&amp;gt;-link'''|'''editor1-link''' through '''editor4-link'''}}.&lt;br /&gt;
:*'''name-list-format''': displays authors and editors in [[Vancouver style]] when set to &amp;lt;code&amp;gt;vanc&amp;lt;/code&amp;gt; and when the list uses &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; parameters for the name list(s)&lt;br /&gt;
:Display:&lt;br /&gt;
::If authors: Authors are first, followed by {{#if: |the included work, then &amp;quot;In&amp;quot; and the editors|the editors and the included work}}, then the main work.&lt;br /&gt;
::If no authors: Editors appear before the included work; a single editor is followed by &amp;quot;ed.&amp;quot;; multiple editors are followed by &amp;quot;eds.&amp;quot;{{#if: |{{;}} exactly four editors will show three editors followed by &amp;quot;et al., eds.&amp;quot; &amp;lt;!-- ERROR MESSAGE IS HIDDEN BY DEFAULT --&amp;gt; &amp;lt;!-- along with an error message --&amp;gt;unless '''display-editors''' is used.|{{;}} more than three editors will be followed by &amp;quot;et al., eds.&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
====Laysummary====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lay&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{#if: |'''lay-url'''|'''laysummary'''}}: URL link to a non-technical summary or review of the source; the URL title is set to &amp;quot;Lay summary&amp;quot;. {{#if: |Aliases: '''lay-summary''', '''laysummary'''.|}}&lt;br /&gt;
** '''lay-source''': Name of the source of the laysummary. Displays in italics and preceded by an endash. Alias: '''laysource'''.&lt;br /&gt;
** '''lay-date''': Date of the summary. Displays in parentheses. Alias: '''laydate'''.&lt;br /&gt;
&lt;br /&gt;
====Display options====&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_mode&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''mode''': Sets element separator, default terminal punctuation, and certain capitalization according to the value provided.  For {{para|mode|cs1}}, element separator is a semicolon (&amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt;); terminal punctuation is a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); where appropriate, initial letters of certain words are capitalized ('Retrieved...').  For {{para|mode|cs2}}, element separator is a comma (&amp;lt;code&amp;gt;,&amp;lt;/code&amp;gt;); terminal punctuation is omitted; where appropriate, initial letters of certain words are not capitalized ('retrieved...'). To override default terminal punctuation use '''postscript'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-mask&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''author-mask''': Replaces the name of the first author with [[dash#Em dash|em dashes]] or text. Set '''author-mask''' to a numeric value ''n'' to set the dash ''n'' em spaces wide; set '''author-mask''' to a text value to display the text without a trailing author separator; for example, &amp;quot;with&amp;quot;. You must still include the values for all authors for metadata purposes. Primarily intended for use with bibliographies or bibliography styles where multiple works by a single author are listed sequentially such as {{sfnote}}. Do not use in a list generated by {{tlx|reflist}}, {{tag|references|s}} or similar as there is no control of the order in which references are displayed.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-name-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-name-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between last and first names; defaults to a comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the separator between authors; defaults to a semicolon and space (&amp;lt;code&amp;gt;; &amp;lt;/code&amp;gt;); {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}}&amp;lt;/s&amp;gt; Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_author-format&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''author-format'''}}: (deprecated) Use '''name-list-format'''.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-authors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayauthors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-authors''': {{#if: |Controls the number of author names that are displayed when a citation is published. To change the displayed number of authors, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, all authors are displayed. Aliases: '''displayauthors'''.|Controls the number of author names that are displayed when a citation is published. To control the displayed number of author names, set '''display-authors''' to the desired number. For example, {{para|display-authors|2}} will display only the first two authors in a citation. By default, the only the first eight cited authors are displayed; subsequent authors beyond eight are represented in the published citation by &amp;quot;et al.&amp;quot; If a citation contains nine author names and one wishes all nine author names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-authors|9}}. Aliases: '''displayauthors'''.}}&lt;br /&gt;
{{#if: |&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_display-editors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;csdoc_displayeditors&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''display-editors''': Controls the number of editor names that are displayed when a citation is published. To change the displayed number of editors, set '''display-editors''' to the desired number. For example, {{para|display-editors|2}} will display only the first two editors in a citation. By default, all editors are displayed except when there are four editors, then the editor list in the citation is truncated to three editors, followed by &amp;quot;et al.&amp;quot; This exception mimics the older version of the template for compatibility. If a citation contains four editor names and one wishes all four editor names to display, &amp;quot;et al.&amp;quot; may be suppressed by setting {{para|display-editors|4}}. Aliases: '''displayeditors'''.}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_lastauthoramp&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''last-author-amp''': Switches the separator between the last two names of the author list to space ampersand space (&amp;lt;code&amp;gt; &amp;amp; &amp;lt;/code&amp;gt;) when set to any value. Example: {{para|last-author-amp|yes}}&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_postscript&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;'''postscript''': Controls the closing punctuation for a citation; defaults to {{#if: |none|a period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;); {{#if: |for no terminating punctuation, specify {{para|postscript|none}} – leaving {{para|postscript}} empty is the same as omitting it, but is ambiguous|if the parameter is present, but blank, no terminating punctuation will be used}}}}. Ignored if '''quote''' is defined.&lt;br /&gt;
* &amp;lt;span id=&amp;quot;csdoc_separator&amp;quot;  &amp;gt;&amp;lt;/span&amp;gt;{{xtd|'''separator'''}}: (deprecated) &amp;lt;s&amp;gt;Controls the punctuation used to separate lists of authors, editors, etc. Defaults to a {{#if: |comma and space (&amp;lt;code&amp;gt;, &amp;lt;/code&amp;gt;)|period (&amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt;)}};  {{#if: |if the parameter is present, but blank, separator punctuation is set to the default|if the parameter is present, but blank, no separator punctuation will be used}}; a space must be encoded as &amp;lt;code&amp;gt;&amp;amp;amp;#32;&amp;lt;/code&amp;gt;{{#if: |.|{{#if: |.|&amp;amp;#32;do not use an asterisk (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;), colon (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;) or hash (&amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;) as they will be interpreted as wikimarkup.}} }}&amp;lt;/s&amp;gt; Use '''mode'''.&lt;br /&gt;
&lt;br /&gt;
==Citation styles==&lt;br /&gt;
Established citation styles for coauthors:&lt;br /&gt;
&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/mla/mla.htm MLA style]: Last, First and First Last. &amp;quot;If there are more than three authors, you may list only the first author followed by the phrase ''et al''.&amp;quot;&lt;br /&gt;
*[http://www.english.uiuc.edu/cws/wworkshop/writer_resources/citation_styles/apa/apa.htm APA style]: Last, F. &amp;amp; Last, F.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/citchi.htm Chicago Manual of Style]: Last, First, and First Last.&lt;br /&gt;
*[http://www.liunet.edu/cwis/cwp/library/workshop/cittur.htm Turabian]: same as Chicago Reference List, above.&lt;br /&gt;
*[http://www.library.uq.edu.au/training/citation/harvard.html Harvard]: Last, F., Last, F. &amp;amp; Last, F.&lt;br /&gt;
&lt;br /&gt;
==Technical notes==&lt;br /&gt;
&lt;br /&gt;
===Regression testing===&lt;br /&gt;
[[Regression testing|Regression tests]] are available here:&lt;br /&gt;
*{{tl|Cite IETF/regression tests}}&lt;br /&gt;
&lt;br /&gt;
===Subtemplates===&lt;br /&gt;
{{tl|Cite IETF}} uses the following subtemplates:&lt;br /&gt;
*{{tl|Cite IETF/doctypes}}&lt;br /&gt;
*{{tl|Cite IETF/makelink}}&lt;br /&gt;
*{{tl|Cite IETF/refanchor}}&lt;br /&gt;
&lt;br /&gt;
===URL generation===&lt;br /&gt;
HTML versions of the [[Internet Engineering Task Force|IETF]] documents are created with the Rfcmarkup tool from Henrik Levkowetz.&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/&lt;br /&gt;
| title       = Rfcmarkup Tool&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = October 16, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/tools/rfcmarkup/rfcmarkup-1.85.tgz&lt;br /&gt;
| title       = rfcmarkup-1.85.tgz (25 KB)&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Levkowetz&lt;br /&gt;
| first       = Henrik&lt;br /&gt;
| date        = October 16, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Request for Comments]] (RFC), [[Best Current Practice]] (BCP), and [[Internet Draft]] (I-D) documents which have been processed by the Rfcmarkup tool are cached by &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;tools.ietf.org/html/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/&lt;br /&gt;
| title       = IETF Documents&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
| url         = http://tools.ietf.org/html/code.txt&lt;br /&gt;
| title       = HTTP 404 handler for a directory of htmlized documents&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| date        = October 14, 2009&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
}}&amp;lt;/ref&amp;gt; and are linked via:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/rfc&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/bcp&amp;lt;/nowiki&amp;gt;&amp;lt;var&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/html/draft-&amp;lt;/nowiki&amp;gt;&amp;lt;draft name&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Standard]] (STD) and [[For Your Information]] (FYI) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;doc=&amp;lt;/code&amp;gt; parameter:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=std&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?doc=fyi&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Internet Experiment Note]] (IEN) and [[Réseaux Associés pour la Recherche Européenne|RARE]] Technical Reports (RTR) documents are linked via the Rfcmarkup tool using the &amp;lt;code&amp;gt;url=&amp;lt;/code&amp;gt; parameter and a path to the document:&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/ien/ien&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://tools.ietf.org/rfcmarkup?url=ftp://ftp.rfc-editor.org/in-notes/museum/RAREreports/rtr&amp;lt;/nowiki&amp;gt;&amp;lt;document number&amp;gt;.txt&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===URL anchor generation===&lt;br /&gt;
Anchors are generated for the URL using four parameters:&lt;br /&gt;
:{{para|section|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#section-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|appendix|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#appendix-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|referenceid|&amp;lt;var&amp;gt;id&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#ref-&amp;lt;var&amp;gt;&amp;lt;id&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
:{{para|page|&amp;lt;var&amp;gt;number&amp;lt;/var&amp;gt;}} generates &amp;lt;code&amp;gt;#page-&amp;lt;var&amp;gt;&amp;lt;number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
The template will give priority to the first of the parameters: {{para|section}}, {{para|appendix}}, {{para|referenceid}}, or {{para|page}} in this order and create an anchor using the first matching parameter.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
==Further reading==&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Internet Official Protocol Standards&lt;br /&gt;
| rfc         = 5000&lt;br /&gt;
| std         = 1&lt;br /&gt;
| year        = 2008&lt;br /&gt;
| month       = May&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&lt;br /&gt;
*{{cite IETF&lt;br /&gt;
| title       = Not All RFCs are Standards&lt;br /&gt;
| rfc         = 1796&lt;br /&gt;
| last1       = Huitema&lt;br /&gt;
| first1      = Christian&lt;br /&gt;
| last2       = Postel&lt;br /&gt;
| first2      = Jon&lt;br /&gt;
| authorlink2 = Jon Postel&lt;br /&gt;
| last3       = Crocker&lt;br /&gt;
| first3      = Steve&lt;br /&gt;
| authorlink3 = Steve Crocker&lt;br /&gt;
| year        = 1995&lt;br /&gt;
| month       = April&lt;br /&gt;
| publisher   = [[Internet Engineering Task Force|IETF]]&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
}}&lt;br /&gt;
*{{cite web&lt;br /&gt;
| url         = http://www.livinginternet.com/i/ia_rfc_ref.htm&lt;br /&gt;
| title       = Related RFC's, BCP, FYI, IEN, RTR, STD&lt;br /&gt;
| accessdate  =November 2, 2009&lt;br /&gt;
| last        = Stewart&lt;br /&gt;
| first       = William&lt;br /&gt;
| publisher   = LivingInternet.com&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Citation Style 1}}&lt;br /&gt;
{{Wikipedia referencing}}&lt;br /&gt;
{{UF-COinS}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox |&lt;br /&gt;
| &amp;lt;!-- CATEGORIES BELOW THIS LINE, PLEASE: --&amp;gt;&lt;br /&gt;
[[Category:Citation Style 1 specific-source templates]]&lt;br /&gt;
[[Category:Specific-source templates]]&lt;br /&gt;
[[Category:Templates generating COinS]]&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Data_exchange&amp;diff=3888038</id>
		<title>Template:Data exchange</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Data_exchange&amp;diff=3888038"/>
		<updated>2017-11-17T19:42:04Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: Smile (data interchange format)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name  = Data Exchange&lt;br /&gt;
|title = [[Data exchange]] formats&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1 = Human readable formats&lt;br /&gt;
|list1  =&lt;br /&gt;
* [[Atom (standard)|Atom]]&lt;br /&gt;
* [[XML]]&lt;br /&gt;
* [[YAML]]&lt;br /&gt;
* [[JSON]]&lt;br /&gt;
* [[Resource Description Framework|RDF]]&lt;br /&gt;
* [[Rebol]]&lt;br /&gt;
* [[RSS]]&lt;br /&gt;
* [[Web Ontology Language|OWL]]&lt;br /&gt;
&lt;br /&gt;
|group2 = Binary formats&lt;br /&gt;
|list2  =&lt;br /&gt;
* [[Action Message Format|AMF]]&lt;br /&gt;
* [[Abstract Syntax Notation One|ASN.1]]&lt;br /&gt;
* [[Apache Avro|Avro]]&lt;br /&gt;
* [[BSON]]&lt;br /&gt;
* [[CBOR]]&lt;br /&gt;
* [[FlatBuffers]]&lt;br /&gt;
* [[MessagePack]]&lt;br /&gt;
* [[Protocol Buffers]]&lt;br /&gt;
* [[Apache Thrift|Thrift]]&lt;br /&gt;
* [[Smile (data interchange format)|Smile]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:AMC_Shows&amp;diff=1588913</id>
		<title>Template:AMC Shows</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:AMC_Shows&amp;diff=1588913"/>
		<updated>2017-11-14T23:53:05Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: doc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name      = AMC Shows&lt;br /&gt;
| title     = [[AMC (TV channel)|AMC]] [[List of programs broadcast by AMC|original programming]]&lt;br /&gt;
| bodyclass = hlist&lt;br /&gt;
| state     = {{{state&amp;lt;includeonly&amp;gt;|autocollapse&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
&lt;br /&gt;
| group1 = Former&lt;br /&gt;
| list1  = {{Navbox|child&lt;br /&gt;
&lt;br /&gt;
| group1 = 1980s debuts&lt;br /&gt;
| list1  = &lt;br /&gt;
* ''[[The Movie Masters]]'' {{small|(1989–90)}}&lt;br /&gt;
| group2 = 1990s debuts&lt;br /&gt;
| list2  = &lt;br /&gt;
* ''[[The Lot]]'' {{small|(1999–2001)}}&lt;br /&gt;
* ''[[Remember WENN]]'' {{small|(1996–98)}}&lt;br /&gt;
| group3 = 2000s debuts&lt;br /&gt;
| list3  = &lt;br /&gt;
* ''[[Breaking Bad]]'' {{small|(2008–13)}}&lt;br /&gt;
* ''[[Broken Trail]]'' {{small|(2006)}}&lt;br /&gt;
* ''[[DVD TV]]'' {{small|(2002–08)}}&lt;br /&gt;
* ''[[Mad Men]]'' {{small|(2007–15)}}&lt;br /&gt;
* ''[[Movies That Shook the World]]'' {{small|(2005)}}&lt;br /&gt;
* ''[[The Prisoner (2009 miniseries)|The Prisoner]]'' {{small|(2009)}}&lt;br /&gt;
* ''[[Shootout (TV series)|Shootout]]'' {{small|(2003–08)}}&lt;br /&gt;
| group4 = 2010s debuts&lt;br /&gt;
| list4  = &lt;br /&gt;
* ''[[4th and Loud]]'' {{small|(2014)}}&lt;br /&gt;
* ''[[The American West]]'' {{small|(2016)}}&lt;br /&gt;
* ''[[Feed the Beast]]'' {{small|(2016)}}&lt;br /&gt;
* ''[[Freakshow (TV series)|Freakshow]]'' {{small|(2013–14)}}&lt;br /&gt;
* ''[[Game of Arms]]'' {{small|(2014)}}&lt;br /&gt;
* ''[[Halt and Catch Fire (TV series)|Halt and Catch Fire]]'' {{small|(2014–17)}}&lt;br /&gt;
* ''[[Hell on Wheels (TV series)|Hell on Wheels]]'' {{small|(2011–16)}}&lt;br /&gt;
* ''[[The Killing (U.S. TV series)|The Killing]]'' {{small|(2011–13)}}&lt;br /&gt;
* ''[[Low Winter Sun (U.S. TV series)|Low Winter Sun]]'' {{small|(2013)}}&lt;br /&gt;
* ''[[The Making of the Mob]]'' {{small|(2015–16)}}&lt;br /&gt;
* ''[[The Night Manager (miniseries)|The Night Manager]]'' {{small|(2016)}}&lt;br /&gt;
* ''[[Owner's Manual (TV series)|Owner's Manual]]'' {{small|(2013)}}&lt;br /&gt;
* ''[[The Pitch (TV series)|The Pitch]]'' {{small|(2012–13)}}&lt;br /&gt;
* ''[[Rubicon (TV series)|Rubicon]]'' {{small|(2010)}}&lt;br /&gt;
* ''[[Small Town Security]]'' {{small|(2012–14)}}&lt;br /&gt;
* ''[[Talking Bad]]'' {{small|(2013)}}&lt;br /&gt;
* ''[[Turn: Washington's Spies|TURN: Washington's Spies]]'' {{small|(2014–17)}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
| group2 = Current&lt;br /&gt;
| list2  = &lt;br /&gt;
* ''[[Better Call Saul]]'' {{small|(since 2015)}}&lt;br /&gt;
* ''[[Comic Book Men]]'' {{small|(since 2012)}}&lt;br /&gt;
* ''[[Fear the Walking Dead]]'' {{small|(since 2015)}}&lt;br /&gt;
* ''[[Geeking Out]]'' {{small|(since 2016)}}&lt;br /&gt;
* ''[[Humans (TV series)|Humans]]'' {{small|(since 2015)}}&lt;br /&gt;
* ''[[Into the Badlands (TV series)|Into the Badlands]]'' {{small|(since 2015)}}&lt;br /&gt;
* ''[[Preacher (TV series)|Preacher]]'' {{small|(since 2016)}}&lt;br /&gt;
* ''[[Ride with Norman Reedus]]'' {{small|(since 2016)}}&lt;br /&gt;
* ''[[The Son (TV series)|The Son]]'' {{small|(since 2017)}}&lt;br /&gt;
* ''[[Talking Dead]]'' {{small|(since 2011)}}&lt;br /&gt;
* ''[[Talking Preacher]]'' {{small|(since 2016)}}&lt;br /&gt;
* ''[[Talking Saul]]'' {{small|(since 2016)}}&lt;br /&gt;
* ''[[Talking with Chris Hardwick]]'' {{small|(since 2017)}}&lt;br /&gt;
* ''[[The Walking Dead (TV series)|The Walking Dead]]'' {{small|(since 2010)}}&lt;br /&gt;
&lt;br /&gt;
| group3 = Upcoming&lt;br /&gt;
| list3  = &lt;br /&gt;
* ''[[Lodge 49]]'' {{small|(TBA)}}&lt;br /&gt;
* ''[[McMafia]]''  {{small|(2018)}}&lt;br /&gt;
* ''[[The Spy Who Came in from the Cold#Miniseries|The Spy Who Came in from the Cold]]'' {{small|(TBA)}}&lt;br /&gt;
* ''[[The Terror (TV series)|The Terror]]'' {{small|(2017)}}&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
{{U.S. network show templates}}&lt;br /&gt;
&lt;br /&gt;
[[Category:United States television series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cinemax&amp;diff=3415022</id>
		<title>Template:Cinemax</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cinemax&amp;diff=3415022"/>
		<updated>2017-11-14T23:47:03Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: doc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name      = Cinemax&lt;br /&gt;
| title     = [[Cinemax]] [[List of programs broadcast by Cinemax|original programming]]&lt;br /&gt;
| bodyclass = hlist&lt;br /&gt;
| state     = {{{state&amp;lt;includeonly&amp;gt;|autocollapse&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
&lt;br /&gt;
| group1 = Former&lt;br /&gt;
| list1 = &lt;br /&gt;
* ''[[Second City Television]]'' {{small|(1983–84)}}&lt;br /&gt;
* ''[[Strike Back (TV series)|Strike Back]]'' {{small|(2011–15)}}&lt;br /&gt;
* ''[[Hunted (2012 TV series)|Hunted]]'' {{small|(2012)}}&lt;br /&gt;
* ''[[Banshee (TV series)|Banshee]]'' {{small|(2013–16)}}&lt;br /&gt;
* ''[[The Knick]]'' {{small|(2014-15)}}&lt;br /&gt;
* ''[[Quarry (TV series)|Quarry]]'' {{small|(2016)}}&lt;br /&gt;
| group2 = Current&lt;br /&gt;
| list2 =&lt;br /&gt;
* ''[[Outcast (TV series)|Outcast]]'' {{small|(since 2016)}}&lt;br /&gt;
* ''[[Mike Judge Presents: Tales from the Tour Bus]]'' {{small|(since 2017)}}&lt;br /&gt;
| group3 = Upcoming&lt;br /&gt;
| list3 =&lt;br /&gt;
* ''[[Rellik (TV series)|Rellik]]'' {{small|(TBA)}}&lt;br /&gt;
* ''[[Strike_Back_(TV_series)#Strike_Back_Reboot_.28TBA.29|Strike Back Reboot]]'' {{small|(TBA)}}&lt;br /&gt;
* ''[[Warrior (TV series)|Warrior]]'' {{small|(TBA)}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
{{U.S. network show templates}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;templatedata&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;params&amp;quot;: {}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/templatedata&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:United States television series navigational boxes]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:CW_Seed&amp;diff=3029272</id>
		<title>Template:CW Seed</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:CW_Seed&amp;diff=3029272"/>
		<updated>2017-11-14T23:28:09Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: bypass redir in nav&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name      = CW Seed&lt;br /&gt;
| title     = [[The CW#CW Seed|CW Seed]] original programming&lt;br /&gt;
| bodyclass = hlist&lt;br /&gt;
| state     = {{{state&amp;lt;includeonly&amp;gt;|autocollapse&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
&lt;br /&gt;
|group1 = Former&lt;br /&gt;
|list1 =&lt;br /&gt;
* ''[[Backpackers (web series)|Backpackers]]'' {{small|(2013–15)}}&lt;br /&gt;
* ''[[Husbands (TV series)|Husbands]]'' {{small|(2013)}}&lt;br /&gt;
* ''[[Seed (TV series)|Seed]]'' {{small|(2013–14)}}&lt;br /&gt;
* ''[[JoJoHead]]'' {{small|(2016)}}&lt;br /&gt;
&lt;br /&gt;
|group2 = Current&lt;br /&gt;
|list2 =&lt;br /&gt;
* ''[[Vixen (web series)|Vixen]]'' {{small|(since 2015)}}&lt;br /&gt;
&lt;br /&gt;
|group3 = Upcoming&lt;br /&gt;
|list3 = &lt;br /&gt;
* ''[[Freedom Fighters: The Ray]]'' {{small|(2017)}}&lt;br /&gt;
* ''[[Constantine (web series)|Constantine]]'' {{small|(2018)}}&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{Collapsible option}}&lt;br /&gt;
{{U.S. network show templates}}&lt;br /&gt;
&lt;br /&gt;
[[Category:United States television network and channel navigational boxes|{{PAGENAME}}]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:G4_Original_Broadcast_Line-up&amp;diff=5361922</id>
		<title>Template:G4 Original Broadcast Line-up</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:G4_Original_Broadcast_Line-up&amp;diff=5361922"/>
		<updated>2017-11-14T23:24:50Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: range since it is already completed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name      = G4 Original Broadcast Line-up&lt;br /&gt;
| image     = &lt;br /&gt;
| title     = [[G4 (U.S. TV channel)|G4 Original Broadcast Line-up]]&lt;br /&gt;
| state        = {{{state&amp;lt;includeonly&amp;gt;|autocollapse&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
| bodyclass = hlist&lt;br /&gt;
| basestyle = background: #318CE7; color: white;&lt;br /&gt;
&lt;br /&gt;
 | abovestyle = font-size: 90%;&lt;br /&gt;
 | above = ''April 24, 2002  – December 31, 2014''&lt;br /&gt;
&lt;br /&gt;
| group1 =&lt;br /&gt;
| list1  =&lt;br /&gt;
* [[Arena (G4 TV series)|Arena]]&lt;br /&gt;
* [[Blister (TV series)|Blister]]&lt;br /&gt;
* [[Cheat!]]&lt;br /&gt;
* [[Cinematech]]&lt;br /&gt;
* [[Filter (TV series)|Filter]]&lt;br /&gt;
* [[G4tv.com (TV series)|G4tv.com]]&lt;br /&gt;
* [[Game On (U.S. TV series)|Game On]]&lt;br /&gt;
* [[Icons (TV series)|Icons]]&lt;br /&gt;
* [[Reviews on the Run|Judgement Day]]&lt;br /&gt;
* [[Portal (TV series)|Portal]]&lt;br /&gt;
* [[Pulse (TV series)|Pulse]]&lt;br /&gt;
* [[Starcade]]&lt;br /&gt;
* Sweat&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
{{U.S. network show templates}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Defunct American television networks]]&lt;br /&gt;
[[Category:G4 (television)]]&lt;br /&gt;
[[Category:Television channels and stations established in 2002]]&lt;br /&gt;
[[Category:Video game culture]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:G4_Original_Broadcast_Line-up&amp;diff=5361921</id>
		<title>Template:G4 Original Broadcast Line-up</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:G4_Original_Broadcast_Line-up&amp;diff=5361921"/>
		<updated>2017-11-14T23:22:58Z</updated>

		<summary type="html">&lt;p&gt;50.53.1.21: doc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name      = G4 Original Broadcast Line-up&lt;br /&gt;
| image     = &lt;br /&gt;
| title     = [[G4 (U.S. TV channel)|G4 Original Broadcast Line-up]]&lt;br /&gt;
| state        = {{{state&amp;lt;includeonly&amp;gt;|autocollapse&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
| bodyclass = hlist&lt;br /&gt;
| basestyle = background: #318CE7; color: white;&lt;br /&gt;
&lt;br /&gt;
 | abovestyle = font-size: 90%;&lt;br /&gt;
 | above = ''Launch date: April 24, 2002''&lt;br /&gt;
&lt;br /&gt;
| group1 =&lt;br /&gt;
| list1  =&lt;br /&gt;
* [[Arena (G4 TV series)|Arena]]&lt;br /&gt;
* [[Blister (TV series)|Blister]]&lt;br /&gt;
* [[Cheat!]]&lt;br /&gt;
* [[Cinematech]]&lt;br /&gt;
* [[Filter (TV series)|Filter]]&lt;br /&gt;
* [[G4tv.com (TV series)|G4tv.com]]&lt;br /&gt;
* [[Game On (U.S. TV series)|Game On]]&lt;br /&gt;
* [[Icons (TV series)|Icons]]&lt;br /&gt;
* [[Reviews on the Run|Judgement Day]]&lt;br /&gt;
* [[Portal (TV series)|Portal]]&lt;br /&gt;
* [[Pulse (TV series)|Pulse]]&lt;br /&gt;
* [[Starcade]]&lt;br /&gt;
* Sweat&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
{{U.S. network show templates}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Defunct American television networks]]&lt;br /&gt;
[[Category:G4 (television)]]&lt;br /&gt;
[[Category:Television channels and stations established in 2002]]&lt;br /&gt;
[[Category:Video game culture]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>50.53.1.21</name></author>
		
	</entry>
</feed>