<list> List

Sequence of two or more items, which may or may not be ordered.

Usage/Remarks

The @list-type attribute specifies whether there should be a prefix preceding each item and determines the prefix type (such as bullet or number). The @prefix-word attribute can be used to prepend a word such as “Step”, “Method”, or “Procedure” to a list item, in addition to, typically, a number (thus “Step 1.”).
Attributes

Base Attributes

Models and Context
May be contained in
Description
The following, in order:
Content Model
<!ELEMENT  list         %list-model;                                 >
Expanded Content Model

(title?, (list-item)+)

Tagged Sample

Bulleted list

...
<sec>
 <title>Conclusions</title>
 <p>Day hospital care seems to be an effective service ...</p>
 <boxed-text position="float">
  <sec>
   <title>Key messages</title>
   <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>
  </sec>
 </boxed-text>
 <p>...</p>
</sec>
...
Related Resources