<?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 Encoding Guidelines for the TEI Header</title>
    <subtitle>DRAFT</subtitle>
    <authorgroup>
      <author>
        <firstname>Jared</firstname>
        <surname>Campbell</surname>
      </author>
      <author>
        <firstname>Brian</firstname>
        <surname>Tingle</surname>
      </author>
    </authorgroup>
    <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 id="intro">
    <title>Introduction</title>
    <para>The following is a general guideline for creating the &lt;teiHeader&gt; for
      documents to be submitted to CDL. Each document header should contain
      &lt;fileDesc&gt;, &lt;encodingDesc&gt;, and a &lt;profileDesc&gt;.</para>
    <para>The following codes are used to indicate whether an element is required or not:</para>
    <simplelist>
      <member>R The element is "REQUIRED"</member>
      <member>M The element is "MANDATORY WHEN THE INFORMATION IS AVAILABLE"</member>
      <member>O The element is "OPTIONAL"</member>
    </simplelist>
  </preface>
  <chapter>
    <title>Encoding Guidelines</title>
    <sect1>
      <title>R &lt;teiHeader&gt;</title>
      <para>Use the &lt;teiHeader&gt; type=" " attribute to encode the CDL TEI text type
        guidelines that are to be used. Type values include CDL-TEI:MS for manuscripts, CDL-TEI:OH
        oralhist for oral history transcriptions, and CDL-TEI:BK for other texts. </para>
      <informalexample>
        <programlisting format="linespecific">
<![CDATA[<teiHeader type="CDL-TEI:BK">]]>
        </programlisting>
      </informalexample>
    </sect1>
    <sect1>
      <title>R &lt;fileDesc&gt;</title>
      <para>The &lt;teiHeader&gt; should provide a relatively complete bibliographic record
        for both the electronic version and the original source document. The data that describes
        the electronic text should be encoded in the &lt;fileDesc&gt; section, while data
        that pertains to the source text should be encoded within the &lt;sourceDesc&gt; (a
        subsection of &lt;fileDesc&gt;) section. It should be noted that data
        (such as &lt;author&gt;, &lt;editor&gt;, etc.) will often be identical in both
        sections. Exceptions include:</para>
      <orderedlist>
        <listitem>
          <para>The &lt;fileDesc&gt;&lt;titleStmt&gt;&lt;title&gt; will
            include a mandatory "electronic version" subtitle.</para>
        </listitem>
        <listitem>
          <para>The &lt;fileDesc&gt;&lt;respStmt&gt; will include the name of
            document encoders and individuals responsible for proofing or making general corrections
            to the encoded file.</para>
        </listitem>
        <listitem>
          <para>The &lt;extent&gt; in &lt;fileDesc&gt; will encode (in Kb. or Mb.)
            the size of the electronic file. The &lt;extent&gt; in the
            &lt;sourceDesc&gt; will record the number of pages, illustrations (if present),
            and dimensions (see the MARC 260 field).</para>
        </listitem>
        <listitem>
          <para>The &lt;publicationStmt&gt; in &lt;fileDesc&gt; should be used to
            encode the institution responsible for the creation the electronic text. The
            &lt;publicationStmt&gt; in &lt;sourceDesc&gt; should record the
            publication information for the original source text.</para>
        </listitem>
        <listitem>
          <para>&lt;date&gt; in &lt;fileDesc&gt; refers to the date which the
            electronic version was encoded, while the &lt;date&gt; in
            &lt;sourceDesc&gt; refers to publication or creation date of the original source
            text. </para>
        </listitem>
        <listitem>
          <para>&lt;idno&gt; in &lt;fileDesc&gt; should refer to numbers associated
            with the encoded text, while those in &lt;sourceDesc&gt; should refer to the
            source text (i.e. call no., manuscript no., etc.)</para>
        </listitem>
      </orderedlist>
      <sect2>
        <title>R &lt;titleStmt&gt;</title>
        <para>The first element within a &lt;titleStmt&gt; must be &lt;title&gt;.
          Enter here the main title, or a supplied title in square brackets [ ], followed by the
          subtitle(s). Separate all subtitles by a space, colon, space (_:_). Titles should
          end with the subtitle "electronic version".</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<titleStmt>      
  <title>A collection of poems : chiefly manuscript, and from living authors : 
electronic version</title>

