<listitem> List Item

An individual list entry.

Usage/Remarks

Authoring Note
The authoring model does not permit use of @xml:id and @xreflabel with this element. Use is available in the production model, but only then for backwards-compatibility should prior proceedings years’ production be necessary. (Model versions, predating 2010, permitted @xreflabel’s use with this element.)
Attributes
Models and Context
May be contained in
Description
Expanded Content Model

(blockquote | equation | figure | informaltable | itemizedlist | mediaobject | note | orderedlist | para | programlisting | table | variablelist)+

Tagged Samples
Bulleted list
...
  <section xml:id="mul2">
    <title>Securing a Permanent Colony in the Claimed Lands</title>
    <para>With land claimed in the New World, an expedition was mounted to establish a settlement.
      The first expedition failed. ...</para>
    ...
  </section>
  <section xml:id="mul3">
    <title>Native Inhabitants of the New World</title>
    <para>Upon establishing the Roanoke colony, the settlers ...</para>
  </section>
  <section xml:id="mul4">
    <title>Native Plants and Wildlife</title>
    <para>... The settlers discovered that while some roots could be eaten much in 
      appearance as they were dug, others had to be boiled before use as a foodstuff. 
      As more fully described below, other plants included beans, and several crops 
      previously unknown to the Europeans: 
      <itemizedlist>
        <listitem>
          <para><quote>macocqwer</quote> (gourds),</para>
        </listitem>
        <listitem>
          <para><quote>melden</quote> (an herb),</para>
        </listitem>
       <listitem>
          <para><quote>planta solis</quote> (sunflower &#8212; used in a type of bread, 
            as well as for broth),</para>
        </listitem>
        <listitem>
          <para>peas (powdered in a mortar), and</para>
        </listitem>
        <listitem>
          <para>potatoes.</para>
        </listitem>
      </itemizedlist>
    </para>
    <section xml:id="mul4-1">
      <title>Gourds</title>
      <para>The native people grew a variety of large broad-leafed, ground-covering vines 
        which produced what they called <quote>macocqwer</quote> or gourds. (<emphasis 
        role="ital">See</emphasis> <xref linkend="mul-fig1"/>.) Varying in color 
        among shades of green, yellow, and orange, these gourds served a number of functions, 
        not chief of which was as a food source. ...</para>
      ...
    </section>
    ...
  </section>
  ...
Variable list (two-part definition list)
...
<para>Information processing, especially text markup, was primitive in the colony. For example,
  most text stores were in XML! Documents may have looked like this:
  <programlisting language="XML">
&lt;teiHeader&gt;
  &lt;fileDesc&gt;
    &lt;titleStmt&gt;
      &lt;title&gt;Farming in the New World&lt;/title&gt;
      ...
    &lt;/titleStmt&gt;
  &lt;/fileDesc&gt;
&lt;/teiHeader&gt;</programlisting>
  Notice the paired Tags: <code>&lt;title&gt;</code> and <code>&lt;/title&gt;</code> and the
  primitive use of indenting. Unusual features of the colonists&#8217; data processing 
  practices included:
  <variablelist>
    <varlistentry>
      <term>Tags</term>
      <listitem>
        <para>Meaningful descriptions of the information enclosed by the markers</para>
      </listitem>
    </varlistentry>
    <varlistentry>
      <term>Balance</term>
      <listitem>
        <para>All markup is both opened and closed (or explicitly empty)</para>
      </listitem>
    </varlistentry>
  </variablelist>
</para>    
...