<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE book SYSTEM "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<book lang="en">
  <bookinfo>
    <title>CDL TEI Base Encoding Guidelines</title>
    <author>
      <firstname>Nancy</firstname>
      <surname>Kushigian</surname>
    </author>
    <edition>Version 1.3</edition>
    <copyright>
      <year>2006</year>
      <holder>University of California</holder>
    </copyright>
    <legalnotice>
      <para><emphasis role="bold">The encoding guidelines provided here are unedited working drafts
        produced by CDL's Structured Text Working Group. They should not be treated as final
        documents. Updated guidelines will be available in November 2004.</emphasis></para>
    </legalnotice>
  </bookinfo>
  <preface>
    <title>Introduction</title>
    <para>The following base-encoding guidelines are not meant to be used alone, but rather should
      be used in the development of best practice documents for specific document types (i.e.
      manuscripts, books, oral histories, etc.). Elements or encoding designated "optional" in this
      document may be "required" by these text type guidelines. All STWG guidelines are meant to be
      used in conjunction with documentation for TEI P4. Where an issue is not directly addressed in
      these guidelines, full TEI documentation should be consulted.</para>
  </preface>
  <chapter>
    <title>General Instructions</title>
    <sect1>
      <title>Tag Sets</title>
      <para>Use the full TEI XML DTD and include the prose, figures, and linking tag sets as shown
        below. The use of the CDL user extension files and the inclusion of the 'STWG.book' entity
        is the mechanism by which a text type DTD extensions is selected.</para>
      <para>Entity declarations should use the full object filename, less extension. The SYSTEM
        identifier could either point at a publicly available URL or local system path. However, in
        the latter case, this path must be replicated in the file set submitted to CDL. Please use
        the 'GIF', 'JPEG', or 'PDF' notations. Texts <emphasis role="bold">MUST</emphasis> validate
        before being submitted to CDL.</para>
      <para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<!DOCTYPE TEI.2 SYSTEM "tei2.dtd" [
<!ENTITY % TEI.XML "INCLUDE">
<!ENTITY % TEI.prose "INCLUDE">
<!ENTITY % TEI.figures "INCLUDE">
<!ENTITY % TEI.linking "INCLUDE">

<!ENTITY % TEI.extensions.ent SYSTEM 'CDL_base.ent'>
<!ENTITY % TEI.extensions.dtd SYSTEM 'CDL_base.dtd'>
<!ENTITY % CDL.book "INCLUDE">

<!ENTITY fig1 SYSTEM "figures/fig1.gif" NDATA GIF>
. . . 
]>]]>
            </programlisting>
        </informalexample>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/ST.html#STIN">[P4: 3.3]</ulink>
        </emphasis>
      </para>
      <para>If images are to be supplied in multiple resolutions, it will be necessary to encode
        this in the METS record for the text:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<fileGrp ID="figures">
   <fileGrp ID="fig1">
      <file ID="fig1-m" ADMID="image-rights" USE="med-res" MIMETYPE="image/gif">
         <FLocat LOCTYPE="URL" 
                 xlink:href="/dynaxml/data/cj/kt109nc2cj/figures/fig1.gif"/>
      </file>
      <file ID="fig1-h" ADMID="image-rights" USE="hi-res" MIMETYPE="image/gif">
         <FLocat LOCTYPE="URL" 
                 xlink:href="/dynaxml/data/cj/kt109nc2cj/figures/fig1_h.gif"/>
      </file>
   </fileGrp>
   ...]]>
            </programlisting>
      </informalexample>
      <para>Please consult with the CDL Ingest team before constructing a multiple-resolution METS.</para>
    </sect1>
    <sect1>
      <title>Encoding Practice</title>
      <para>Markup practice should adhere strictly to the following guidelines, especially with
        regard to those elements, attributes and attribute values that are marked as "REQUIRED". If
        a question arises that cannot be resolved with these instructions, the contributor should
        resort to the TEI Guidelines, version 4:</para>
      <informalexample>
        <para>
          <ulink url="http://www.tei-c.org/P4X/">http://www.tei-c.org/P4X/</ulink>
        </para>
      </informalexample>
      <para>At all points in these guidelines the appropriate TEI Guideline section will be
        referenced using the following notation:</para>
      <informalexample>
        <para>
          <emphasis role="bold">[P4: 11.2]</emphasis>
        </para>
      </informalexample>
    </sect1>
    <sect1>
      <title>Element Names</title>
      <para>Use 'camel case' element names only [i.e. teiHeader, NOT teiheader or TEIHEADER].</para>
    </sect1>
    <sect1>
      <title>Character Encoding</title>
      <para>Documents must be encoded using the Unicode Standard (UTF-8), and must include the
        encoding attribute in their XML declaration:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<?xml version="1.0" encoding="UTF-8"?>]]>
            </programlisting>
      </informalexample>
      <para>Unicode characters can be incorporated into a document directly (&#224;) or
        indirectly by representing them with numeric entity references. These numeric character
        entities can take either the decimal (&amp;#224;) or hexadecimal forms
        (&amp;#x00E0;). Characters can NOT be represented using named character entities
        (&amp;agrave;), with the exception of those specifically exempted in the XML 1.0
        Specification, which MUST be used to avoid validation errors:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA['<' Less Than     &lt;    
> Greater Than  &gt;    
& Ampersand     &amp;]]>
            </programlisting>
      </informalexample>
      <para>If attribute values need to contain single or double quotes use the following character
        entities to avoid a parser error:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[" Quotation Mark  &quot;    
' Apostrophe      &apos;]]>
            </programlisting>
      </informalexample>
      <para>
        <emphasis role="bold">Example:</emphasis>
      </para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<name reg="Ol&apos; Yeller">]]>
            </programlisting>
      </informalexample>
      <para>As part of the CDL ingest process, documents will be checked for the correct encoding
        and rejected if nonconforming characters or encodings are detected.</para>
    </sect1>
    <sect1>
      <title>Extent of Encoding</title>
      <para>CDL TEI Text Type Guidelines specify minimal encoding for particular types of texts.
        Normally, the &lt;encodingDesc&gt; element in the document header defines your
        encoding practices.</para>
    </sect1>
    <sect1>
      <title>Unique Identifier</title>
      <para>Every text will be assigned an ARK (Archival Resource Key) (i.e.
        'ark:/13030/kt167nb66r') as a unique identifier by CDL, which should be used for file naming
        (see below).</para>
    </sect1>
  </chapter>
  <chapter>
    <title>Encoding Practice</title>
    <sect1 id="tei2">
      <title>Root Element</title>
      <para>Each document should contain one and only one root element. The 'id' attribute is
        required and should contain the unique key of the ARK assigned to the text in question:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<TEI.2 id="kt5n39n99v">]]>
            </programlisting>
      </informalexample>
    </sect1>
    <sect1 id="teihdr">
      <title>Document Header</title>
      <para>Header encoding should follow the practices described in detail in the <ulink url="http://www.cdlib.org/inside/diglib/stwg/metadata">
          <citetitle>CDL Encoding Guidelines for the TEI Header</citetitle>
        </ulink>. It is usually sufficient to follow the instructions there for the minimal header.
        However, if your project is going to depend on the TEI header as the principal source of
        metadata it is advisable to use the full header as a model. CDL searching depends on a
        crosswalk to Dublin Core for indexing. You will find instructions on which elements are
        essential for this process in the previously mentioned document.(<ulink url="http://www.cdlib.org/inside/diglib/stwg/metadata">
          <citetitle>CDL Encoding Guidelines for the TEI Header</citetitle>
        </ulink>, Appendices A &amp; B)</para>
      <para>NOTE: I would like to stress the importance of including the &lt;idno
        type="ARK"&gt; element and &lt;idno type="LOCAL"&gt; (used to preserve the
        project's local object id). These are essential to maintaining the link between the
        document, it's persistent identifier (ARK), and its local ID.</para>
      <para>Minimal Header Example:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<teiHeader type="CDL-TEI:BK">
  <fileDesc>
    <titleStmt>
      <title>The Opening of the Apartheid Mind : 
             Options for the New South Africa : 
             Electronic Version</title>
      <author>
        <name>Adam, Heribert</name>
      </author>
      <respStmt>
        <resp>and</resp>
        <name reg="Moodley, Koogila">Kogila Moodley</name>
      </respStmt>
      <respStmt>
        <resp>Text encoder:</resp>
        <name reg="Hastings, Kirk">Kirk Hastings</name>
      </respStmt>
    </titleStmt>
    <extent>ca. 816 Kb</extent>
    <publicationStmt>
      <publisher>California Digital Library</publisher>
      <pubPlace>Oakland, CA</pubPlace>
      <date value="2002-00-00">2002</date>
      <idno type="ARK">ark:/13030/ft958009mm</idno>
      <idno type="LOCAL">6178</idno>
    </publicationStmt>
    <seriesStmt>
      <title>UC Press Electronic Editions</title>
      <idno type="OTHER">http://www.ucpress.edu</idno>
    </seriesStmt>
    <sourceDesc>
      <biblFull>
        <titleStmt>
          <title>The Opening of the Apartheid Mind : 
                 Options for the New South Africa</title>
          <author>
            <name reg="Adam, Heribert">Heribert Adam</name>
          </author>
          <respStmt>
            <resp>and</resp>
            <name reg="Moodley, Koogila">Kogila Moodley</name>
          </respStmt>
        </titleStmt>
        <extent>xvi, 277 p. : map ; 23 cm.</extent>
        <publicationStmt>
          <publisher>University of California Press</publisher>
          <pubPlace>Berkeley, CA</pubPlace>
          <date value="1993-00-00">1993</date>
          <idno type="LCCN">92036443</idno>
        </publicationStmt>
      </biblFull>
    </sourceDesc>
  </fileDesc>
</teiHeader>]]>
            </programlisting>
      </informalexample>
      <para>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/HD.html#HD7">[P4: 5.6]</ulink>
        </emphasis>
      </para>
    </sect1>
    <sect1 id="struct">
      <title>Text Structure</title>
      <para>All information in the source document should be encoded within the overarching
        &lt;text&gt; element. The &lt;text&gt; element contains three sub-elements,
        the &lt;front&gt;, &lt;body&gt;, and &lt;back&gt;. Of these three,
        only &lt;body&gt; is required. These three &lt;text&gt; divisions are
        further subdivided into a hierarchy of divisions, beginning with a mandatory
        &lt;div1&gt; at the top of this hierarchy for &lt;body&gt; and &lt;back&gt;.</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<TEI.2 id="ARK>
   <teiHeader> . . . </teiHeader>
   <text>
      <front> . . . </front>       OPTIONAL
      <body>                       REQUIRED
         <div1> . . . </div1>
      </body>
      <back>                       OPTIONAL
         <div1> . . . </div1>
      </back>
   </text>