<titleStmt>
  <title>[Letter to Chol Soo Lee] : electronic version</title>]]>
        </programlisting>
        </informalexample>
      </sect2>
      <sect2>
        <title>M &lt;author&gt;</title>
        <para>Record here the name, in the catalog form, of the author(s), personal or corporate, of
          the work that has been encoded. Ideally, names entered here should be selected from a
          national name authority such as the LC Name Authority File. If a personal name
          authority record cannot be found, it should be entered as prescribed in ACCR2 2nd Ed.
          Chapter 22 "Headings for Persons (usually Lastname, Firstname form, with the Middle (Initial or Name) and birth/death dates (YYYY-YYYY)
          added when required for further clarification). If a corporate name heading cannot be found in the authority files, consult ACCR2
          2nd ed. Chapter 24 (Headings for Corporate Bodies).</para>
        <para>Texts that emanate from multiple authors should include multiple &lt;author&gt; elements. This rule
          does not apply to anthologies or collections of works formed around a paticular literary
          theme or form.</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<titleStmt>
  <title>[Letter to Chol Soo Lee]</title> 
  <author>Lee, K. W. (Kyung Won)</author>]]>
          </programlisting>
        </informalexample>
        <sect3>
          <title>** Optional Use of the &lt;name&gt; element **</title>
          <para>Encoders who wish to record names in both catalog form and the direct form (Firstname
            Lastname) can use the &lt;name&gt; element within &lt;author&gt;
            element. The catalog form of the name should be encoded using the &lt;name&gt;'s
            reg=" " attribute. The direct form will be encoded within the &lt;name&gt; element.</para>
          <informalexample>
            <programlisting format="linespecific">
<![CDATA[<titleStmt>
  <title>[Letter to Chol Soo Lee]</title>
    <author>
	<name reg="Lee, K. W. (Kyung Won)">K. W. Lee</name>
    </author>]]>
          </programlisting>
          </informalexample>
        </sect3>
      </sect2>
      <sect2>
        <title>M &lt;editor&gt;</title>
        <para>Record here the name of the editor(s) of the work. Consult national name authority
          files or, if no authority record exists, ACCR2 2nd ed. to construct a heading.</para>
        <sect3>
          <title>** Optional Use of the &lt;name&gt; element **</title>
          <para>Encoders who wish to record names in both catalog form and the direct form (Firstname
            Lastname) can use the &lt;name&gt; element within &lt;editor&gt;
            element. The catalog form of the name should be encoded using the &lt;name&gt;'s
            reg=" " attribute. The direct form will be encoded within the &lt;name&gt; element.</para>
        </sect3>
      </sect2>
      <sect2>
        <title>O &lt;funder&gt;, &lt;sponsor&gt;, &lt;principle&gt;</title>
        <para>Should encoders feel the need to use these elements they should follow the same
          guidelines set out in the &lt;author&gt; and &lt;editor&gt; elements
          (including the optional use of the &lt;name&gt; element) as they pertain to the
          form and source of the names used.</para>
      </sect2>
      <sect2>
        <title>R &lt;respStmt&gt;</title>
        <para>Group here other individuals or organizations that have contributed to intellectual or artistic
          content of the work.</para>
        <para>All documents should have at least one &lt;respStmt&gt; for the individual
          responsible for the encoding of the electronic text. Each &lt;respStmt&gt; should
          contain a least one pair of &lt;resp&gt; and &lt;name&gt; elements. The
          &lt;resp&gt; element should contain a statement that indicates the nature of the
          contribution. Each &lt;name&gt; element should contain the name as it appears in
          on the work. Within &lt;respStmt&gt;, repeat &lt;resp&gt; and
          &lt;name&gt; for each contributor that is to be included in the description. </para>
        <sect3>
          <title>** Use of the &lt;name&gt;'s reg=" " attribute. ** </title>
          <para>Names that are recorded solely in the &lt;respStmt&gt; (those that have not
            been already entered in catalog form in the &lt;titleStmt&gt;) that encoders
            wish to have appear as access points in the Dublin Core record (as dc:contributor) should use the
            &lt;name&gt;'s reg=" " attribute to encode the catalog form of the name. Do not
            use the reg=" " for names that have been recorded in the &lt;titleStmt&gt;
            (author, editor, funder, sponsor, principle), since they will be entered as dc:creator (&lt;author&gt;) or dc:contributor (&lt;editor&gt;, &lt;funder&gt;, &lt;sponsor&gt;, and &lt;principle&gt;) in the Dublin Core record (see Appendix B for a Tei Header to Dublin Core Crosswalk). </para>
          <informalexample>
            <programlisting format="linespecific">
