<article>

Article

A journal article.

Remarks

Usage: 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, and news summaries.

Related Elements

A journal article <article> may be divided into three parts:
  1. the <front> (the metadata or header information for the article, such as the title and the published date);
  2. the <body> (textual and graphical content of the article); and
  3. any <back> (ancillary information such as a glossary, reference list, or appendix).

Attributes

Content Model

<!ELEMENT  article      %article-short-model;                        >

Expanded Content Model

(front, body, back?)

Description

This top-level element may not be contained in any other elements.

Example 1

A typical article with front matter, a body, and back matter:
<article dtd-version="1.2d1">
<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>
<permissions>
<copyright-statement>Copyright &#x00A9; 1999, British 
Medical Journal</copyright-statement>
<copyright-year>1999</copyright-year>
</permissions>
<abstract>...</abstract>
</article-meta>
</front>
<body>...</body>
<back>...</back>
</article>

Example 2

Some realistic article attributes:
<article
  xmlns:mml="http://www.w3.org/1998/Math/MathML"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  dtd-version="1.2d1"
  article-type="article"
  specific-use="migrated">
<front>...</front>
<body>...</body>
<back>...</back>
</article>
<article
  article-type="iso-standard"
  dtd-version="1.2d1"
  specific-use="export-for-online"
  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">
<front>...</front>
<body>...</body>
<back>...</back>
</article>
<article
  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="publisher-note"
  dtd-version="1.2d1"
  specific-use="production"
  xml:lang="en">
<front>...</front>
<body>...</body>
<back>...</back>
</article>
<article
  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="article"
  dtd-version="1.2d1"
  specific-use="migrated"
  xml:lang="en">
<front>...</front>
<body>...</body>
<back>...</back>
</article>