◇◆
<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
Models and Context
May be contained in
<ack>, <app>, <app-group>, <bio>, <body>, <boxed-text>, <chem-struct>, <disp-quote>, <fig>, <glossary>, <index>, <index-div>, <index-group>, <license-p>, <list-item>, <named-content>, <non-normative-example>, <non-normative-note>, <normative-example>, <normative-note>, <notes>, <p>, <ref-list>, <sec>, <styled-content>, <supplementary-material>, <table-wrap>, <tbx:crossReference>, <tbx:definition>, <tbx:entailedTerm>, <tbx:example>, <tbx:externalCrossReference>, <tbx:note>, <tbx:pronunciation>, <tbx:see>, <tbx:source>, <tbx:term>, <tbx:usageNote>, <td>, <term-display>, <term-sec>, <th>
Description
The following, in order:
- <editing-instruction> Editing Instruction, zero or more
- <label> Label of a Figure, Reference, Etc., zero or one
- <title> Title, zero or one
- <list-item> List Item, one or more
Content Model
<!ELEMENT list %list-model; >
Expanded Content Model
((editing-instruction)*, label?, title?, (list-item)+)
Tagged Samples
Numerical list
...
<p>Each of the 11 goals is introduced by its name and
presented in the same structure:
<list list-type="order">
<list-item>
<p><bold>The goal:</bold> The basic goal statement.</p></list-item>
<list-item>
<p><bold>Discussion:</bold> An elaboration on the basic goal
statement.</p></list-item>
<list-item>
<p><bold>Background:</bold> Sources from which the goal is
derived.</p></list-item>
<list-item>
<p><bold>Common user accessibility needs:</bold> User accessibility
needs related to the goal.</p></list-item>
<list-item>
<p><bold>Questions to consider:</bold> Questions for applying
the goal.</p></list-item>
</list>
</p>
...
Ordered list using lowercase alphabetical prefix characters
...
<sec id="s6_2_1_5">
<label>6.2.1.5</label>
<title>Questions to consider</title>
<list list-type="alpha-lower">
<list-item><p>Who are the potential users of systems
that will be addressed by or who will relate to this
deliverable?</p></list-item>
<list-item><p>Which potential users, if any, might be
excluded by the requirements and recommendations in
this deliverable?</p></list-item>
<list-item><p>What are all the contexts of use in which
systems that relate to this deliverable could be
used?</p></list-item>
<list-item><p>Which contexts of use might be excluded
by the requirements and recommendations in this
deliverable?</p></list-item>
</list>
</sec>
...