<![CDATA[<titleStmt>. . .
  <respStmt>
    <resp>Encoded by</resp>
    <name reg="Rios, Leigh">Leigh Rios</name>
    <resp>Proofing and Corrections to markup by</resp>
    <name reg="Payne, Charlotte">Charlotte Payne</name>
  <respStmt>
</titleStmt>]]>
            </programlisting>
          </informalexample>
        </sect3>
      </sect2>
      <sect2>
        <title>R &lt;extent&gt;</title>
        <para>Record here the approximate size of the TEI XML file to nearest 10 Kb for files under
          100 Kb, to the nearest 50 Kb for files over 100 Kb, and to the nearest 100 Kb for files
          over 1 Mb. Always precede the entry with "ca."</para>
        <para>If the encoded text includes images, follow the file size statement with a space,
          semicolon, space (_:_) and an approximate number of images associated with the file ( ; ca. 1200
          images). </para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<extent>ca. 30 Kb</extent>
<extent>ca. 150 Kb</extent>
<extent>ca. 1.3 Mb</extent>
<extent>ca. 2.2 MB ; ca. 1100 images</extent>]]>
            </programlisting>
        </informalexample>
      </sect2>
      <sect2>
        <title>R &lt;publicationStmt&gt;</title>
        <para>Record here the publication information for the electronic version of the document.
          Within the &lt;publicationStmt&gt; use &lt;publisher&gt; to encode the
          name of the person or organization responsible for to production of the electronic text,
          &lt;pubplace&gt; for the City and State where the publisher is located,
          &lt;date&gt; for year of the file's creation, and &lt;idno&gt; for any
          identifying numbers related to the digital text.</para>
        <sect3>
          <title>** Note On &lt;date&gt; Normalization **</title>
          <para>Normalize dates using the value=" " attribute. Use ISO 8601 : 2000 to formulate the
            attribute value. The following format is recommended YYYY-MM-DD (using 4 digits for
            years and hyphens between the two digit month and date elements). For example March 6,
            1975 would be normalized as value="1975-03-06", April 2004 as value="2004-04-00", and
            1942 as value="1942-00-00".</para>
        </sect3>
        <sect3>
          <title>R &lt;idno&gt;</title>
          <para>An &lt;idno&gt; element that records the CDL System ARK key is REQUIRED for
            all CDL TEI texts. This &lt;idno&gt; should be qualified with the type="ARK"
            attribute. Local &lt;idno&gt;'s should use the type="LOCAL" attribute.</para>
          <informalexample>
            <programlisting format="linespecific">
<![CDATA[<publicationStmt>
  <publisher>University of California, Davis</publisher>
  <pubPlace>Davis, Calif.</pubPlace>
  <date>2004</date>
  <idno type="ARK">ark:/13030/kt8n39p8kw</idno>  
  <idno type="LOCAL">81</idno>
</publicationStmt>]]>
          </programlisting>
          </informalexample>
        </sect3>
      </sect2>
      <sect2>
        <title>O &lt;seriesStmt&gt; </title>
        <para>Record here information describing the bibliographic series that the electronic text
          is a part. At a minimum the &lt;seriesStmt&gt; should include
          &lt;title&gt;, and &lt;respStmt&gt;. Include an &lt;idno&gt;, using the type="VOL" attribute, if the
          text is part of a numbered series.</para>
       <para>If available, encode the series' homepage using the &lt;xref&gt; element within the &lt;title&gt;.  Guidlines for &lt;xref&gt;/&lt;xptr&gt; linking can be found in Section 2.14 of the CDL TEI Base Encoding Guidelines.</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<seriesStmt>
  <title>
    <xref href="http://digital.lib.ucdavis.edu/projects/bwrp/index.html"
type="url" rend="new">British Women Romantic Poets</xref>
  </title>
  <respStmt>
    <resp>General Editor</resp>
      <name reg="Kushigian, Nancy">Nancy Kushigian</name>
    <resp>Managing Editor</resp>
      <name reg="Payne, Charlotte">Charlotte Payne</name>
  </respStmt>
  <idno type="VOL">81</idno>
