Noeud:Ordered List, Noeud « Next »:Segmented List, Noeud « Previous »:Itemized List, Noeud « Up »:Lists
OrderedList = ( ( Title, TitleAbbrev? )?, ListItem+ ) ListItem = ( (%component.mix;)+ )
Elements : OrderedList
, Title
, TitleAbbrev
, ListItem
.
Attributes : Numeration
, InheritNum
, Continuation
, Spacing
.
The OrderedList
element is used to define an ordered list. Each
member of this list begins with a number, a letter, or any other sign part
of a sequence.
The OrderedList
element can begin with a title (Title
) and an
abbreviatd title (TitleAbbrev
), and contains one or several list
items (ListItem
).
The Numeration
attribute of the OrderedList
element is needed to
specify the sequence to use when numbering the list items. This attribute
can get one of the following values:
Arabic
Upperalpha
Loweralpha
Upperroman
Lowerroman
The InheritNum
attribute of the OrderedList
element specify if
a nested list must inherit the numeration from its parent lists. This
attribute can get the following values:
Inherit
Ignore
The Continuation
attribute of the OrderedList
element indicates
if the numeration of the list starts at the beginning of the sequence
(Restarts
) or if it continues the numeration of the precedent list
(Continues
).
The Spacing
attribute of the OrderedList
element indicates if
the list must be vertically compacted. This attribute can get the values
Normal
or Compact
.
<orderedlist numeration="upperroman"> <listitem> <para>Une première liste imbriquée, avec héritage de la numérotation : <orderedlist numeration="loweralpha" inheritnum="inherit"> <listitem> <simpara>Premier point</simpara> </listitem> <listitem> <simpara>Second point</simpara> </listitem> </orderedlist> </para> </listitem> <listitem> <para>Une seconde liste imbriquée, avec continuation de la numérotation : <orderedlist numeration="loweralpha" continuation="continues"> <listitem> <simpara>Avant-dernier point</simpara> </listitem> <listitem> <simpara>Dernier point</simpara> </listitem> </orderedlist> </para> </listitem> </orderedlist>