Noeud:Simple List, Noeud « Next »:Variable List, Noeud « Previous »:Segmented List, Noeud « Up »:Lists
SimpleList = ( Member+ )
Elements : SimpleList
, Member
.
Attributes : Columns
, Type
.
The SimpleList
element is used to define a simple list of words or
groups of words.
The SimpleList
element is composed of one or several Member
elements, each one containing a member of the simple list. Unlike the other
lists in which members are block elements, the members of a simple list are
inline elements.
The Type
attribute of the SimpleList
element indiocates how to
present the list. It can get one of the following values:
Inline
Horiz
Vert
The Columns
attribute of the SimpleList
element specifies, when
Type
is Horiz
or Vert
, the number of columns of the
table. If this attribute is not specified, the value 1 is used.
<para>Things to buy, inline: <simplelist type="inline"> <member>Eggs</member> <member>Flour</member> <member>Sugar</member> <member>Milk</member> <member>Oil</member> </simplelist>, vertically on three columns: <simplelist type="vert" columns="3"> <member>Eggs</member> <member>Flour</member> <member>Sugar</member> <member>Milk</member> <member>Oil</member> </simplelist> or horizontally, always on three columns: <simplelist type="horiz" columns="3"> <member>Eggs</member> <member>Flour</member> <member>Sugar</member> <member>Milk</member> <member>Oil</member> </simplelist> </para>