</seriesStmt>]]>
            </programlisting>
        </informalexample>
      </sect2>
      <sect2>
        <title>R &lt;sourceDesc&gt;</title>
        <para>The &lt;sourceDesc&gt; contains bibliographical information pertaining to the
        original source of the encoded text. Within &lt;sourceDesc&gt;, record bibliographic
        information in the in the &lt;bibl&gt; or &lt;bibFull&gt; subelement.</para>
        <para>R &lt;bibl&gt; or &lt;biblFull&gt;</para>  
        <para>The choice of bibliographic citation subelement to be used is up to encoders.  The &lt;bibl&gt; allows for loosely structured bibliographical data.  This option may be more useful for projects dealing with source texts that have not been formally published (such as manuscript materials).  The &lt;biblFull&gt; provides for a fully-structured bibliographic citation, in which all components of the TEI &lt;fileDesc&gt; are present.  The choice of which type of bibliographical citation is to be used, is up to encoders, project managers, etc.</para>   		        		  
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<sourceDesc>
  <bibl> or <biblFull>]]>
          </programlisting>
        </informalexample>
        <sect3>
          <title>Guidelines for the use of subelements within &lt;biblFull&gt;</title>   		
          <para>Elements in this section follow the same guidelines as the &lt;fileDesc&gt;
        unless otherwise noted.</para>
          <sect4>
            <title>R &lt;titleStmt&gt;</title>
            <para>Must include minimally a &lt;title&gt; child element.</para>
          </sect4>
          <sect4>
            <title>R &lt;title&gt; </title>
            <para>Within the &lt;title&gt; subelement, transcribe the title as it appears in the
          source document, using "_:_" for each subtitle. Supplied titles should be placed within
          [ ]'s. Do not include the "electronic version" subtitle.</para>
          </sect4>
          <sect4>
            <title>M &lt;author&gt; and &lt;editor&gt;</title>
            <para>Enter names, personal or corporate, in CATALOG FORM.</para>
            <para>Texts that emanate from multiple authors should be encoded using multiple
          &lt;author&gt; or &lt;elements&gt;.</para>
            <para>Optionally: Encoders may use &lt;name&gt; as a child element of
          &lt;author&gt; or &lt;editor&gt; and its reg=" " attribute to encode both the catalog and direct
          forms of author names. *NOTE: This optional encoding has no effect on the Dublin Core
          access points.</para>
            <informalexample>
              <programlisting format="linespecific">
<![CDATA[<author>Acton, Eliza, 1799-1859</author>]]>
              </programlisting>
            </informalexample>
          </sect4>
          <sect4>
            <title>M &lt;respStmt&gt;</title>
            <para>Transcribe responsibility statements as they appear in the source text. Statements
          that describe the nature of the intellectual or artistic contribution should be encoded in
          &lt;resp&gt;. Names of people or organizations should be placed in
          &lt;name&gt;. Repeat &lt;resp&gt; and &lt;name&gt; for each contributor.</para>
            <para>Optionally: Encoders may use &lt;name&gt;'s reg=" " attribute to encode both the catalog and direct
          forms of names. *NOTE: This optional encoding has no effect on access points in the Dublin Core record.</para>
            <informalexample>
              <programlisting format="linespecific">
<![CDATA[<respStmt>
  <resp>By</resp>
  <name>Mrs. Addison</name>
<respStmt>]]>
              </programlisting>
            </informalexample>
          </sect4>
          <sect4>
            <title>M &lt;editionStmt&gt;</title>
            <para>Using the &lt;edition&gt; subelement, transcribe the edition statement if one
          appears in the source document.</para>
            <informalexample>
              <programlisting format="linespecific">
<![CDATA[<editionStmt>
  <edition>3rd ed.</edition>
</editionStmt>]]>
              </programlisting>
            </informalexample>
          </sect4>
          <sect4>
            <title>R &lt;extent&gt; </title>
            <para>Minimally, enter the number of pages of the source document. If a page approximation
          if being encoded use "ca." Ideally, encode extent in AACR2 form if available.</para>
            <informalexample>
              <programlisting format="linespecific">
<![CDATA[<extent>50 p.</extent>
<extent>ca. 600 p.<extent>
<extent>100 p. : ill ; 32 cm</extent>]]>
              </programlisting>
            </informalexample>
          </sect4>
          <sect4>
            <title>R &lt;publicationStmt&gt; </title>
            <para>Encode the name of the publisher &lt;publisher&gt;, place of publication
          &lt;pubPlace&gt;, date of publication &lt;date&gt;, and any identification
          numbers (such as a call number) &lt;idno&gt;.</para>
            <para>Materials that have not been previously published (letters, reports, memos, etc.) may
          not contain publisher or place of publication information. For this reason
          &lt;date&gt; is the only required element. </para>
            <para>Supplied information should be enclosed in [ ]'s. Date approximations should be
          encoded with a ca. before the date. Dates that are uncertain should be followed by a
          question mark (?). </para>
            <sect5>
              <title>** Note On &lt;date&gt; Normalization **</title>
              <para>Normalize dates using the value=" " attribute. Use ISO 8601 : 2000 to formulate the
            attribute value. The following format is recommended YYYY-MM-DD (using 4 digits for
            years and hyphens between the two digit month and date elements). For example March 6,
            1975 would be normalized as value="1975-03-06", April 2004 as value="2004-04-00", and
            1942 as value="1942-00-00". </para>
            </sect5>
          </sect4>
          <sect4>
            <title>M &lt;seriesStmt&gt;</title>
            <para>Encode information about the bibliographical series that source text may be part of.
          Use same &lt;seriesStmt&gt; guidelines as described in the
          &lt;fileDesc&gt;. For the series &lt;title&gt;, consult national authority
          files and use the established form of the series title if available. </para>
          </sect4>
        </sect3>
        <sect3>
          <title>Guidelines for the use of subelements within &lt;bibl&gt;</title>
          <para>Encoders using &lt;bibl&gt; have much more flexibility in the how they can construct citations of source texts.</para>
          <para>For example, within &lt;bibl&gt;, encoder may transcribe a simple text citation</para>
          <informalexample>
            <programlisting format="linespecific">
