<list>

List

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

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

Content Model

<!ELEMENT  list         %list-model;                                 >

Expanded Content Model

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

Description

This element may be contained in:

Example

    ...
<p>Entries can fail HTG processing because of three
types of problems:
<list list-type="arabic">
<list-item id="bid.11">
<label>1</label>
<p>Formatting: submissions are not in the proper
Seq-submit format.</p>
</list-item>
<list-item id="bid.12">
<label>2</label>
<p>Identification: submissions may be missing the
genome center tag, sequence name, or Accession
number, or this information is incorrect.</p>
</list-item>
<list-item id="bid.13">
<label>3</label>
<p>Data: submissions have problems with the data
and therefore fail the validator checks.</p>
</list-item>
</list>
</p>
...