<quotation>

<quotation> (citation) décrit la pratique éditoriale adoptée par rapport aux guillements dans l’original. 2.3.3 The Editorial Practices Declaration 15.3.2 Declarable Elements
Module header — 2 The TEI Header
En complément des attributs globaux att.declarable (@default)
marks (guillemets) indique si les guillemets ont été retenus ou non comme faisant partie du texte.
Statut Optionel
Les valeurs autorisées sont:
none
aucun guillemet n’a été retenu.
some
quelques guillemetsont été retenues.
all
tous les guillemets ont été conservés. [Valeur par défaut]
form précise comment les guillemets sont indiqués dans le texte.
Statut Optionel
Note
L'attribut forme est condamné. Bien qu'il soit conservé pour raison de compatiblité, cet attribut sera supprimé à la prochaine mise à jour.
Utilisé par
Peut contenir
core: p
linking: ab
Declaration

<rng:element name="quotation">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.declarable.attributes"/>
 <rng:optional>
  <rng:attribute name="marks" a:defaultValue="all">
   <rng:choice>
    <rng:value>none</rng:value>
    <rng:value>some</rng:value>
    <rng:value>all</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="form" a:defaultValue="unknown">
   <rng:text/>
  </rng:attribute>
 </rng:optional>
 <rng:oneOrMore>
  <rng:ref name="model.pLike"/>
 </rng:oneOrMore>
</rng:element>
element quotation
{
   att.global.attributes,
   att.declarable.attributes,
   attribute marks { "none" | "some" | "all" }?,
   attribute form { text }?,
   model.pLike+
}
Exemple
<quotation marks="none">
 <p>No quotation marks have been retained. Instead, the <att>rend</att> attribute on the
 <gi>q</gi> element is used to specify what kinds of quotation mark was used, according
   to the following list: <list type="gloss">
   <label>dq</label>
   <item>double quotes, open and close</item>
   <label>sq</label>
   <item>single quotes, open and close</item>
   <label>dash</label>
   <item>long dash open, no close</item>
   <label>dg</label>
   <item>double guillemets, open and close</item>
  </list>
 </p>
</quotation>
Exemple
<quotation marks="all">
 <p>All quotation marks are retained in the text and are represented by appropriate Unicode
   characters.</p>
</quotation>