<sec>

Section (セクション)

資料の見出しをつけられたグループで、文書本体の基本構造ユニット。

備考

非常に短い記事には段落 (および図や表などの他の段落レベルの要素) しか含まれないことがありますが、ほとんどのジャーナル記事はセクションに分割されており、それぞれにセクションの内容を説明する “Introduction”、 “Methodology”、あるいは “Conclusions” などの表題が付いています。
セクションには何らかの表題が必要です。それにより、たとえば、目次が自動的に生成できます。したがって、このタグセットでは、セクションに (少なくとも) <title> または <label> のどちらか、または両方が含まれる必要があります。
セクションは再帰的です。つまり、セクションのさまざまなレベルは、サブセクションの異なる名前ではなく、包含によって示されます。<sec> 要素には、同じく <sec> 要素を使用してタグ付けされる下位のセクションを含むことができます。<sec2> とか <sec3>, or <subsec1> のような明示的なタグを使うことはありません。
よくある用法: <sec> 要素は <back> 内でも使うことができ、“appendix”、“acknowledgment”、“glossary” などのような明示的な要素名のない他の後付け素材をタグ付けできます。たとえば、表はしばしば後付け内に記述され、“Table 6” のようなラベルか、“Epochs of Geologic Time” のような表題しかついていないことがあります。

属性

コンテンツ・モデル

<!ELEMENT  sec          %sec-model;                                  >

拡張コンテンツ・モデル

(sec-meta?, ((label, title?) | title), (address | alternatives | array | boxed-text | chem-struct-wrap | code | fig | fig-group | graphic | media | preformat | supplementary-material | table-wrap | table-wrap-group | disp-formula | disp-formula-group | def-list | list | tex-math | mml:math | p | related-article | related-object | disp-quote | speech | statement | verse-group)*, (sec)*, (fn-group | glossary | ref-list)*)

記述方法

この要素は以下の要素内に含むことができます:

用例

<article dtd-version="1.1">
<front>...</front>
<body>
<sec sec-type="intro">
<title>Introduction</title>
<p>Geriatric day hospitals developed rapidly in the United Kingdom
in the 1960s as an important component of care provision. The model
has since been widely applied in several Western countries. Day
hospitals provide multidisciplinary assessment and rehabilitation
in an outpatient setting and have a pivotal position between hospital
and home based services ... We therefore undertook a systematic
review of the randomized trials of day hospital care.</p>
</sec>
<sec sec-type="methods">
<title>Methods</title>
<p>The primary question addressed was ...</p>
<sec>
<title>Inclusion criteria</title>
<p>We set out to identify all ...</p>
</sec>
<sec>
<title>Search strategy</title>
<p>We searched for ...</p>
</sec>
...
</sec>
</body>
...</article>