◇◆
<variablelist> Variable List
A list composed of a set of term/description pairs; a glossary or “definition list”.
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.)
Models and Context
May be contained in
Description
The following, in order:
- <title> Title, zero or one
- <varlistentry> Variable List Entry, one or more
Expanded Content Model
(title?, varlistentry+)
Tagged Sample
Terms and definitions
...
<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">
<teiHeader>
<fileDesc>
<titleStmt>
<title>Farming in the New World</title>
...
</titleStmt>
</fileDesc>
</teiHeader></programlisting>
Notice the paired Tags: <code><title></code> and <code></title></code> and the
primitive use of indenting. Unusual features of the colonists’ 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>
...