</TEI.2>]]>
            </programlisting>
      </informalexample>
      <para>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/DS.html#DSDIV">[P4: 7.1]</ulink>
        </emphasis>
      </para>
      <sect2 id="group">
        <title>Groups of Texts</title>
        <para>Groups of individual texts packaged together within a single document should be
          encoded using TEI's &lt;group&gt; element. Only use &lt;group&gt; when
          each individual text has its own title page. Groups of texts which do not have their own
          individual title pages should be encoded using TEI's standard &lt;divn&gt; element structure.</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<TEI.2>
  <teiHeader type="text" status="new">
    <fileDesc>
      <titleStmt>
        <title/>
      </titleStmt>
      <publicationStmt>
        <p>x</p>
      </publicationStmt>
      <sourceDesc default="NO">
        <p>x</p>
      </sourceDesc>
    </fileDesc>
    <profileDesc>
      <langUsage default="NO">
        <language id="eng">English</language>
        <language id="spa">Spanish</language>
      </langUsage>
    </profileDesc>
  </teiHeader>
  <text>
    <front>
      <titlePage>
        <pb id="pi" n="[i]"/>
        <docTitle>
          <titlePart type="main">CONVENIO COLECTIVO ENTRE SAMUEL S. VENER COMPANY Y LA UNION DE
            CAMPESINOS DE AMERICA, AFL-CIO</titlePart>
          <titlePart type="main">COLLECTIVE AGREEMENT BETWEEN SAMUEL S. VENER COMPANY AND UNITED
            FARM WORKERS OF AMERICA-CIO</titlePart>
        </docTitle>
        <pb n="[ii]" id="pii"/>
      </titlePage>
    </front>
    <group>
      <text lang="eng">
        <front>
          <div1 type="index" org="uniform" part="N" sample="complete">
            <pb id="piii" n="[iii]"/>
            <head type="main">INDEX</head>
            <list type="simple">
              <item>ARTICLE 1: Recognition</item>
              <item> ... </item>
            </list>
          </div1>
        </front>
        <body>
          <div1 type="article" org="uniform" part="N" sample="complete">
            <head id="a1" type="main">ARTICLE 1: RECOGNITION</head>
            <p>A. The Company does hereby recognize the Union as the sole labor organization
              representing all of the Company's agricultural employees (hereinafter called
              "workers") in the unit set forth in Agricultural Labor Relations Board's certification ...</p>
            <p> ... </p>
            <p>Executed and effective as of this 7th day of April, 1977.</p>
          </div1>
        </body>
      </text>
      <text lang="spa">
        <front>
          <titlePage>
            <pb id="pia" n="[i]"/>
            <docTitle>
              <titlePart type="main">CONVENIO COLECTIVO S. VENER COMPANY Y LA UNION DE CAMPESINOS DE
                AMERICA, AFL-CIO</titlePart>
              <pb id="piia" n="[ii]"/>
            </docTitle>
          </titlePage>
          <div1 org="uniform" part="N" sample="complete">
            <pb n="[iii]" id="piiia"/>
            <head rend="underline">INDICE</head>
            <list type="simple">
              <item>ARTICULO 1 Reconocimiento</item>
              <item> ... </item>
            </list>
          </div1>
        </front>
        <body>
          <div1 type="article" org="uniform" part="N" sample="complete">
            <head type="main" id="a1s">
              <hi rend="underline">ARTICULO 1: RECONOCIMIENTO</hi>
            </head>
            <p>A. Por este medio la Compañía reconoce a la Unión como la única organización laboral
              que representa a todos los empleados agrícolas ...</p>
          </div1>
        </body>
        <back>
          <div1 type="appendix" org="uniform" part="N" sample="complete">
            <pb id="p28a" n="28"/>
            <head type="main" id="apas">
              <hi rend="underline">APENDICE "A"</hi>
            </head>
            <head type="subtitle">SUELDOS</head>
            <p> ... </p>
          </div1>
        </back>
      </text>
    </group>
  </text>
</TEI.2>]]>
               </programlisting>
        </informalexample>
        <para>NOTE: All of the texts within such a composite document share the same, single
          &lt;teiHeader&gt; at the very beginning of the file.</para>
        <para>
          <emphasis role="bold">
            <ulink url="http://www.tei-c.org/P4X/DS.html#DSGRP">[P4: 7.3]</ulink>
          </emphasis>
        </para>
      </sect2>
    </sect1>
    <sect1 id="front">
      <title>Front Matter</title>
      <para>Front matter will vary depending on the type of text. Most of what is described here
        applies to printed materials and may not be applicable to manuscripts.</para>
      <sect2 id="tpage">
        <title>Title Page</title>
        <para>Do not encode a &lt;titlePage&gt; unless the document being encoded itself
          contains a formal title page. There is a decided lack of elements available in TEI for all
          of the various entities one typically finds on title pages. Title pages within source
          documents may utilize a number of formatting peculiarities such as specific alignment,
          fonts, incidental images, etc. The encoder need not necessarily concern herself with
          reproducing this display exactly. It is often enough to convey to users that the document
          has a title page, what textual information it contains and the order in which it appears.</para>
        <para>
          <emphasis role="bold">Example:</emphasis>
        </para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<titlePage>
   <docTitle>
      <titlePart type="main">The Opening of <lb/>the Apartheid Mind</titlePart>
      <titlePart type="subtitle">Options for the New South Africa</titlePart>
   </docTitle>
   <docAuthor><name>Heribert Adam</name> and 
              <name>Kogila Moodley</name></docAuthor>
   <docImprint>
      <publisher>UNIVERSITY OF CALIFORNIA PRESS</publisher>
      <pubPlace>Berkeley · Los Angeles · London</pubPlace>
      <docDate>1993</docDate>
   </docImprint>
</titlePage>]]>
          </programlisting>
        </informalexample>
      </sect2>
      <sect2>
        <title>
          <emphasis role="bold">&lt;docTitle&gt;</emphasis>
        </title>
        <para>Encode the formal title, subtitle, and other subsidiary title parts within the
          required &lt;docTitle&gt;.</para>
        <para>
          <emphasis role="bold">Example:</emphasis>
        </para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<docTitle>
      <titlePart type="main">Inventory of furniture and art.</titlePart>
</docTitle>]]>
                    </programlisting>
        </informalexample>
      </sect2>
      <sect2>
        <title>
          <emphasis role="bold">&lt;docAuthor&gt;</emphasis>
        </title>
        <para>Record here authors and other names appearing on the title page responsible for the
          intellectual content of the document. Each &lt;docAuthor&gt; will generally render
          on its own line except when it appears within a &lt;byline&gt; element. Encoders
          may choose to encode multiple names within a single &lt;docAuthor&gt; if it is
          desired that they display on a single line, or may choose to repeat
          &lt;docAuthor&gt; if they should be displayed on separate lines. When encoding
          more than one name in a single &lt;docAuthor&gt;, encoders may optionally choose
          to further encode each name in a &lt;name&gt; sub-element.</para>
        <para>Record the name as it appears on the title page. Do not attempt to reorder the name
          into catalog entry form or use the form of the name as it may appear in a name authority
          file. The reg attribute may be used to correlate a name to an authority.</para>
        <para>
          <emphasis role="bold">Example:</emphasis>
        </para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<docAuthor>
  <name>Tom Jennings </name> and 
  <name>Julia Hoffman, MD</name>
</docAuthor>]]>
          </programlisting>
        </informalexample>
        <para>OR:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<docTitle>
  <titlePart type="main">Canine morphotypes and physiology</titlePart>
