<article> Article

A journal article.

Usage/Remarks

This element can be used to describe not only typical journal articles (research articles) but also much of the non-article content within a journal, such as book and product reviews, editorials, commentaries, obituaries, and news summaries.
Related Elements
A journal article (<article>) may be divided into four components:
  1. <processing-meta> (the metadata that concerns the XML file rather than the contents of the document);
  2. the <front> (the metadata or header information for the article, such as the title and the published date);
  3. the <body> (textual and graphical content of the article); and
  4. any <back> (ancillary information such as a glossary, reference list, or appendix).
Attributes

Base Attributes

xml:lang (default = en)

Namespaces

xmlns:ali (fixed value = http://www.niso.org/schemas/ali/1.0/)
xmlns:mml (fixed value = http://www.w3.org/1998/Math/MathML)
xmlns:xlink (fixed value = http://www.w3.org/1999/xlink)
xmlns:xsi (fixed value = http://www.w3.org/2001/XMLSchema-instance)

Miscellaneous non-JATS-specific Attributes

Models and Context
This top-level element may not be contained in any other elements.
Description
Content Model
<!ELEMENT  article      %article-short-model;                        >
Expanded Content Model

(processing-meta?, front, body, back?)

Tagged Samples
Complete article
<article dtd-version="1.3"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  xmlns:mml="http://www.w3.org/1998/Math/MathML">
 <front>
  <article-meta>
   <title-group>
    <article-title>Systematic review of day hospital care
     for elderly people</article-title>
   </title-group>
   <contrib-group>
    <contrib contrib-type="author">
     <name><surname>Forster</surname>
      <given-names>Anne</given-names></name>
     <role>research physiotherapist</role>
     <aff>Department of Health Care for the Elderly,
      St Luke&#x2019;s Hospital, Bradford BD5 0NA</aff>
     <author-comment>
      <p>Competing interests: None declared.</p>
      ...
     </author-comment>
    </contrib>
    ...
   </contrib-group>
   ...
   <abstract>...</abstract>
   <kwd-group>...</kwd-group>
  </article-meta>
 </front>
 <body>...</body>
 <back>...</back>
</article>
Sample attributes for <article>
<article dtd-version="1.2"
  xmlns:mml="http://www.w3.org/1998/Math/MathML"
  xmlns:xlink="http://www.w3.org/1999/xlink" 
  article-type="research-article">...
</article>
<article dtd-version="1.3"
  xmlns:mml="http://www.w3.org/1998/Math/MathML"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  article-type="editorial"
  xml:lang="fr">
 <front>...
</article>
With <processing-meta>
<article  dtd-version="1.3"
  article-type="research-article"
  xmlns:mml="http://www.w3.org/1998/Math/MathML"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  xml:lang="en">
 <processing-meta
   tagset-family="jats"
   base-tagset="authoring"
   mathml-version="3.0"
   table-model="xhtml">...</processing-meta>
 <front>...</front>
 <body>...</body>
 <back>...</back>
</article>
Related Resources