<![CDATA[
<sourceDesc>
  <bibl>Blain, Clements and Grundy: Feminist Companion to Literature in
English (Yale, 1990)</bibl>
</sourcedesc>]]>
            </programlisting>
          </informalexample>
          <para>Encoders may also use many of the elements available in the &lt;fileDesc&gt;:</para>
          <informalexample>
            <programlisting format="linespecific">
<![CDATA[
<sourcedesc>
  <bibl>
    <title>TITLE</title>
    <author>
      <name reg="LASTNAME, FIRSTNAME, YYYY-YYYY">FIRSTNAME LASTNAME</name>
    </author>
    <respStmt>
      <resp>Revisions by:</resp>
      <name reg="LASTNAME, FIRSTNAME, YYYY-YYYY">FIRSTNAME LASTNAME</name>
    </respStmt>
    <extent># of pages, leaves, etc.</extent>
    <date value="YYYY-MM-DD">DATE OF CREATION</date>
    <idno type="LOCAL">LOCALLY DEFINED ID#</idno>
  </bibl>
</sourceDesc>]]>
            </programlisting>    			   		   		  		  			     		  		  		
          </informalexample>			 
        </sect3>
      </sect2>		  
    </sect1>		
    <sect1>
      <title>O &lt;encodingDesc&gt;</title>
      <para>Institutions should consult specific local guidelines and CDL TEIFORM Guidlines for the
        encoding of &lt;projectDesc&gt;, &lt;editorialDecl&gt;,
        &lt;refsDecl&gt;, &lt;samplingDecl&gt;, and &lt;tagsDecl&gt;</para>
      <sect2>
        <title>O &lt;classDecl&gt;</title>
        <para>If keywords from a controlled vocabulary are to be applied to the description the
          source, they should be declared in the &lt;classDecl&gt; section. For each subject or
          name thesaurus that is going to be referenced use the element &lt;taxonomy&gt;.
          Within each &lt;taxonomy&gt; enter a &lt;bibl&gt; element. Finally, embed
          &lt;title&gt; within the &lt;bibl&gt; tags. Encode the title of the
          thesaurus in the &lt;title&gt; element. </para>
        <para>Use the &lt;taxonomy&gt; attribute id="" to encode an identifier that will allow subject
          headings (in &lt;textClass&gt;) to be linked to their source thesauri. Repeat
          &lt;taxonomy&gt;/&lt;bibl&gt;/&lt;title&gt; elements for each
          controlled vocabulary to be used. </para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<classDecl>
  <taxonomy id="lcsh">
    <bibl>
      <title>Library of Congress Subject Headings</title>
    </bibl>
  </taxonomy>
  <taxonomy id="lcnaf">
    <bibl>
      <title>Library of Congress Name Authority File</title>
    </bibl>
  </taxonomy>
</classDecl>]]>
          </programlisting>
        </informalexample>
        <para>Encoders who wish to encode local or project defined &lt;taxonomy&gt;'s can do
          so using the &lt;category&gt; and &lt;catDesc&gt; elements. Like other
          taxonomy encodings, an id=" " attribute must be encoded so that terms in
          &lt;textClass&gt; can be linked to their source vocabulary. Use
          &lt;catDesc&gt; to record a description or title of the thesauri or categorical system.</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<classDecl>
  <taxonomy id="DwCollection">
    <category>
      <catDesc>Original UC Berkeley Dynaweb collection structure. July 
2002</catDesc>
    </category>
  </taxonomy>
  <taxonomy id="lcnaf">
    <bibl>
      <title>Library of Congress Name Authority File</title>
    </bibl>
  </taxonomy>