</docTitle>
<docAuthor>Tom Jennings </docAuthor>
<docAuthor>Julia Hoffman, MD</docAuthor>]]>
          </programlisting>
        </informalexample>
      </sect2>
      <sect2>
        <title>&lt;byline&gt;</title>
        <para>Encode statements of responsibility in a &lt;byline&gt; element.
          &lt;docAuthor&gt;s are very frequently encoded within &lt;byline&gt; when
          they are associated with text ascribing a role or responsibility for the intellectual
          content of the work, e.g., "by."</para>
        <para>Example:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<docTitle>
  <titlePart type="main">Canine morphotypes and physiology</titlePart>
</docTitle>
<byline>By <docAuthor>Tom Jennings </docAuthor> and 
<docAuthor>Julia Hoffman, MD</docAuthor></byline>]]>
          </programlisting>
        </informalexample>
      </sect2>
      <sect2>
        <title>&lt;docImprint&gt;, &lt;publisher&gt;, &lt;pubPlace&gt; </title>
        <para>Record publication information within &lt;docImprint&gt;. Use
          &lt;pubPlace&gt; and &lt;publisher&gt;, in any order and as often as
          necessary to record the place or places of publication and the name of the publisher or
          publishers respectively.</para>
        <para>Example:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<docImprint>
  <pubPlace> Collinsport:</pubPlace>
  <publisher> Stoddard and Associates, 1993.</publisher>
</docImprint>]]>
          </programlisting>
        </informalexample>
      </sect2>
      <sect2>
        <title>&lt;docDate&gt; </title>
        <para>Record copyright and publication dates within &lt;docDate&gt;. Include any
          associated text or symbols such as the word "copyright" or.</para>
        <para>Example:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<docDate>&#xA9; 1941.</docDate>]]>
          </programlisting>
        </informalexample>
      </sect2>
      <sect2>
        <title>&lt;epigraph&gt;</title>
        <para>Quotations or bits that appear on the title page may simply be encoded as a segment or
          paragraph or they may be encoded within &lt;epigraph&gt;. Assign a rend attribute
          if desired to record specific renderings such as italics. Within &lt;epigraph&gt;,
          unattributed text may be recorded in a &lt;q&gt; element While attributed
          epigraphs may be surrounded with &lt;cit&gt;.</para>
        <para>Example:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<epigraph>
  <q>The price we pay one day may<lb>make us weep.</q>
</epigraph>]]>
          </programlisting>
        </informalexample>
        <para>OR:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<p>
  <q>The price we pay one day may make us weep.</q>
]]>
          </programlisting>
        </informalexample>
        <para>Example:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<epigraph rend="italic">
  <cit>
    <q>No man is an island, but some men are peninsulas.</q>
    <bibl>Joe Haskell</bibl>
  </cit>
</epigraph>]]>
          </programlisting>
        </informalexample>
        <para>
          <emphasis role="bold">
            <ulink url="http://www.tei-c.org/P4X/DS.html#DSTITL">[P4: 7.5]</ulink>
          </emphasis>
        </para>
      </sect2>
    </sect1>
    <sect1 id="div">
      <title>Divisions</title>
      <para>The document should use a hierarchical structure of numbered &lt;divn&gt;
        elements, with at least one &lt;div1&gt; in &lt;body&gt; and
        &lt;back&gt;. No &lt;div&gt; or &lt;div0&gt; elements are allowed.
        Do not surround an entire text or group with a &lt;divn&gt; if there are no smaller
        divisions within. All &lt;divn&gt; elements must have a unique 'id' attribute for
        purposes of navigation. If necessary these can be added automatically on ingest by CDL:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<div1 id="ch01">
  <div2 id="ss1.1">
    <div3 id="ss2.1">
      <div4 id="ss3.1">]]>
          </programlisting>
      </informalexample>
      <para>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/DS.html#DSDIV2">[P4: 7.1.2]</ulink>
        </emphasis>
      </para>
      <para>The type attribute is required on all &lt;divn&gt; elements. Every attempt
        should be made to supply the most specific type possible for &lt;divn&gt; elements.
        CDL encoding guidelines for specific types of texts include sets of types appropriate to
        that genre. The following is a list that might be appropriate to for published books:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<divn type="sec">        section 
            volume       Volume 
            part         Part
            chapter      Chapter 
            ss1...ss6    Sub-section level number 
            endnotes     End notes section 
            index        Back of the book index 
            dedication   Dedication 
            bibliography Bibliography 
            appendix     Appendix 
            glossary     Glossary]]>
          </programlisting>
      </informalexample>
    </sect1>
    <sect1 id="open_close">
      <title>Division Openers and Closers</title>
      <sect2>
        <title>&lt;head&gt;</title>
        <para>The &lt;head&gt; element is used by the system for navigation purposes.
          Specific guidelines are supplied below regarding where headers may or may not appear. A
          head element should always be used where a display or where system-supplied navigation is
          desired. Heads may be supplied by the editor/encoder if they are not available in the
          text. Supplied heads should be enclosed in square brackets or some other convention
          expressly detailed in the editorial declaration. No type attribute is required by the
          system, although CDL encoding guidelines for specific types of texts will specify and
          require some type attributes.</para>
        <para>Examples:</para>
        <para>Title transcribed from text:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<head>Chapter 4. The Ghost Returns to Middlington Manor.</head>]]>
        </programlisting>
        </informalexample>
        <para>Title supplied by editor/encoder:</para>
        <informalexample>
          <programlisting format="linespecific">
          <![CDATA[<head>[Segment 2]</head>]]>
        </programlisting>
        </informalexample>
        <para>Examples of what NOT to do:</para>
        <para>In general, it is good practice to use the &lt;head&gt; tag for all major
          textual divisions. In order to support document navigation and display the following rules
          for the use of the &lt;head&gt; tag must be followed:</para>
        <orderedlist>
          <listitem>
            <para>If any sibling of a &lt;divn&gt; at any level contains a head, then it
              must as well. Therefore, if any div1 uses a head, all div1's in the text must do so, etc.</para>
          </listitem>
          <listitem>
            <para>If div's are left headless at a certain level, then any divs subordinate to them
              may not have heads.</para>
          </listitem>
        </orderedlist>
        <para>Multiple &lt;head&gt; elements can be differentiated using the 'type'
          attribute (i.e. "subtitle" for subtitle)s:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<div1 id="ch01">
  <head type="main"> . . . </head>
  <head type="subtitle"> . . . </head>]]>
        </programlisting>
        </informalexample>
        <para>The following example is wrong because one of the sibling &lt;div1&gt;s
          contains a &lt;head&gt; while none of the other &lt;div1&gt;s contain them:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<div1></div1>
<div1></div1>
<div1><head></head></div1>
<div1></div1>]]>
        </programlisting>
        </informalexample>
        <para>The next example is wrong because all of the child &lt;diav2&gt;s contain a
          &lt;head&gt; but the parent &lt;div1&gt; does not:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<div1>
  <div2><head></div2>
  <div2><head></div2>
</div1>]]>
        </programlisting>
        </informalexample>
        <para>The last example is wrong because one of the &lt;divn&gt; descendants contains
          a &lt;head&gt; but none of its ancestors contain one.</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<div1>
  <div2></div2>
  <div2></div2>
  <div2>
      <div3></div3>
      <div3>
          <div4>
            <head></head>
          </div4>
      </div3>
  <div2>
  <div2></div2>
</div1>]]>
        </programlisting>
        </informalexample>
        <para>In fact, in this last example, ALL the &lt;divn&gt;s must contain a head! The
          single &lt;div4&gt; with a &lt;head&gt; has made it necessary for the
          entire tree to have &lt;heads&gt;.</para>
      </sect2>
    </sect1>
    <sect1 id="milestones">
      <title>Page Breaks and Milestones</title>
      <sect2>
        <title>&lt;pb&gt;</title>
        <para>You must record a page break marking the beginning of each page of your source
          document. The n attribute may be used by the system to render page numbers.</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<div1 type="chapter" n="I" id="ch01">
  <pb n="1" id="p1"/>
  <head>Introduction</head>
]]>
          </programlisting>
        </informalexample>
        <para>The &lt;milestone&gt; element may be used to mark boundaries between sections
          of text that are not page breaks or normal divisions. The unit attribute is required. One
          possible use would be to encode the decorative section breaks common to monographs:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<milestone unit="section" rend="decorative">]]>
          </programlisting>
        </informalexample>
        <para>
          <emphasis role="bold">
            <ulink url="http://www.tei-c.org/P4X/CO.html#CORS5">[P4: 6.9.3]</ulink>
          </emphasis>
        </para>
      </sect2>
    </sect1>
    <sect1 id="ab">
      <title>Arbitrary Containers and Segments</title>
      <para>Arbitrary Containers (&lt;ab&gt; and &lt;seg&gt;) may be used to contain
        text, groups of images or tables that are in positions where they wouldn't normally be
        valid. This can happen, for example, when it is necessary to encode a &lt;note&gt;
        within a closer or head. Use &lt;seg&gt; when you need to tag a phenomenon that
        occurs within major divisions, but use &lt;ab&gt; to tag phenomena that occur
        between major divisions(a list of valid locations for &lt;seg&gt; and
        &lt;ab&gt; can be found in the TEI Guidelines). Both elements must be assigned a
        type attribute. For instance, use &lt;ab&gt; rather than inserting extra
        &lt;p&gt;'s around non-paragraphs simply to allow the text to validate.</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<ab type="illgrp">
  <figure id="fig001" entity="kt167nb66r_fig001.gif">
