). Additional citation information can be provided in a fourth parameter,
, below, which will appear after the title.
Technically, all citation information can be given in a single parameter, as in:
But this is a bit messy, and will impede later efforts to generate metadata from quotation attribution the way we are already doing with source citations. This is much more usable:
element.
(See
#Nested quotations, below, for the most common use case.)
Parameter list
{{Quote
| quote =
| author =
| title =
| source =
| character =
| multiline =
| style =
}}
Reference citations
A reference citation can be placed before the quote, after the quote, or in the source
parameter:
- Typical use: In the regular-prose introduction to the quotation, when a quotation is given without the displayed
author
, title
, or source
parameters:According to Pat Doe, in "Underwater Basketweaving Tips" (2015):<ref>...</ref> {{quote |text=Quoted material.}}
- At the end of the quotation, when a quotation is given without the displayed
author
, title
, or source
parameters, and placement before the quote isn't appropriate (e.g. because the material immediately before the quote isn't cited to the same source or introduces multiple quotes from different sources:Pat Doe and Chris Foo took opposing positions: {{quote |text=Doe's Quoted material.<ref>...</ref>}} {{quote |text=Foo's Quoted material.<ref>...</ref>}}
- After the
source
value (if a value is given for the source
parameter other than the <ref>...</ref>
itself):One expert noted in 2015: {{quote |text=Quoted material. |author=Pat Doe |source="Underwater Basketweaving Tips" (2015)<ref>...</ref>}}
- Deprecated:
After the quoted person's name in author
, or after the work's title in title
, when a source
parameter is not being added:As noted in "Underwater Basketweaving Tips" (2015): {{quote |text=Quoted material. |author=Pat Doe<ref>...</ref>}}
Please avoid that format, as it will pollute the author or title metadata with non-author or non-title information.
Please do not place the citation in a |author=
or |source=
parameter by itself, as it will produce a nonsensical attribution line that looks like:
— [1]
Please also do not put it just outside the {{Quote}}
template, as this will cause a:
[1]
on a line by itself.
Style
Styling is applied through CSS rules in MediaWiki:Common.css.
/* Styling for Template:Quote */
blockquote.templatequote {
margin-top: 0;
}
blockquote.templatequote div.templatequotecite {
line-height: 1.5em;
/* @noflip */
text-align: left;
/* @noflip */
padding-left: 1.6em;
margin-top: 0;
}
HTML:
<blockquote class="templatequote">
<p>Quote text.</p>
<div class="templatequotecite"><cite>—Author, Source</cite></div>
</blockquote>
Examples
Markup
|
{{Quote|text=Cry "Havoc" and let slip the dogs of war.|character=Mark Antony|author=[[William Shakespeare]]|title=''[[Julius Caesar (play)|Julius Caesar]]''|source=act III, scene I}}
|
Renders as
|
{|
|
“
|
{{{1}}}
|
„
|
|
— William Shakespeare
|
|
|}
Limitations
If you do not provide text, the template generates a parser error message, which will appear in red text in the rendered page.
If any parameter's actual value contains an equals sign (=
), you must use a named parameter (e.g. |text=
, not a blank-name positional parameter. The text before the equals sign gets misinterpreted as a named parameter otherwise. Be wary of URLs, which frequently contain this character. Named parameters are always safer, in this an other templates.
If any parameter's actual value contains characters used for wiki markup syntax (such as pipe, brackets, single quotation marks, etc.), you may need to escape it. See Template:! and friends.
Next to right-floated boxes
As of September 2015[update], the text of a block quotation may rarely overflow (in Firefox or other Gecko browsers) a right-floated item (e.g. a {{Listen}}
box, when that item is below another right-floated item of a fixed size that is narrower. In Safari and other Webkit browsers (and even more rarely in Chrome/Chromium) the same condition can cause the block quotation to be pushed downward. Both of these problems can be fixed by either:
- removing the sizing on the upper item and letting it use its default size (e.g. removing
###x###px
sizing or |upright=
from a right-floated image above a wider right-floated object that is being overflowed by quotation text; or
- using
|style=overflow:inherit;
in the quotation template.
There may be other solutions, and future browser upgrades may eliminate the issue. It arises at all because of the blockquote { overflow: hidden; }
CSS declaration in Mediawiki:Common.css, which itself works around other, more common display problems. A solution that fixes all of the issues is unknown at this time.
Vanishing quotes
In rare layout cases, e.g. when quotes are sandwiched between userboxes, a quotation may appear blanked out, in some browsers. The workaround for this problem is to add |style=overflow:inherit;
to such an instance of the template.
Line breaks
The <blockquote>
element and any templates that use it do not honor newlines:
Markup |
Renders as
|
<blockquote>
Line 1
Line 2
Line 3
Line 4
</blockquote>
|
Line 1
Line 2
Line 3
Line 4
|
|
|
The simplest workaround for this is to use the <poem>
tag inside <blockquote>
, which will convert line breaks to <br />
tags:
Markup |
Renders as
|
<blockquote><poem>
Line 1
Line 2
Line 3
Line 4
</poem></blockquote>
|
Line 1
Line 2
Line 3
Line 4
|
|
|
This template sets a text style which might ignore one blank line, and so the template must be ended with a break (newline) or the next blank line might be ignored. Otherwise, beware inline, as:
- text here {{quote|this is quoted}} More text here
spans a blank line, unless a {{quote|...}} is ended with a line break, then the next blank line might be ignored and two paragraphs joined.
Nested quotations
The <blockquote>...</blockquote>
element has styles that change the font size: on desktop, text is smaller; on mobile, it is larger. This change is relative to the enclosing context, meaning that if you quote from a source that itself uses a block quotation, you'll find that the inner quotation is either really tiny and hard to read, or really large and barely fits on the screen. Additionally, you'll get an extra pair of decorative, oversize quotation marks. To fix both these issues, add the parameter |style=font-size:inherit;quotes:none;
on any inner {{quote}} templates.
Technical issues with block templates
If the block-formatted content begins with a list (or any other wikimarkup that is dependent upon a specific markup character being at the beginning of a line) then due to a bug in MediaWiki, a <nowiki />
must exist before the list (or whatever) starts. Compare:
|
code
|
result
|
FAIL
|
{{Quote|1=
*Firstly, ...
*Secondly, ...
*Thirdly, ...
}}
|
“
|
*Firstly, ...
- Secondly, ...
- Thirdly, ...
|
„
|
|
Works as intended
|
{{Quote|1=<nowiki />
*Firstly, ...
*Secondly, ...
*Thirdly, ...
}}
|
“
|
- Firstly, ...
- Secondly, ...
- Thirdly, ...
|
„
|
|
To embed a template in block markup like this, the block template's content parameter must be named or numbered and include the self-closing noinclude – as in |1=<nowiki />
– then every |
character in the template markup must be escaped with {{!}}
. An alternative is to use explicit HTML <table>
, <tr>
, <th>
, and <td>
markup.
Errors
Pages where this template is not used correctly populate Category:Pages incorrectly using the quote template. The category tracks tranclusions of Template:Quote that have no text given for quotation or use an equals sign in the argument of an unnamed parameter. It also tracks usage of |class=
, |id=
, |diff=
, |4=
, or |5=
.
TemplateData
<templatedata>
{
"description": "Adds a block quotation.",
"params": {
"text": {
"label": "text",
"description": "The text to quote",
"type": "content",
"required": true,
"aliases": [
"1",
"quote"
],
"example": "Cry \"Havoc\" and let slip the dogs of war."
},
"sign": {
"label": "sign",
"description": "The person being quoted",
"type": "content",
"required": false,
"aliases": [
"2",
"cite",
"author"
],
"example": "William Shakespeare",
"suggested": true
},
"source": {
"label": "source",
"description": "A source for the quote",
"type": "content",
"required": false,
"aliases": [
"3"
],
"example": "Julius Caesar, act III, scene I",
"suggested": true
}
}
}
</templatedata>