itemizedlist

itemizedlist — A list in which each entry is marked with a bullet or other dingbat.

Synopsis

itemizedlist ::=

Attributes

Common attributes and common linking attributes.

Additional attributes:

  • mark (NMTOKEN)
  • spacing (enumeration)
    • “compact”
    • “normal”

Description

In an itemizedlist, each member of the list is marked with a bullet, dash, or other symbol.

Processing expectations

Formatted as a displayed block.

DocBook specifies neither the initial mark nor the sequence of marks to be used in nested lists. If explicit control is desired, the mark attribute should be used. The values of the mark attribute are expected to be keywords, not representations (numerical character references, entities, etc.) of the actual mark.

DocBook does not specify a set of appropriate keywords.

In order to enforce a standard set of marks at your organization, it may be useful to construct a customization layer that limits the values of the mark attribute to an enumerated list.

Attributes

Common attributes and common linking attributes.

any attribute

Any attribute in any other explicit namespace

mark

Identifies the type of mark to be used on items in this list

spacing

Specifies (a hint about) the spacing of the content

Enumerated values:
“compact”

The spacing should be "compact".

“normal”

The spacing should be "normal".

Parents

These elements contain itemizedlist: abstract, acknowledgements, answer, appendix, article, bibliodiv, bibliography, bibliolist, blockquote, callout, calloutlist, caption, caution, chapter, colophon, cover, danger, dedication, dialogue, drama, entry, example, figure, footnote, glossary, glossdef, glossdiv, glosslist, important, index, informalexample, informalfigure, itemizedlist, legalnotice, linegroup, listitem, meta (db.meta.content), note, orderedlist, para, partintro, poetry, preface, procedure, qandadiv, qandaset, question, result, revdescription, section, setindex, sidebar, simplesect, step, taskprerequisites, taskrelated, tasksummary, textobject, tip, toc, variablelist, warning.

Children

The following elements occur in itemizedlist: address, anchor, bibliolist, blockquote, bridgehead, calloutlist, caution, danger, dialogue, drama, epigraph, equation, example, figure, formalgroup, formalpara, glosslist, important, indexterm (db.indexterm.endofrange), indexterm (db.indexterm.singular), indexterm (db.indexterm.startofrange), info (db.titleforbidden.info), info (db.titleonly.info), informalequation, informalexample, informalfigure, informaltable, itemizedlist, listitem, literallayout, mediaobject, note, orderedlist, para, poetry, procedure, qandaset, remark, revhistory, sidebar, simpara, simplelist, stagedir, table, task, tip, title, titleabbrev, variablelist, warning.

See Also

Related elements: calloutlist, listitem, orderedlist, simplelist, variablelist.

Examples

 1 |<article xmlns='http://docbook.org/ns/docbook'>
   |<title>Example itemizedlist</title>
   | 
   |<itemizedlist mark='opencircle'>
 5 |  <listitem>
   |    <para>TeX and LaTeX
   |    </para>
   |  </listitem>
   |  <listitem override='bullet'>
10 |    <para>Troff
   |    </para>
   |  </listitem>
   |  <listitem>
   |    <para>Lout
15 |    </para>
   |  </listitem>
   |</itemizedlist>
   | 
   |</article>
  • TeX and LaTeX

  • Troff

  • Lout