</ab>
]]>
          </programlisting>
      </informalexample>
      <para>Both elements must be assigned a type attribute.</para>
      <para>NOTE: &lt;ab&gt; and &lt;seg&gt; should ONLY be used as a last resort,
        and not simply to allow a text to validate.</para>
      <para>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/SA.html#SASE">[P4: 14.3]</ulink>
        </emphasis>
      </para>
    </sect1>
    <sect1 id="font">
      <title>Font Changes</title>
      <sect2>
        <title>&lt;hi&gt;</title>
        <para>Record special typography with the &lt;hi rend=""&gt; tag. Use the required
          rend attribute to record the type of typography employed in the source document, e.g.,
          rend="italic", rend="underline". Values for the rend attribute are described in encoding
          guidelines for various types of texts. Rend should NOT be used for editorial changes in
          typography unless the practice is documented in the encoding description.</para>
      </sect2>
      <sect2>
        <title>&lt;emph&gt;</title>
        <para>The &lt;emph&gt; element may be used instead of &lt;hi&gt; to
          distinguish typography that conveys emphasis rather than simply stylization. Thus, one
          could encode the following:</para>
        <para>Example:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<hi rend= "largecaps">Once Upon a Time</hi> Chicken Little decided 
to build a <emph rend="italics">very</emph> big house.]]>
        </programlisting>
        </informalexample>
        <para>CDL supports the following 'rend' attribute values for &lt;hi&gt; &amp; &lt;emph&gt;:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<hi rend="bold">
          italic
          mono			       Monospace
          roman 		       Deemphasized 		
          smallcaps
          strikethrough
          subscript    
          superscript   
          underline]]>
        </programlisting>
        </informalexample>
        <para>If the 'rend' attribute is omitted text will be rendered italic.</para>
        <para>
          <emphasis role="bold">
            <ulink url="http://www.tei-c.org/P4X/CO.html#COHQHE">[P4: 6.3.2.2]</ulink>
          </emphasis>
        </para>
      </sect2>
    </sect1>
    <sect1 id="foreign">
      <title>Foreign Words</title>
      <para>Use the foreign element to indicate a word or phrase that might require a different font
        or writing direction. The 'lang' attribute should contain the name of the appropriate
        UNICODE code chart. (see &lt;lanfUsage&gt;).</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<foreign lang="Greek">&#904;&#905;&#906;&#907;&#908;</foreign>]]>
          </programlisting>
      </informalexample>
      <para>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/CO.html#COHQH">[P4: 6.3.2]</ulink>
        </emphasis>
      </para>
    </sect1>
    <sect1 id="quotes">
      <title>Block Quotations</title>
      <para>Simple block quotes may be recorded as:</para>
      <informalexample>
        <programlisting format="linespecific">      
<![CDATA[<p rend="blockquote">It was seen from the beginning of the study . . . </p>]]>
          </programlisting>
      </informalexample>
      <para>If your quote contains multiple paragraphs, use the &lt;q&gt; tag to enclose the
        entire quote and &lt;p&gt; do contain the individual paragraphs:</para>
      <informalexample>
        <programlisting format="linespecific">      
<![CDATA[<q rend="blockquote">
  <p>It was seen from the beginning that the study . . . </p>
  . . .
</q>]]>
          </programlisting>
      </informalexample>
      <para>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/CO.html#COHQQ">[P4: 6.3.3]</ulink>
        </emphasis>
      </para>
    </sect1>
    <sect1 id="verse">
      <title>Verse</title>
      <sect2>
        <title>Divisions in verse.</title>
        <para>Poems in the body of the text of a volume of poetry will be tagged using
          &lt;div1&gt; for the main structural element, with &lt;div2&gt; tags (and
          so on) for subordinate sections within the poem.</para>
        <para>The most common attributes for poems will be:</para>
        <informalexample>
          <programlisting format="linespecific">      
<![CDATA[<div1 type="poem">
            "sonnet"
            "drama"]]>
        </programlisting>
        </informalexample>
        <para>See encoding guidelines for books, rare books, and manuscripts for more complete
          discussions of poetry and for recommended attribute values.</para>
      </sect2>
      <sect2>
        <title>Titles and Headings for Verse</title>
        <para>Use the &lt;head&gt; tag for all titles, subtitles, etc. For anything but the
          main title, use the type attribute to note its function:</para>
        <informalexample>
          <programlisting format="linespecific">      
<![CDATA[<head type="subtitle">
<head type="dedication">]]>
        </programlisting>
        </informalexample>
      </sect2>
      <sect2 id="lg">
        <title>Encoding Line Groups and Fragments</title>
        <para>Poetry is generally encoded by using the line group &lt;lg&gt; element and the
          line &lt;l&gt; element. The &lt;lg&gt; tag is used around groups of lines
          that carry poetic structure, such as verses, quatrains, etc., which can be specified in a
          type attribute as in the example below:</para>
        <informalexample>
          <programlisting format="linespecific">      
<![CDATA[<div1 type="poem">
  <lg type="stanza">
    <l>Twinkle twinkle little star,</l>
    <l>How I wonder what you are,</l>
    <l>Up above the world so high,</l>
    <l>Like a diamond in the sky,</l>
    <l>Twinkle twinkle little star,</l>
    <l>How I wonder what you are.</l>
  </lg>
</div1>]]>
        </programlisting>
        </informalexample>
        <para>The attribute 'type' in &lt;lg&gt; is optional. However encoding guidelines
          for types of texts will specify recommended attributes (common ones are "stanza," "verse
          paragraph," "couplet," "quatrain," etc.)</para>
        <para>For line groups that carry no poetic structure (e.g. fragments) use:</para>
        <informalexample>
          <programlisting format="linespecific">      
<![CDATA[<lg type="fragment">]]>
        </programlisting>
        </informalexample>
      </sect2>
      <sect2 id="l">
        <title>Lines of Verse and Indentation</title>
        <para>Lines of verse use the &lt;l&gt; tag. Lines that are indented are noted using
          the rend attribute:</para>
        <informalexample>
          <programlisting format="linespecific">      
<![CDATA[<l rend="indentn">  where n=the number of indentation units desired.]]>
</programlisting>
        </informalexample>
        <para>The attributes 'rend' and 'n' are optional.</para>
      </sect2>
      <sect2>
        <title>Typographic Divisions within Poems</title>
        <para>Typographic division within poems, such as a line of asterisks or periods or a line
          may be encoded as &lt;milestone&gt; with attribute values of unit="typography" and
          n="*****" or n="......" (where the value of n is the typographic character used to divide
          the line groups.)</para>
      </sect2>
      <sect2>
        <title>Closers and Trailers</title>
        <para>Occasionally, a poem will end with a date, or some other type of information not part
          of the poem. This information may be encoded using the &lt;closer&gt; tag, as for example:</para>
        <informalexample>
          <programlisting format="linespecific">      
<![CDATA[<closer>1876.</closer>]]>
        </programlisting>
        </informalexample>
        <para>For more detailed discussions of verse encoding, see the text type guidelines and the
          TEI Guidelines.</para>
      </sect2>
    </sect1>
    <sect1 id="ilink">
      <title>Internal Links and Cross References</title>
      <para>References will be encoded using the &lt;ref&gt; element and are required to
        have both a target and type attribute to indicate the nature of the target. In the case of a
        published book the following values might apply:</para>
      <informalexample>
        <programlisting format="linespecific">      
<![CDATA[<ref target="#" type="fnoteref"> footnotes
                      noteref  endnotes
                      pageref  page breaks
                      citeref  bibliographic citations
                      figref  figures
                      tableref  tables
                      formularef formulas
                      secref  any div]]>
          </programlisting>
      </informalexample>
      <para>Example:</para>
      <informalexample>
        <programlisting format="linespecific">      
<![CDATA[<ref id="bkd0e131" target="d0e131" type="noteref">1</ref>

<note id="d0e131" corresp="bkd0e131" place="end" n="1">
  . . .
</note>]]>
          </programlisting>
      </informalexample>
      <para>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/CO.html#COXR">[P4: 6.6]</ulink>
        </emphasis>
      </para>
    </sect1>
    <sect1 id="xlink">
      <title>External Objects</title>
      <para>We have upgraded the &lt;xref&gt; and &lt;xptr&gt; elements by adding
        the 'href' attribute for external URIs, as suggested in the TEI guidelines. Now the 'doc'
        attribute can contain a local object's entity name and 'href' can be used for URLs or ARKs,
        which are not legal entity names. The 'type' attribute can now be used to indicate the link
        or object type, the 'rend' attribute to define how the object should be linked to, and the
        'from' and 'to' attributes to point at a specific parts of the digital object. 'from' and
        'to' usually target 'id' attributes on structural elements. The following set of attribute
        values are supported:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<xref doc="ENTITY" href="ARK" type="obj" rend="new" from="" to="">TEXT</xref>
 xptr                    URL        mets       replace
                                    url        embed
                                    pdf        none
                                    sound
                                    video
                                    stream]]>
        </programlisting>
      </informalexample>
      <para>External Link Examples:</para>
      <para>URL:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<xref href="http://www.cdlib.org" type="url" rend="new">]]>
          </programlisting>
      </informalexample>
      <para>Result: new window displaying referenced URL.</para>
      <para>CDL digital object:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<xref href="ark:/13030/kt5n39n99v" type="obj" rend="replace" from="ch02">]]>
          </programlisting>
      </informalexample>
      <para>Result: document view replaced with chapter 2 of referenced ARK.</para>
      <para>PDF document:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<xref doc="kt167nb66r_ch19.pdf" type="pdf" rend="new">]]>
          </programlisting>
      </informalexample>
      <para>Result: new window displaying a PDF of chapter 19.</para>
      <para>If a more complicated selection of derivatives needs to be offered the user, I would
        suggest making use of the &lt;structMap&gt; in the METS record. Where 'from' and
        'to' would point to 'id' attributes in the referenced METS:</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<xref href="ark:/13030/kt5n39n99v" type="mets" rend="embed" from="seg6">]]>
          </programlisting>
      </informalexample>
      <para>Result: all objects under the 'seg6' portion of the &lt;structMap&gt; are
        embedded in the document.</para>
      <para>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/SA.html#SAXR">[P4: 14.2]</ulink>
        </emphasis>
      </para>
    </sect1>
    <sect1 id="note">
      <title>Notes</title>
      <para>For notes use the &lt;note&gt; element and the 'place' attribute to indicate
        whether it's an "end", "foot" or "inline" note.</para>
      <para>Supported note "place" attributes are:</para>
      <glosslist>
        <glossentry>
          <glossterm>end</glossterm>
          <glossdef>
            <para>note appears at end of chapter, part, or volume.</para>
          </glossdef>
        </glossentry>
        <glossentry>
          <glossterm>foot</glossterm>
          <glossdef>
            <para>note appears at foot of page.</para>
          </glossdef>
        </glossentry>
        <glossentry>
          <glossterm>inline</glossterm>
          <glossdef>
            <para>note appears as a marked paragraph in the body of the text.</para>
          </glossdef>
        </glossentry>
      </glosslist>
      <para>Notes without the place attribute will be considered in-line. A footnote can be placed
        in the text immediately following the reference to it. Endnotes should be placed exactly as
        they appear in the printed book, in a separate &lt;divn&gt; if necessary. Note
        numbers are encoded as the value of the 'n' attribute and should not be included in the
        text. Reference dingbats, crosses, daggers, and the like may be recorded as Unicode symbols
        in either n="*" or in the content for &lt;ref&gt;*&lt;/ref&gt;. If a note is
        referenced by a &lt;ref&gt;, it must contain a unique 'id'. Place any note text in &lt;p&gt;s.</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<note id="n1_ch13" place="foot" n="*">
  <p>In the literature, some confusion exists . . . </p>
