◇◆
<term> Term
A term or entry heading, to be described by its description element
sibling.
Models and Context
May be contained in
Description
Any combination of:
- Text, numbers, or special characters
- <link> Link
- <citation> Citation Reference
- <emphasis> Emphasis
- <phrase> Phrase
- <footnote> Footnote
- <trademark> Trademark
- <email> Email
- <code> Code
- <superscript> Superscript
- <subscript> Subscript
- <inlinemediaobject> Inline Media Object
- <quote> Inline Quote
- <xref> Cross-Reference
Expanded Content Model
(#PCDATA | link | citation | emphasis | phrase | footnote | trademark | email | code | superscript | subscript | inlinemediaobject | quote | xref)*
Tagged Sample
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">
<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>
...