</classDecl>]]>
          </programlisting>
        </informalexample>
      </sect2>
    </sect1>
    <sect1>
      <title>O &lt;profileDesc&gt;</title>
      <sect2>
        <title>O &lt;langUsage&gt; </title>
        <para>Encode in &lt;profileDesc&gt; one &lt;langUsage&gt;. Embed in each
          &lt;langUsage&gt; a &lt;language&gt; element for each language that is used.</para>
        <sect3>
          <title>** Note on &lt;langUsage&gt; **</title>
          <para>The &lt;langUsage&gt; element is required when the lang=" " attribute has
            been used within the &lt;foreign&gt; that requires special fonts, left-right handling, or other special treatment.  Encode the name of the Unicode chart (http://www.unicode.org/charts/) needed to render the character data.</para>
          <informalexample>
            <programlisting format="linespecific">
<![CDATA[<profileDesc>
  <langUsage>
    <language id="el">(Range: 0370-03FF)</language>
    <language id="he">(Range: 0400-04FF)</language>
  </langUsage>]]>
          </programlisting>
          </informalexample>
        </sect3>
      </sect2>
      <sect2>
        <title>O &lt;textClass&gt;</title>
        <para>Use &lt;textClass&gt; to wrap &lt;keywords&gt; subelement headings
          that come from the controlled vocabularies referenced in the
          &lt;classDecl&gt;. The &lt;keywords&gt; element is always required as the
          root element for grouping a list of headings from a particular controlled vocabulary. Use
          the &lt;keywords&gt; attribute scheme="" to identify the thesaurus that is to be
          used for the list. The value for the scheme="" attribute should be taken from one of the
          &lt;taxonomy&gt; attribute id=" "'s that were declared in the
          &lt;classDecl&gt;. Within &lt;keywords&gt; use &lt;list&gt; and
          its subelement &lt;item&gt; to form a list of headings. </para>
        <para>Separate subdivisions with "--" (do not insert spaces between headings and subdivisions " -- "). </para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<textClass>
  <keywords scheme="lcsh">
    <list>
      <item>Scottish Poetry--Women Authors--18th century</item>
      <item>Scottish Poetry--Women Authors--History and criticism</item>
    </list>
  </keywords>
  <keywords scheme="lcnaf">
    <list>
      <item>Bannerman, Anne, 1765-1829</item>
      <item>Blamire, Susanna, 1747-1794</item>
    </list>
  </keywords>
</textClass>]]>
            </programlisting>
        </informalexample>
      </sect2>
    </sect1>
    <sect1>
      <title>M &lt;revisionDesc&gt;</title>
      <para>Record here any significant changes made to encoding or the content of the file.</para>
      <sect2>
        <title>M &lt;change&gt;</title>
        <para>Record each revision using the &lt;change&gt; element. List all changes in
          order from most recent to the earliest. Each &lt;change&gt; should include
          &lt;date&gt;, &lt;respStmt&gt;, &lt;resp&gt;, and
          &lt;item&gt; in that order. The &lt;item&gt; element should contain an
          explanation of the revision that has been made to the text.</para>
        <informalexample>
          <programlisting format="linespecific">
<![CDATA[<revisionDesc>
  <change>
    <date>02/28/2004</date>
    <respStmt>
      <name>Charlotte Payne</name>
      <resp>Project Manager</resp>
    </respStmt>
    <item>Converted SGML to XML</item>
  </change>
  <change>
    <date>06/14/1999</date>
    <respStmt>
      <name>Charlotte Payne</name>
      <resp>Project Manager</resp>
    </respStmt>
    <item>Revised teiHeader</item>
  </change>
</revisionDesc>]]>
          </programlisting>
        </informalexample>
      </sect2>
    </sect1>
  </chapter>
  <appendix>
    <title>Minimum and Full CDL TEI HEADERS </title>
    <para>STWG Header: Minimum</para>
    <informalexample>
      <programlisting format="linespecific">
<![CDATA[<teiHeader type="CDL/TEI text type">
  <fileDesc>
    <titleStmt>
      <title>TITLE OF TEXT : ELECTRONIC VERSION</title>
      <respStmt>
        <resp>Text encoder:</resp>
        <name reg="LASTNAME, FIRSTNAME, YYYY-YYYY">FIRSTNAME LASTNAME</name>
     </respStmt>
    </titleStmt>
    <extent>in Kb. or Mb.</extent>
    <publicationStmt>
      <publisher>NAME OF PUBLISHER</publisher>
      <pubPlace>PLACE OF PUBLICATION<pubPlace>
      <date reg="YYYY-MM-DD">DATE OF PUBLICATION</date>
      <idno type="ARK">OAC ARK#</idno>
    </publicationStmt>
    <sourceDesc>
      <bibl>BIBLIOGRAPHIC CITATION</bibl> 
    </sourcDesc>
  </fileDesc>
</teiHeader>]]>
          </programlisting>
    </informalexample>
    <para>STWG Header: FULL</para>
    <informalexample>
      <programlisting format="linespecific">