</note>]]>
        </programlisting>
      </informalexample>
      <sect2>
        <title>Footnotes and Endnotes</title>
        <para>Encode footnotes (those references, notes and citations appearing at the bottom of the
          page) where they are referenced and endnotes (those appearing at the end of a chapter,
          section, or other significant textual division) at the point in the text where they
          actually appear. Standardizing the encoding of such notes affords greater latitude in how
          stylesheets may render them. In a web interface, notes may appear in popup windows, while
          in printed versions they could be rendered as footnotes or endnotes. Use the n attribute
          of &lt;note&gt; to record the footnote number. Also assign a unique id to each
          note. A 'place' attribute with the value "foot" or "end" is required for every footnote or
          endnote. If you choose to encode a footnote that is clearly bibliographic in nature, you
          may enclose it within the TEI &lt;bibl&gt; element, encoding the author or authors
          as &lt;author&gt;, italicized or underlined titles as &lt;title&gt;, dates
          as &lt;date&gt;, and references to a page number, span of page numbers, or
          chapters as &lt;biblScope&gt;:</para>
        <para>Examples with accompanying references:</para>
        <para>INLINE:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<p>Collections are ensembles of distinct entities or objects of any
sort.<note place="inline"><p>We explain below why we use the uncommon
term collection instead of the expected set. Our usage corresponds to
the aggregate of many mathematical writings and to the sense of class
found in older logical writings.</p></note> The elements...</p>]]>
        </programlisting>
        </informalexample>
        <para>ENDNOTE:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<ref id="ref1" target="en1" type="noteref"/>

<note id="en1" corresp="ref1" n="1" place="end">
  <p>We explain below why we use the uncommon term collection instead
     of the expected set. Our usage corresponds to the aggregate of
     many mathematical writings and to the sense of class found in
     older logical writings.</p>
</note>]]>
        </programlisting>
        </informalexample>
        <para>FOOTNOTE:</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<p>Collections are ensembles of distinct entities or objects of any
sort.<note id="fn1" n="*" place="foot"><p>We explain below why we use
the uncommon term collection instead of the expected set. Our usage
corresponds to the aggregate of many mathematical writings and to the
sense of class found in older logical writings.</p></note> The
elements...</p>]]>
        </programlisting>
        </informalexample>
        <para>
          <emphasis role="bold">
            <ulink url="http://www.tei-c.org/P4X/CO.html#CONONO">[P4: 6.8.1]</ulink>
          </emphasis>
        </para>
      </sect2>
    </sect1>
    <sect1 id="list">
      <title>Lists</title>
      <para>Use the TEI list scheme to encode lists. Use the type attribute of &lt;list&gt;
        to record the type of list appearing in the document. Valid type attributes are:</para>
      <glosslist>
        <glossentry>
          <glossterm>
            <emphasis role="bold">ordered</emphasis>
          </glossterm>
          <glossdef>
            <para>Numbered lists</para>
          </glossdef>
        </glossentry>
        <glossentry>
          <glossterm>
            <emphasis role="bold">bulleted</emphasis>
          </glossterm>
          <glossdef>
            <para>Marked or bulleted lists</para>
          </glossdef>
        </glossentry>
        <glossentry>
          <glossterm>
            <emphasis role="bold">simple</emphasis>
          </glossterm>
          <glossdef>
            <para>Unmarked or unnumbered lists</para>
          </glossdef>
        </glossentry>
        <glossentry>
          <glossterm>
            <emphasis role="bold">gloss</emphasis>
          </glossterm>
          <glossdef>
            <para>Definition lists consisting of a &lt;label&gt; and an &lt;item&gt;</para>
          </glossdef>
        </glossentry>
      </glosslist>
      <para>Nest lists as appropriate. Use a list of type "gloss" for so-called "definition" lists
        consisting of a term (often highlighted) followed by a definition or expansion of the term.
        Gloss-type lists should be used for chronological lists (lists consisting of a date followed
        by an event, such as within biographies).</para>
      <sect2 id="olist">
        <title>Ordered Lists</title>
        <para>Encode lists which include sequential markers, numbers or letters as &lt;list
          type="ordered"&gt;. Typically such sequential markers will begin with the numeral 1
          and increment uniformly for each item in the list. However other numbering schemes may
          also be encountered. For uniformly increasing lists which use alternative ordering
          methods, supply an appropriate rend attribute from the following list:</para>
        <glosslist>
          <glossentry>
            <glossterm>
              <emphasis role="bold">arabic</emphasis>
            </glossterm>
            <glossdef>
              <para>1., 2., 3., etc.</para>
            </glossdef>
          </glossentry>
          <glossentry>
            <glossterm>
              <emphasis role="bold">upperalpha</emphasis>
            </glossterm>
            <glossdef>
              <para>A., B., C., etc.</para>
            </glossdef>
          </glossentry>
          <glossentry>
            <glossterm>
              <emphasis role="bold">loweralpha</emphasis>
            </glossterm>
            <glossdef>
              <para>a., b., c., etc.</para>
            </glossdef>
          </glossentry>
          <glossentry>
            <glossterm>
              <emphasis role="bold">upperroman</emphasis>
            </glossterm>
            <glossdef>
              <para>I., II., III., etc.</para>
            </glossdef>
          </glossentry>
          <glossentry>
            <glossterm>
              <emphasis role="bold">lowerroman</emphasis>
            </glossterm>
            <glossdef>
              <para>i., ii., iii., etc.</para>
            </glossdef>
          </glossentry>
          <glossentry>
            <glossterm>
              <emphasis role="bold">supplied</emphasis>
            </glossterm>
            <glossdef>
              <para>For non-standard enumerations encoded within each &lt;item&gt;'s n attribute.</para>
            </glossdef>
          </glossentry>
        </glosslist>
        <para>Use of the "arabic" rend value is optional since it is the default style.</para>
        <para>
          <emphasis role="bold">Example:</emphasis>
        </para>
        <informalexample>
          <orderedlist numeration="upperalpha">
            <title>Departments</title>
            <listitem>
              <para>English</para>
            </listitem>
            <listitem>
              <para>History</para>
            </listitem>
            <listitem>
              <para>Biology</para>
            </listitem>
            <listitem>
              <para>Political Science</para>
            </listitem>
          </orderedlist>
          <programlisting format="linespecific">
