simplelist — An undecorated list of single words or short phrases
Common attributes and common linking attributes.
Additional attributes:
A SimpleList
is a list of words or phrases. It offers a
convenient alternative to the other list elements for inline content.
Ironically, the processing expectations of a
SimpleList
are quite complex.
The presentation of a SimpleList
is controlled by the
Type
attribute, which has three possible
values:
Inline
Indicates that the Member
s of the list should be
rendered as a comma separated, inline list.
Horiz
Indicates that the Member
s of the list should be
rendered in a tabular fashion with members running across the
rows.
Vert
Indicates that the Member
s of the list should be
rendered in a tabular fashion with members running down the
columns. This is the default.
In both of the tabular cases, the number of columns in the table is
controlled by the Columns
attribute.
Common attributes and common linking attributes.
FIXME:
FIXME:
Enumerated values: | |
---|---|
“horiz” | FIXME: |
“vert” | FIXME: |
“inline” | FIXME: |
These elements contain simplelist
: annotation
, answer
, appendix
, article
, bibliodiv
, bibliography
, bibliolist
, blockquote
, callout
, calloutlist
, caption
(db.caption), caution
, chapter
, colophon
, constraintdef
, dedication
, entry
, example
, figure
, footnote
, glossary
, glossdef
, glossdiv
, glosslist
, html:fieldset
, html:form
, important
, index
, indexdiv
, informalexample
, informalfigure
, itemizedlist
, legalnotice
, listitem
, msgexplan
, msgtext
, note
, orderedlist
, para
, partintro
, preface
, procedure
, qandadiv
, qandaset
, question
, refsect1
, refsect2
, refsect3
, refsection
, refsynopsisdiv
, revdescription
, sect1
, sect2
, sect3
, sect4
, sect5
, section
, setindex
, sidebar
, simplesect
, step
, taskprerequisites
, taskrelated
, tasksummary
, td
, textobject
, th
, tip
, toc
, tocdiv
, variablelist
, warning
.
<article xmlns='http://docbook.org/ns/docbook'> <title>Example simplelist</title> <para>Here is a <tag>SimpleList</tag>, rendered inline: <simplelist type='inline'> <member>A</member> <member>B</member> <member>C</member> <member>D</member> <member>E</member> <member>F</member> <member>G</member> </simplelist> </para> </article>
Here is a SimpleList
, rendered inline:
A, B, C, D, E, F, G
<article xmlns='http://docbook.org/ns/docbook'> <title>Example simplelist</title> <para>Here is the same <tag>SimpleList</tag> rendered horizontally with three columns: <simplelist type='horiz' columns='3'> <member>A</member> <member>B</member> <member>C</member> <member>D</member> <member>E</member> <member>F</member> <member>G</member> </simplelist> </para> </article>
Here is the same SimpleList
rendered horizontally with
three columns:
A | B | C |
D | E | F |
G |
<article xmlns='http://docbook.org/ns/docbook'> <title>Example simplelist</title> <para>Finally, here is the list rendered vertically: <simplelist type='vert' columns='3'> <member>A</member> <member>B</member> <member>C</member> <member>D</member> <member>E</member> <member>F</member> <member>G</member> </simplelist> </para> </article>
Finally, here is the list rendered vertically:
A | D | G |
B | E | |
C | F |