<article>

Article (記事)

ジャーナル記事。

備考

使用法: この要素は、典型的なジャーナル記事 (研究記事) だけでなく、雑誌内の記事以外の内容の多く (書籍や製品紹介、論説、解説、ニュース要約など) を記述するためにも使用できます。
関連する記述: 書評や類似の記事のタグ付けに関する説明は、Tagging Book or Product Reviews を参照してください。レター記事や記事に対する回答のタグ付けに関する説明は、Tagging Letters and Replies を参照してください。主要記事内での副記事 <sub-article> の使用については、Tagging Sub-articles を参照してください。

関連要素

ジャーナル記事 <article> >はいくつかの要素に分けられます:
  1. <front> (ジャーナルメタデータ [<journal-meta>] と記事メタデータ [<article-meta>]) の両方を含むメタデータまたはヘッダー情報;
  2. <body> (記事のテキストおよび画像コンテンツ);
  3. <back> (用語集、文献リスト、付録などの付帯情報);
  4. <floats-group> (一部の出版者やアーカイブは、記事本文または後付けで参照されている図や表などの浮動要素をすべて収納するために使用しています); and
  5. 一連の <response> 要素または一連の <sub-article> 要素。(<response> は、編集者によるまとめ、レター記事への回答、または査読コメントに対する作者からの意見など、記事に対するコメントです。副記事はニュース記事、抄録、委員会報告など主記事に完全に含まれる記事です。)

属性

コンテンツ・モデル

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

拡張コンテンツ・モデル

(front, body?, back?, floats-group?, (sub-article* | response*))

記述方法

以下の順:

これは最上位の要素であり、他の要素の中に含まれることはありません。

用例 1

前付け、文書本文、後付けからなる典型的な記事:
<article dtd-version="1.1">
<front>
<journal-meta>
<journal-id journal-id-type="pmc">BMJ</journal-id>
<journal-id journal-id-type="pubmed">BMJ</journal-id>
<journal-id journal-id-type="publisher">BR MED J</journal-id>
<journal-title-group>
<abbrev-journal-title>BR MED J</abbrev-journal-title>
</journal-title-group>
<issn>0959-8138</issn>
<publisher>
<publisher-name>British Medical Journal</publisher-name>
</publisher>
</journal-meta>
<article-meta>
<article-id pub-id-type="pmid">10092260</article-id>
<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 Williams</given-names></name>
<role>research physiotherapist</role>
<xref ref-type="aff" rid="StLuke"/></contrib>
<contrib contrib-type="author">
<name><surname>Young</surname>
<given-names>John G.</given-names></name>
<role>consultant physician</role>
<xref ref-type="aff" rid="StLuke"/>
</contrib>
<contrib contrib-type="author">
<name><surname>Langhorne</surname>
<given-names>Peter Parker ("Spider")</given-names></name>
<role>senior lecturer</role>
<xref ref-type="aff" rid="StLuke"/>
<author-comment><p>on behalf of the Day Hospital Group</p>
</author-comment></contrib>
</contrib-group>
<aff id="StLuke">...</aff>
<author-notes>
<fn fn-type="con">
<p>Contributors: AF planned and initiated the
review,...</p>
</fn>
<fn><p>Correspondence to: Dr Forster
<email>a.forster@leeds.ac.uk</email></p>
</fn>
</author-notes>
<pub-date publication-format="print" date-type="pub" iso-8601-date="1999-03-27">
<day>27</day><month>03</month><year>1999</year></pub-date>
<volume>318</volume>
<issue>7187</issue>
<fpage>837</fpage><lpage>841</lpage>
<history>
<date date-type="accepted" iso-8601-date="1999-01-29">
<day>29</day><month>01</month>
<year>1999</year></date>
</history>
<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>

用例 2

よくある記事要素の属性:

<article
  xmlns:mml="http://www.w3.org/1998/Math/MathML"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  dtd-version="1.1"
  article-type="article"
  specific-use="migrated">
<front>...</front>
<body>...</body>
<back>...</back>
</article>


<article
  article-type="iso-standard"
  dtd-version="1.1"
  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.1"
  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.1"
  specific-use="migrated"
  xml:lang="en">
<front>...</front>
<body>...</body>
<back>...</back>
</article>