<![CDATA[<teiHeader type="CDL/TEI text type">
  <fileDesc>
    <titleStmt>
      <title>TITLE OF TEXT : ELECTRONIC VERSION</title>
      <author>LASTNAME, FIRSTNAME, YYYY-YYYY</author>
      <editor> LASTNAME, FIRSTNAME, YYYY-YYYY </editor>
      <respStmt>
	<resp>by</resp>
	<name>Firstname Lastname of AUTHOR</name>
        <resp>Text encoder:</resp>
        <name reg="LASTNAME, FIRSTNAME, YYYY-YYYY">FIRSTNAME LASTNAME</name>
      </respStmt>
    </titleStmt>
    <editionStmt>ELECTRONIC EDITION STMT</editionStmt>
    <extent>in Kb. or Mb.</extent>
    <publicationStmt>
      <publisher>NAME OF PUBLISHER</publisher>
      <pubPlace>PLACE OF PUBLICATION<pubPlace>
      <date reg="YYYY-MM-DD">DATE OF PUBLICATION</date>
      <idno type="ARK">OAC ARK#</idno>
      <idno type="LOCAL">Local ID#</idno> 
    </publicationStmt>
    <seriesStmt>
      <title>
        <xref href="Series or Collection URL"
type="url" rend="new">SERIES TITLE</xref>
      </title>
      <respStmt>
        <resp></resp>
        <name reg="LASTNAME, FIRSTNAME, YYYY-YYYY">FIRSTNAME LASTNAME</name>
      </respStmt>
      <idno></idno>
    </seriesStmt>
    <sourceDesc>
      <biblFull>
        <titleStmt>
	  <title>TITLE</title>
	  <author>LASTNAME, FIRSTNAME, YYYY-YYYY</author>
          <editor> LASTNAME, FIRSTNAME, YYYY-YYYY </editor>
          <respStmt>
            <resp>By </resp>
            <name reg="LASTNAME, FIRSTNAME, YYYY-YYYY">FIRSTNAME LASTNAME</name>
          </respStmt>
  	</titleStmt>
	<editionStmt>
	  <p> ed.</p>
	</editionStmt>
	<extent>p. : ill. ; cm</extent>
        <publicationStmt>
          <publisher>NAME OF PUBLISHER</publisher>
	  <pubPlace>PLACE OF PUBLICATION<pubPlace>
	  <date reg="YYYY-MM-DD">DATE OF PUBLICATION</date>
          <idno type="LOCAL">LOCALLY DEFINED ID#</idno>  
	</publicationStmt>
        <seriesStmt>
          <title>SERIES TITLE</title>
          <respStmt>
            <resp></resp>
            <name reg="LASTNAME, FIRSTNAME, YYYY-YYYY">FIRSTNAME LASTNAME</name>
          </respStmt>
        </seriesStmt>
      </biblFull>
    </sourceDesc>
  </fileDesc>
  <encodingDesc>
    <projectDesc>
      <p> </p>
    </projectDesc>
    <editorialDecl>
      <p></p>
    </editorialDecl>
    <refsDecl>
	<p></p>
    </refsDecl>
    <classDecl>
      <taxonomy id="CONTROLLED VOCAB ID #1">
        <bibl>
          <title>NAME OF CONTROLLED VOCAB</title>
        </bibl>
      </taxonomy>
      <taxonomy id="CONTROLLED VOCAB ID #2">
        <bibl>
          <title>NAME OF ANOTHER CONTROLLED VOCAB</title>
        </bibl>
      </taxonomy>
      <taxonomy id="LOCAL OR PROJECT DEFINED CONTROLLED VOCAB ID #3">
        <category>
          <catDesc>NAME OF LOCAL OR PROJECT DEFINED CONTROLLED VOCAB</catDesc>
        </category>
      </taxonomy>
    <classDecl>  
  </encodingDesc>
  <profileDesc>
    <creation>
      <date></date>
    </creation>
    <langUsage>
      <language id="el">(Range: 0370-03FF)</language>
    </langUsage>
    <textClass>
      <keywords scheme="ID# FROM ONE OF THE <TAXONOMY ID="">'S">
	  <list>
  	    <item>NAME OR SUBJECT HEADING</item>
          <item> </item>
        </list>
	</keywords>
      <keywords scheme="ID# FROM A SECOND <TAXONOMY ID="">">
        <list>
          <item>NAME OR SUBJECT HEADING</item>
          <item> </item>
        </list>
	</keywords>
    </textClass>
  </profileDesc>
   <revisionDesc>
    <change>
      <date>Date of revision</date>
      <respStmt>
	<name>PERSON RESPONSIBLE FOR REVISION</name>
      </respStmt>
      <item>EXPLANATION OF REVISION</item>
    </change>
   </revisionDesc>
</teiHeader>]]>
      </programlisting>
    </informalexample>
  </appendix>
  <appendix>
    <title>TEI HEADER to DUBLIN CORE CROSSWALK</title>
    <para>The following crosswalk describes the how data encoded in the TEI Header is used to create
      Dublin Core records that will be used in the texts' Metadata Encoding and Transmission
      Standard (METS) records. The Dublin Core record will be used within the METS descriptive
      metadata section (&lt;dmdSec&gt;)</para>
    <informaltable frame="none">
      <tgroup cols="2" align="left" colsep="0" rowsep="0">
        <thead>
          <row>
            <entry>DC:ELEMENT</entry>
            <entry>LOCATION OF DATA IN TEI HEADER</entry>
          </row>
        </thead>
        <tbody>
          <row>
            <entry>dc:title</entry>
            <entry>tei.2/teiHeader/fileDesc/titleStmt/title</entry>
          </row>
          <row>
            <entry>dc:creator</entry>
            <entry>tei.2/teiHeader/fileDesc/titleStmt/author</entry>
          </row>
          <row>
            <entry>dc:subject</entry>
            <entry>tei.2/teiHeader/profileDesc/textClass/keywords/list/item</entry>
          </row>
          <row>
            <entry>dc:description</entry>
            <entrytbl cols="1">
              <tbody>
                <row>
                  <entry>tei.2/teiHeader/encodingDesc/projectDesc</entry>
                </row>
                <row>
                  <entry>tei.2/teiHeader/encodingDesc/editorialDesc</entry>
                </row>
                <row>
                  <entry>tei.2/teiHeader/encodingDesc/refsDecl</entry>
                </row>
                <row>
                  <entry>Others?</entry>
                </row>
              </tbody>
            </entrytbl>
          </row>
          <row>
            <entry>dc:publisher</entry>
            <entry>tei.2/teiHeader/fileDesc/publicationStmt/publisher/publisher and pubplace</entry>
          </row>
          <row>
            <entry>dc:contributor</entry>
            <entrytbl cols="1">
              <tbody>
                <row>
                  <entry>tei.2/teiHeader/fileDesc/titleStmt/editor</entry>
                </row>
                <row>
                  <entry>tei.2/teiHeader/fileDesc/titleStmt/funder</entry>
                </row>
                <row>
                  <entry>tei.2/teiHeader/fileDesc/titleStmt/sponsor</entry>
                </row>
                <row>
                  <entry>tei.2/teiHeader/fileDesc/titleStmt/principle</entry>
                </row>
                <row>
                  <entry>tei.2/teiHeader/fileDesc/respStmt/name/@reg</entry>
                </row>
                <row>
                  <entry>
                    <para>(Names from the respStmt will only be pulled in the DC record when the
                      catalog form of the name has been entered in the @reg)</para>
                  </entry>
                </row>
              </tbody>
            </entrytbl>
          </row>
          <row>
            <entry>dc:date</entry>
            <entry>tei.2/teiHeader/fileDesc/publicationStmt/date</entry>
          </row>
          <row>
            <entry>dc:type</entry>
            <entry>tei.2/teiHeader/@type (for CDL TEI Form)</entry>
          </row>
          <row>
            <entry>dc:format</entry>
            <entry>text/xml</entry>
          </row>
          <row>
            <entry>dc:indentifier</entry>
            <entry>tei.2/teiHeader/fileDesc/publicationStmt/idno/@type="ARK"</entry>
          </row>
          <row>
            <entry>dc:source</entry>
            <entrytbl cols="1">
              <tbody>
                <row>
                  <entry>tei.2/teiHeader/sourceDesc/bibful/publicationStmt/publisher, pubPlace, and date</entry>
                </row>
		<row> 
		  <entry>tei.2/teiHeader/sourceDesc/bibl</entry>
                </row>
              </tbody>
            </entrytbl>
          </row>
          <row>
            <entry>dc:language</entry>
            <entry>tei.2/teiHeader/profileDesc/langUsage/language</entry>
          </row>
          <row>
            <entry>dc:relation</entry>
            <entry>tei.2/teiHeader/fileDesc/seriesStmt/title OR title/xref/@href="url"</entry>
          </row>
          <row>
            <entry>dc:coverage</entry>
            <entry>N/A</entry>
          </row>
          <row>
            <entry>dc:rights</entry>
            <entrytbl cols="1">
              <tbody>
                <row>
                  <entry>tei.2/teiheader/fileDesc/publicationStmt/availability</entry>
                </row>
                <row>
                  <entry>Or does CDL boilerplate this?</entry>
                </row>
              </tbody>
            </entrytbl>
          </row>
        </tbody>
      </tgroup>
    </informaltable>
  </appendix>
</book>