<!DOCTYPE>¶
The <!DOCTYPE> declaration indicates the DTD to which the XML is associated, in other words, it defines the rules for the structure of the document. the Érudit Publishing Schema is based on the NISO JATS Journal Archiving DTD.
Example (this example may not be up to date) JATS version 1.2:
<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.2 20190208//EN" "https://jats.nlm.nih.gov/archiving/1.2/JATS-archivearticle1.dtd">
Floating Elements¶
Floating elements can appear anywhere in the document, be it in <article> <sub-article> or in <response> in the blocks: <article-meta>, <body> and <back>.
Examples:
Example of floating element <xref> in <article-meta>:¶
...
<article-meta>
...
<contrib contrib-type="author">
<name>
<surname>
<given-names>
</name>
<xref ref-type="aff" rid="aff01">1</xref>
</contrib>
...
</article-meta>
...
Example of floating element <xref> in <p>:¶
...
<body>
<p>text text text text text text text (<xref ref-type="bibr" rid="B42">Da Silva, 1976</xref>). text text text</p>
...
</body>
...
Example of floaring element <xref> in elements of <back>:¶
...
<fn fn-type="other" id="fn2">
<label>1</label>
<p>Compreende-se por habilidades "comportamentos ou conjuntos de comportamentos que caracterizam determinado desempenho do indivíduo" (<xref ref-type="bibr" rid="B22">Santos, Kienen, Viecili, Botomé, & Kubo, 2009</xref>, p. 133-134).</p>
</fn>
...