<list>

List (リスト)

2 つ以上の項目の並びで、順序付けされていることもそうでないこともあります。

備考

@list-type 属性は、各項目の前に接頭辞を付ける必要があるかどうかを指定し、接頭文字の種類 (黒点や番号など) を決定します。@prefix-word 属性は、リスト項目の数字などの前に付ける “Step”, “Method”, or “Procedure” などの語を追加するために使用できます。

属性

コンテンツ・モデル

<!ELEMENT  list         %list-model;                                 >

拡張コンテンツ・モデル

(label?, title?, (list-item)+)

記述方法

以下の順:

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

用例

...
<sec>
<title>Conclusions</title>
<p>Day hospital care ... are justifiable.</p>
<boxed-text position="float">
<sec>
<title>Key messages</title>
<p>
<list list-type="bullet">
<list-item>
<p>The benefits of geriatric day hospital care have been
controversial for many years.</p>
</list-item>
<list-item>
<p>This systematic review of 12 randomised trials comparing
a variety of day hospitals with a range of alternative
services found no overall advantage for day hospital care.</p>
</list-item>
<list-item>
<p>Day hospitals had a possible advantage over no comprehensive
care in terms of death or poor outcome, disability, and use of
resources.</p>
</list-item>
<list-item>
<p>The costs of day hospital care may be partly offset by
a reduced use of hospital beds and institutional care among
survivors.</p>
</list-item>
</list>
</p>
</sec>
</boxed-text>
<p>...</p>
<p>...</p>
</sec>
...