◇◆
list-type Type of List
Specifies what prefix character should precede each list item. For example, the style
may suggest the character type (“simple” or “ordered”), or the style may name the character explicitly (“alpha-lower” for a list numbered “a.”, “b.”, “c.”).
OPTIONAL on elements: <def-list>, <list>
Value | Meaning |
---|---|
Text, numbers, or special characters | A word that either (1) specifies the character to be used for the list-item prefix (for example, the word “bullet” for a list with bulleted items) or (2) describes the appearance or format of the list items (for example, the word “simple” for a list that has no prefix character before each list item or the word “ordered” for a numbered list whose prefix style is set at display time). |
Restriction | @list-type is an optional attribute; there is no default. |
Suggested usage
Although designed to accept any text as its value, the following are suggested list
types, which name the prefix character for each item in the list:
order
|
Ordered list. Prefix character is a number or a letter, depending on style.
|
---|---|
bullet
|
Unordered or bulleted list. Prefix character is a bullet, dash, or other symbol.
|
alpha-lower
|
Ordered list. Prefix character is a lowercase alphabetical character.
|
alpha-upper
|
Ordered list. Prefix character is an uppercase alphabetical character.
|
roman-lower
|
Ordered list. Prefix character is a lowercase roman numeral.
|
roman-upper
|
Ordered list. Prefix character is an uppercase roman numeral.
|
simple
|
Simple or plain list (No prefix character before each item)
|
Tagged Samples
Bulleted list
Each list item begins with a bullet.
...
<list list-type="bullet">
<list-item>
<p>The benefits of geriatric day hospital care have been
controversial for many years.</p>
</list-item>
...
</list>
...
Step List
... <list id="g387" list-type="order" list-content="procedure-list" prefix-word="Step "> ... <list-item><p>Attach the other red jumper cable clamp to the working battery's positive terminal.</p></list-item> </list> <graphic xlink:href="warning.jpg"/> <list continued-from="g387" list-type="order" list-content="procedure-list" prefix-word="Step "> <list-item><p>Attach one black jumper cable clamp to the working battery's negative terminal.</p></list-item> <list-item><p>Attach the other black jumper cable clamp to a clean metal surface on the disabled vehicle.</p></list-item> ... </list> ...