<![CDATA[<list type="ordered" rend="upperalpha">
   <head>Departments</head>
   <item>English</item>
   <item>History</item>
   <item>Biology</item>
   <item>Political Science</item>
</list>]]>
              </programlisting>
        </informalexample>
        <para>For lists which use a style of enumeration not available in this list, or use a
          non-sequential or otherwise non-standard method of enumeration, the specific mark of
          numeration may be supplied in an explicit n attribute within each individual
          &lt;item&gt; element. In such cases, set the &lt;list&gt;'s rend attribute
          to "supplied."</para>
        <para>
          <emphasis role="bold">Example:</emphasis>
        </para>
        <informalexample>
          <orderedlist>
            <listitem>
              <para>Food and supplies</para>
            </listitem>
            <listitem>
              <para>Medicine</para>
            </listitem>
            <listitem>
              <para>Fuel</para>
            </listitem>
            <listitem override="5">
              <para>Fuel storage containers</para>
            </listitem>
            <listitem override="6">
              <para>Radios</para>
            </listitem>
          </orderedlist>
          <programlisting format="linespecific">
<![CDATA[<list type="ordered" rend="supplied">
   <item n="1">Food and supplies</item>
   <item n="2">Medicine</item>
   <item n="3">Fuel</item>
   <item n="5">Fuel storage containers</item>
   <item n="6">Radios</item>
</list>]]>
              </programlisting>
        </informalexample>
        <para>Note that if any one &lt;item&gt; contains an explicit n attribute, all
          &lt;item&gt; elements immediately within the &lt;list&gt; must also
          contain an explicit n attribute, even if the remaining items conform to the standard
          enumerative conventions.</para>
        <para>Never encode the sequential marker within the text of the &lt;item&gt;
          element. Such encoding will usually result in two duplicate numbers appearing before each
          &lt;item&gt; in the list. Either allow the rendering software to supply the number
          or move the number into the &lt;item&gt;'s n attribute.</para>
        <para>
          <emphasis role="bold">
            <ulink url="http://www.tei-c.org/P4X/CO.html#COLI">[P4: 6.7]</ulink>
          </emphasis>
        </para>
      </sect2>
    </sect1>
    <sect1 id="bib">
      <title>Bibliographies</title>
      <para>In bibliographic citations, the &lt;title&gt; element must make use of the
        'level' attribute from which the formatting will be derived. Other &lt;bibl&gt;
        sub-elements can be used, but are not required. Use &lt;listBibl&gt; to contain a
        set of &lt;bibl&gt;s. The &lt;note&gt; tag is illegal in
        &lt;bibl&gt;, but uncontained text is allowed, so you can include any
        bibliographical annotation directly within &lt;bibl&gt; without containing it within
        another element.</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<listBibl>
  <bibl id="bib010_ch02">
    <author>Johnson, Douglas W.</author> 
    <date>1919</date>. 
    <title level="m">Shore processes</title>. 
    <pubPlace>New York</pubPlace>, 
    <publisher>Wiley &amp; Sons</publisher>, 
    <biblScope type="pages">584 pp.</biblScope>, 
    <date>1919</date>.
  </bibl>]]>
          </programlisting>
      </informalexample>
      <para>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/CO.html#COBITY">[P4: 6.10.1]</ulink>
        </emphasis>
      </para>
    </sect1>
    <sect1 id="figure">
      <title>Figures &amp; Formulas</title>
      <para>Figures, graphs, and photographs should be encoded using the &lt;figure&gt;
        element. The 'rend' attribute is required and is used to indicate whether the image is
        in-line (part of a string of text), a separate 'block', or a 'popup' (linked to a higher
        resolution version). The complete image name assigned to an image should also be used as the
        entity attribute for the &lt;figure&gt; element that references it. Figure captions
        may be encoded in the &lt;head&gt; element with the attribute type="caption", or are
        sometimes encoded using &lt;seg type="caption"&gt; within &lt;figDesc&gt;</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<figure id="fig001" entity="kt167nb66r_fig001.gif" rend="block">
  <head type="caption">Bottom topography in the South Atlantic Ocean.</head>
</figure>
]]>
        </programlisting>
      </informalexample>
      <para>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/FT.html#FTGROV">[P4: 22.3]</ulink>
        </emphasis>
      </para>
    </sect1>
    <sect1 id="table">
      <title>Tables</title>
      <para>Use the XHTML 1.1 table module rather than the TEI default table scheme for all tables
        and encode as much as possible for correct display in both Netscape and I.E. on the Windows
        and Mac platforms. Take care to encode definition lists as &lt;list type="gloss"&gt;
        when encountered (these can be confused for two-column tables).</para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<table id="tab001">
  <caption>PERCENTAGES OF THE EARTH'S SURFACE</caption>
  <colgroup span="3">
    <col align="right" span="1"/>
    <col align="char" char="." span="1"/>
    <col align="char" char="." span="1"/>
  </colgroup>
  <thead>
    <tr>
      <th>Latitude</th>
      <th>%</th>
      <th>Cumulative %</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>40 N 30 W</td>
      <td>8.68</td>
      <td>8.68</td>
    </tr>]]>
        </programlisting>
      </informalexample>
      <para>
        <emphasis role="bold">
          <ulink url="http://www.tei-c.org/P4X/FT.html#FTTAB">[P4: 22.1]</ulink>
        </emphasis>
      </para>
    </sect1>
    <sect1>
      <title>Back Matte</title>
      <para>The optional &lt;back&gt; element may contain any number of &lt;divn&gt;
        elements. Back matter may include advertisements, indexes, bibliographies, appendices and
        other matter. Guidelines for encoding back matter is specified in the guidelines for various
        types of text.</para>
    </sect1>
  </chapter>
  <chapter>
    <title>Files and File-Naming</title>
    <para>Each document should be encoded as a single XML file using the following naming convention:</para>
    <para>ARK.xml</para>
    <para>ARK is the unique key of the assigned ark (i.e. kt167nb66r.xml)</para>
    <para>For ease of ingest by CDL you may choose to use the following conventions for images, PDFs
      and other associated content: </para>
    <para>ARK_NAME.EXTENSION</para>
    <para>ARK is the unique key of the assigned ark, NAME is the result of whatever internal naming
      convention you would like to apply to individual files, and EXTENSION is the normal file
      format extension ('.gif', '.jpg', or '.pdf'.)</para>
    <para>kt167nb66r_fig002.gif</para>
    <para>To facilitate the preview and ingest of TEI objects, the location specified by the ENTITY
      declaration for images and other associated files must point at an accessible URL.</para>
    <informalexample>
      <programlisting format="linespecific">
