Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
This is the template sandbox page for Template:Quote frame (diff). See also the companion subpage for test cases. |
This template is used on approximately 2,300 pages and changes may be widely noticed. Test changes in the template's /sandbox or /testcases subpages, or in your own user subpage. Consider discussing changes on the talk page before implementing them.
Preview message: Transclusion count updated automatically (see documentation). |
If this template is used in article space, it will suppress the display of decorative curly quote marks, per MOS:BLOCKQUOTE. |
The Manual of Style guidelines for block quotations recommend formatting block quotations using the {{Blockquote}} template or the HTML <blockquote> element, for which that template provides a wrapper.
This template provides a quotation in a bordered box, on a light grey background, and spanning the page width by default. Do not put quotation marks around the quoted material.
Markup | Renders as |
---|---|
{{Quote frame |quote=Quoted material |author=Author |title=Title |source=other details}} {{Quote frame|Quoted material|Author|Title|other details}} |
|
{{Quote frame |quote=Quoted material |author=Author |source="Article Title", ''Newspaper Name'', date}} {{Quote frame|Quoted material|Author||"Article Title", ''Newspaper Name'', date}} |
In the short syntax, the 3rd parameter (which auto-italicizes) has been included but left empty to skip it, and we use the 4th to manually apply italics where needed. |
{{Quote frame |quote=Quoted material |author=Author |title=Title}} {{Quote frame|Quoted material|Author|Title}} |
|
{{Quote frame |quote=Quoted material}} {{Quote frame|Quoted material}} |
|
{{Quote frame |quote=Quoted material |source="Article Title", ''Newspaper Name'', date}} {{Quote frame|Quoted material|||"Article Title", ''Newspaper Name'', date}} |
In the short syntax, we skip two parameters by giving them empty. |
{{Quote frame|Quoted material |align=center}} |
|
{{Quote frame|Quoted material |align=right}} |
|
{{Quote frame|Quoted material |align=right |width=33%}} |
|
The |width=
parameter takes any valid CSS width value, such as 33% or 25em. This should not be specified in fixed pixel sizes (like 100px). As shown in the table above, the width is relative to the size of the container not the entire page, so the displayed width will be smaller if used inside a table.
If any of the parameters' content include an equal sign (=
) in its input, this will make the template not recognize the parameter properly unless:
{{Quote frame|quote=Einstein's equation, E=mc2, has to reach everywhere. Science is a beautiful gift to humanity, we should not distort it. |author=Abdul Kalam}}
{{Quote frame|1=Einstein's equation, E=mc2, has to reach everywhere. Science is a beautiful gift to humanity, we should not distort it. |2=Abdul Kalam}}
=
in the content is escaped with the {{=}}
template: {{Quote frame|Einstein's equation, E{{=}}mc2, has to reach everywhere. Science is a beautiful gift to humanity, we should not distort it.|Abdul Kalam}}
=
in the content is escaped with the =
character reference: {{Quote frame|Einstein's equation, E=mc2, has to reach everywhere. Science is a beautiful gift to humanity, we should not distort it.|Abdul Kalam}}
If the block-formatted content uses a named parameter (including |1=
) and begins with a list (or any other wikimarkup that is dependent upon a specific markup character being at the beginning of a line), because MediaWiki behavior is to strip whitespace from named parameters, a <nowiki />
and a new line must exist before the list (or whatever) starts. This no longer affects unnamed parameters. Compare:
code | result | |
---|---|---|
Works as intended | {{Quote frame|
|
|
FAIL | {{Quote frame|1=
|
|
Works as intended | {{Quote frame|1=<nowiki />
|
|
To embed a table in block markup like this, the block template's content parameter must be named or numbered and include the self-closing nowiki – as in |1=<nowiki />
– then every |
character in the table markup must be escaped with {{!}}
. An alternative is to use explicit HTML <table>
, <tr>
, <th>
, and <td>
markup.
TemplateData for Quote frame
insert description here
Parameter | Description | Type | Status | |
---|---|---|---|---|
Quoted material | 1 | String | required | |
Author | 2 | String | optional | |
Title | 3 | String | optional | |
Publication | 4 | Use <ref>and {{Cite book}} etc. | String | optional |
Alignment | align | Alignment of the quote box on the page—left / right / center / none. Defaults to none alignment.
| String | optional |
Width | width | Fixed width of the quote box, in a valid CSS value. Defaults to no fixed width. | String | optional |