<![CDATA[<!ENTITY fig001   SYSTEM "http://www.server.domain/figures/fig001.gif" NDATA GIF>
...
<figure id="fig001" entity="fig001" rend="block">]]>
        </programlisting>
    </informalexample>
    <para>If at all possible, two derivative images should be created for each plate, figure,
      graphic, or other pictorial element that appears as a discrete element. One of these should be
      at web resolution (72 ppi) and the same size as the figure in the printed text. The other
      image should be higher resolution (300 ppi) and again original size, but not exceeding 768
      pixels in width. In-line images, such as formulas need only the low-resolution version. When
      necessary, images should be cropped and flipped for proper orientation for Web display. We are
      agnostic about the GIF and JPEG formats. The master version of the image (usually a TIFF) does
      not need to be submitted to CDL. However, if your project is interested in preserving it for
      future use, the CDL Preservation Repository is an appropriate place.</para>
  </chapter>
  <chapter>
    <title>Quality Assurance</title>
    <sect1>
      <title>Validation</title>
      <para>All texts will be validated on ingest and rejected if errors are detected.</para>
    </sect1>
    <sect1>
      <title>Best Practice Checking</title>
      <para>In addition to validation against the supplied DTDs, documents will be checked for
        conformance to the appropriate Best Practice Guidelines using the Schematron assertion
        language. Users can check their documents against this standard using the CDL Text Preview page</para>
      <para>
        <ulink url="http://texts.cdlib.org/dynaxml/preview.html">http://texts.cdlib.org/dynaxml/preview.html</ulink>
      </para>
    </sect1>
    <sect1>
      <title>Proofreading</title>
      <para>Proofing the actual text of submitted documents is the responsibility of the
        contributor. At the very least texts should be spot-checked. If the project warrants it,
        documents should be proofread by a professional using the CDL Text Preview page:</para>
      <para>
        <ulink url="http://texts.cdlib.org/dynaxml/preview.html">http://texts.cdlib.org/dynaxml/preview.html</ulink>
      </para>
    </sect1>
  </chapter>
  <appendix>
    <title>Tag Library</title>
    <para>Below you will find a brief description of every element supported under the CDL Standard
      for Printed Books and their attributes. Attribute value definitions take one of the following forms:</para>
    <informaltable frame="none">
      <tgroup cols="3" align="left" colsep="0" rowsep="0">
        <tbody>
          <row>
            <entry>
              <emphasis role="bold">ENTITY</emphasis>
            </entry>
            <entry>Entity Name defined in an entity declaration (&lt;!ENTITY fig1 SYSTEM
              "fig1.gif" NDATA GIF&gt;)</entry>
          </row>
          <row>
            <entry>
              <emphasis role="bold">ID</emphasis>
            </entry>
            <entry>Unique ID</entry>
          </row>
          <row>
            <entry>
              <emphasis role="bold">ID REFERENCE</emphasis>
            </entry>
            <entry>Reference to an existing ID</entry>
          </row>
          <row>
            <entry>
              <emphasis role="bold">TEXT</emphasis>
            </entry>
            <entry>Unrestricted text</entry>
          </row>
          <row>
            <entry>
              <emphasis role="bold">URI</emphasis>
            </entry>
            <entry>Uniform Resource Indicator</entry>
          </row>
          <row>
            <entry>
              <emphasis role="bold">(OPTION1 | OPTION2)</emphasis>
            </entry>
            <entry>A set list of optional values from which the encoder must choose.</entry>
          </row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>In addition each element and attribute is declared REQUIRED, RECOMMENDED, or OPTIONAL.</para>
    <glosslist>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;ab&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Anonymous block. Contains any arbitrary component-level unit of text, acting as an
            anonymous container for phrase or inter-level elements analogous to, but without the
            semantic baggage of, a paragraph.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>type</entry>
                  <entry>(illgrp | tblgrp | text)</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="ab">
              <citetitle>Arbitrary Containers</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;address&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains a postal or other address, for example of a publisher, an organization, or
            an individual.</para>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;addrLine&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains one line of a postal or other address.</para>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;author&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>In a bibliographic reference, contains the name of the author(s), personal or
            corporate, of a work; the primary statement of responsibility for any bibliographic item.</para>
          <glossseealso>
            <link linkend="bib">
              <citetitle>Bibliographies</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;availability&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Supplies information about the availability of a text, for example any restrictions
            on its use or distribution, its copyright status, etc.</para>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;back&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Back matter. Contains any appendixes, etc. following the main part of a text.</para>
          <glossseealso>
            <link linkend="struct">
              <citetitle>Text Structure</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;bibl&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Bibliographic citation. Contains a loosely-structured bibliographic citation of
            which the sub-components may or may not be explicitly tagged.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>corresp</entry>
                  <entry>ID REFERENCE</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="bib">
              <citetitle>Bibliographies</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;biblFull&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains a fully-structured bibliographic citation, in which all components of the
            TEI file description are present.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;biblScope&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Scope of citation. Defines the scope of a bibliographic reference, for example as a
            list of page numbers, or a named subdivision of a larger work.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>type</entry>
                  <entry>TEXT</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="bib">
              <citetitle>Bibliographies</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;body&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Text body. Contains the whole body of a single unitary text, excluding any front or
            back matter.</para>
          <glossseealso>
            <link linkend="struct">
              <citetitle>Text Structure</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;byline&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains the primary statement of responsibility given for a work on its title page
            or at the head or end of the work.</para>
          <glossseealso>
            <link linkend="open_close">
              <citetitle>Division Openers and Closers</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;catDesc&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Category description. Describes some category within a taxonomy or text typology,
            either in the form of a brief prose description or in terms of the situational
            parameters used by the TEI formal &lt;textDesc&gt;.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;category&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Category. Contains an individual descriptive category, possibly nested within a
            superordinate category, within a user-defined taxonomy.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;change&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Summarizes a particular change or correction made to a particular version of an
            electronic text which is shared between several researchers.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;cit&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>A quotation from some other document, together with a bibliographic reference to its source.</para>
          <glossseealso>
            <link linkend="quotes">
              <citetitle>Quotations</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;classDecl&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Classification declarations. Contains one or more taxonomies defining any
            classificatory codes used elsewhere in the text</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;date&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains a date in any format. The content of 'value' must follow the ISO 8601:2000
            5.2.1 date format (yyyy-mm-dd)</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>value</entry>
                  <entry>(yyyy-mm-dd)</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;dateline&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains a brief description of the place, date, time, etc. of production of a
            letter, newspaper story, or other work, prefixed or suffixed to it as a kind of heading
            or trailer.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="open_close">
              <citetitle>Division Openers and Closers</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;div1-7&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Level 1-7 text divisions. Used to encode the structural subdivisions of the front,
            body, or back of a text.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>n</entry>
                  <entry>TEXT</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>type</entry>
                  <entry>TEXT</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="div">
              <citetitle>Divisions</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;docAuthor&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Document author. Contains the name of the author of the document, as given on the
            title page.</para>
          <glossseealso>
            <link linkend="tpage">
              <citetitle>Title Page</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;docDate&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Document date. Contains the date of a document, as given (usually) on a title page.</para>
          <glossseealso>
            <link linkend="tpage">
              <citetitle>Title Page</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;docEdition&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Document edition. Contains an edition statement as presented on a title page of a document.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="tpage">
              <citetitle>Title Page</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;docImprint&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Document imprint. Contains the imprint statement (place and date of publication,
            publisher name), as given (usually) at the foot of a title page.</para>
          <glossseealso>
            <link linkend="tpage">
              <citetitle>Title Page</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;docTitle&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Document title. Contains the title of a document, including all its constituents, as
            given on a title page.</para>
          <glossseealso>
            <link linkend="tpage">
              <citetitle>Title Page</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;edition&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Edition. Describes the particularities of one edition of a text.</para>
          <glossseealso>
            <link linkend="bib">
              <citetitle>Bibliographies</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;editionStmt&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Edition statement. Groups information relating to one edition of a text.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;editor&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Editor. Secondary statement of responsibility for a bibliographic item, for example
            the name of an individual, institution or organization (or of several such) acting as
            editor, compiler, translator, etc.</para>
          <glossseealso>
            <link linkend="bib">
              <citetitle>Bibliographies</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;editorialDecl&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Editorial practice declaration. Provides details of editorial principles and
            practices applied during the encoding of a text.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;emph&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Emphasized. Marks words or phrases which are stressed or emphasized for linguistic
            or rhetorical effect.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>rend</entry>
                  <entry>(bold | italic | mono | roman | smallcaps | strikethrough | subscript |
                    superscript | underline)</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="font">
              <citetitle>Font Changes</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;encodingDesc&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Encoding description. Documents the relationship between an electronic text and the
            source or sources from which it was derived.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;epigraph&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Epigraph. Contains a quotation, anonymous or attributed, appearing at the start of a
            section or chapter, or on a title page.</para>
          <glossseealso>
            <link linkend="open_close">
              <citetitle>Division Openers and Closers</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;extent&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Describes the approximate size of the electronic text as stored on some carrier
            medium, specified in any convenient units.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;figure&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Indicates the location of a graphic, illustration, or figure.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>entity</entry>
                  <entry>ENTITY</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>rend</entry>
                  <entry>(block | hide | inline | popup(ENTITY))</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="figure">
              <citetitle>Figures</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;fileDesc&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>File Description. Contains a full bibliographic description of an electronic file.</para>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;foreign&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Identifies a word or phrase as belonging to some language other than that of the
            surrounding text. The value of 'lang' should be a UNICODE code chart name (e.g. Greek,
            Hebrew, etc.)</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>lang</entry>
                  <entry>ID REFERENCE</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="foreign">
              <citetitle>Foreign Words</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;formula&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains a mathematical or other formula.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>notation</entry>
                  <entry>(mathML | TeX)</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>rend</entry>
                  <entry>(block | inline)</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="figure">
              <citetitle>Figures &amp; Formulas</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;front&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Front matter. Contains any prefatory matter (headers, title page, prefaces,
            dedications, etc.) found at the start of a document, before the main body.</para>
          <glossseealso>
            <link linkend="front">
              <citetitle>Front Matter</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;funder&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Funding body. Specifies the name of an individual, institution, or organization
            responsible for the funding of a project or text.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;group&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains the body of a composite text, grouping together a sequence of distinct
            texts (or groups of such texts) which are regarded as a unit for some purpose, for
            example the collected works of an author, a sequence of prose essays, etc.</para>
          <glossseealso>
            <link linkend="group">
              <citetitle>Groups of Texts</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;head&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Heading. Contains any heading, for example, the title of a section, or the heading
            of a list or glossary.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>type</entry>
                  <entry>TEXT</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="open_close">
              <citetitle>Division Openers and Closers</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;hi&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Highlighted. Marks a word or phrase as graphically distinct from the surrounding
            text, for reasons concerning which no claim is made.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>rend</entry>
                  <entry>(bold | italic | mono | roman | smallcaps | strikethrough | subscript |
                    superscript | underline)</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="font">
              <citetitle>Font Changes</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;idno&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Identifying number. Supplies any standard or non-standard number used to identify a
            bibliographic item.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>type</entry>
                  <entry>( ARK | ISBN | ISSN | LCCN | LOCAL | OTHER )</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;imprint&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Groups information relating to the publication or distribution of a bibliographic item.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="bib">
              <citetitle>Bibliographies</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;item&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains one component of a list.</para>
          <glossseealso>
            <link linkend="list">
              <citetitle>Lists</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;keywords&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Keywords. Contains a list of keywords or phrases identifying the topic or nature of
            a text.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>scheme</entry>
                  <entry>ID REFERENCE</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;l&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Verse line. Contains a single, possibly incomplete, line of verse.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>n</entry>
                  <entry>TEXT</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>rend</entry>
                  <entry>(indent1 | indent2 | indent3 | indent4 | indent5 | indent6 | indent7 |
                    indent8 | indent9 | indent10)</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="l">
              <citetitle>Lines of Verse</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;label&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains the label associated with an item in a list; in glossaries, marks the term
            being defined.</para>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;language&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Characterizes a single language or sub-language used within a text. The 'id'
            attribute should use a UNICODE code chart name (e.g. Greek, Hebrew, etc.)</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;langUsage&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Language usage. Describes the languages, sub-languages, registers, dialects etc.
            represented within a text.</para>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;lb/&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Line break. Marks the start of a new (typographic) line in some edition or version
            of a text.</para>
          <glossseealso>
            <link linkend="milestones">
              <citetitle>Milestones</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;lg&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Line group. Contains a group of verse lines functioning as a formal unit, e.g. a
            stanza, refrain, verse paragraph, etc.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>type</entry>
                  <entry>(couplet | paragraph | quatrain | stanza | verse)</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="lg">
              <citetitle>Line Groups and Fragments</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;list&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains any sequence of items organized as a list.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>rend</entry>
                  <entry>(arabic | upperalpha | loweralpha | upperroman | lowerroman | supplied)</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>type</entry>
                  <entry>(bulleted | gloss | ordered | simple)</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="list">
              <citetitle>Lists</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;listBibl&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Citation list. Contains a list of bibliographic citations of any kind.</para>
          <glossseealso>
            <link linkend="bib">
              <citetitle>Bibliographies</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;milestone &gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Marks the boundary between sections of a text, as indicated by changes in a standard
            reference system.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>rend</entry>
                  <entry>TEXT</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>unit</entry>
                  <entry>TEXT</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="milestones">
              <citetitle>Milestones</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;monogr&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Monographic level. Contains bibliographic elements describing an item (e.g. a book
            or journal) published as an independent item (i.e. as a separate physical object).</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="bib">
              <citetitle>Bibliographies</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;name&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Name, proper noun. Contains a proper noun or noun phrase.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>reg</entry>
                  <entry>TEXT</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>type</entry>
                  <entry>(personal | place)</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;note&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains a note or annotation.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>corresp</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>id</entry>
                  <entry>ID REFERENCE</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>n</entry>
                  <entry>TEXT</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>place</entry>
                  <entry>(end | foot | inline)</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="note">
              <citetitle>Notes</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;p&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Paragraph. Marks paragraphs in prose.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>rend</entry>
                  <entry>(blockquote | center | hang | indent | noindent | left | right)</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;pb&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Page break. Marks the boundary between one page of a text and the next in a standard
            reference system.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>n</entry>
                  <entry>TEXT</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="milestones">
              <citetitle>Milestones</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;prinicipal&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Principal researcher. Supplies the name of the principal researcher responsible for
            the creation of an electronic text.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;profileDesc&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Text-profile description. Provides a detailed description of non-bibliographic
            aspects of a text, specifically the languages and sub-languages used, the situation in
            which it was produced, the participants and their setting.</para>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;projectDesc&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Project description. Describes in detail the aim or purpose for which an electronic
            file was encoded, together with any other relevant information concerning the process by
            which it was assembled or collected.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;ptr&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Defines a pointer to another location in the current document in terms of one or
            more identifiable elements.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>target</entry>
                  <entry>ID REFERENCE</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>type</entry>
                  <entry>TEXT</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="ilink">
              <citetitle>Internal Links and Cross References</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;publicationStmt&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Publication statement. Groups information concerning the publication or distribution
            of an electronic or other text.</para>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;publisher&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Provides the name of the organization responsible for the publication or
            distribution of a bibliographic item.</para>
          <glossseealso>
            <link linkend="tpage">
              <citetitle>Title Page</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;pubPlace&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains the name of the place where a bibliographic item was published.</para>
          <glossseealso>
            <link linkend="tpage">
              <citetitle>Title Page</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;q&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Quoted speech or thought. Contains a quotation or apparent quotation — a
            representation of speech or thought marked as being quoted from someone else (whether in
            fact quoted or not); in narrative, the words are usually those of a character or
            speaker; in dictionaries, &lt;q&gt; may be used to mark real or contrived
            examples of usage.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>rend</entry>
                  <entry>(blockquote)</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="quotes">
              <citetitle>Quotations</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;ref&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Defines a reference to another location in the current document, in terms of one or
            more identifiable elements, possibly modified by additional text or comment.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>target</entry>
                  <entry>ID REFERENCE</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>type</entry>
                  <entry>TEXT</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="ilink">
              <citetitle>Internal Links and Cross References</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;refsDecl&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>References declaration. Specifies how canonical references are constructed for this text.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>doctype</entry>
                  <entry>TEXT</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;resp&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains a phrase describing the nature of a person's intellectual responsibility.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;respStmt&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Statement of responsibility. Supplies a statement of responsibility for someone
            responsible for the intellectual content of a text, edition, recording, or series, where
            the specialized elements for authors, editors, etc. do not suffice or do not apply.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;revisionDesc&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Revision description. Summarizes the revision history for a file. Attributes </para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;seg&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Arbitrary segment. Contains any arbitrary phrase-level unit of text.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>type</entry>
                  <entry>(illgrp | tblgrp | text)</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="ab">
              <citetitle>Arbitrary Containers</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;series&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Series information. Contains information about the series in which a book or other
            bibliographic item has appeared.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;seriesStmt&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Series statement. Groups information about the series, if any, to which a
            publication belongs.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;sourceDesc&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Supplies a bibliographic description of the copy text(s) from which an electronic
            text was derived or generated.</para>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;sp&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Speech. An individual speech in a performance text, or a passage presented as such
            in a prose or verse text.</para>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;speaker&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>A specialized form of heading or label, giving the name of one or more speakers in a
            dramatic text or fragment.</para>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;sponsor&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Specifies the name of a sponsoring organization or institution.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;table&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains text displayed in tabular form, in rows and columns. Can contain the
            following elements: caption, td, th, tr, col, colgroup, tbody, thead, tfoot.</para>
          <glossseealso>
            <link linkend="table">
              <citetitle>Tables</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;taxonomy&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Taxonomy. Defines a typology used to classify texts either implicitly, by means of a bibliographic citation, or explicitly by a structured taxonomy.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;TEI.2&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>TEI document. Contains a single TEI-conformant document, comprising a TEI header and
            a text. The value of 'id' should be the unique key of the ARK assigned to the text.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>REQUIRED</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="tei2">
              <citetitle>Root Element</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;teiHeader&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>TEI Header. Supplies the descriptive and declarative information making up an
            ‘electronic title page’ prefixed to every TEI-conformant text.</para>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;text&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains a single text of any kind, whether unitary or composite, for example a poem
            or drama, a collection of essays, a novel, or a dictionary.</para>
          <glossseealso>
            <link linkend="struct">
              <citetitle>Text Structure</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;textClass&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Text classification. Groups information which describes the nature or topic of a text in terms of a standard classification scheme, thesaurus, etc.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>id</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;title&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Contains the title of a work, whether article, book, journal, or series, including
            any alternative titles or subtitles.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>level</entry>
                  <entry>(a | m | j | s | u)</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>type</entry>
                  <entry>(main | subtitle | alternate | abbreviated)</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="bib">
              <citetitle>Bibliographies</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;titlePage&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Title page. Contains the title page of a text, appearing within the front or back matter.</para>
          <glossseealso>
            <link linkend="tpage">
              <citetitle>Title Page</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;titlePart&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Title part. Contains a subsection or division of the title of a work, as indicated
            on a title page.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>type</entry>
                  <entry>(main | subtitle | alternate | abbreviated)</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="tpage">
              <citetitle>Title Page</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;titleStmt&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Title statement. Groups information about the title of a work and those responsible
            for its intellectual content.</para>
          <glossseealso>
            <link linkend="teihdr">
              <citetitle>Document Header</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;xptr&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Extended pointer. Defines a pointer to another location in the current document or
            an external document. NOTE: The value of 'href' can be either a URL (e.g.
            http://texts.cdlib.org/xtf/servlet/dynaXML?docId=ft958009mm) or CDL ARK (e.g. ark:/13030/ft958009mm)</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>doc</entry>
                  <entry>ENTITY</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>href</entry>
                  <entry>URI</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>type</entry>
                  <entry>(mets | obj | pdf | sound | stream | url | video)</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>rend</entry>
                  <entry>(embed | new | none | replace)</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>from</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>to</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="xlink">
              <citetitle>External Objects</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
      <glossentry>
        <glossterm>
          <emphasis role="bold">&lt;xref&gt;</emphasis>
        </glossterm>
        <glossdef>
          <para>Extended reference. Defines a reference to another location in the current document,
            or an external document, using an extended pointer notation, possibly modified by
            additional text or comment.</para>
          <para>
            <emphasis role="bold">Attributes:</emphasis>
          </para>
          <informaltable frame="none">
            <tgroup cols="3" align="left" colsep="0" rowsep="0">
              <tbody>
                <row>
                  <entry>doc</entry>
                  <entry>ENTITY</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>href</entry>
                  <entry>ARK or URL</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>type</entry>
                  <entry>(mets | obj | pdf | sound | stream | url | video)</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>rend</entry>
                  <entry>(embed | new | none | replace)</entry>
                  <entry>REQUIRED</entry>
                </row>
                <row>
                  <entry>from</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
                <row>
                  <entry>to</entry>
                  <entry>ID</entry>
                  <entry>OPTIONAL</entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
          <glossseealso>
            <link linkend="xlink">
              <citetitle>External Objects</citetitle>
            </link>
          </glossseealso>
        </glossdef>
      </glossentry>
    </glosslist>
  </appendix>
</book>
