<?xml version="1.0" encoding="UTF-8"?>
<!-- © TEI Consortium. Dual-licensed under CC-by and BSD2 licenses; see the file COPYING.txt for details. -->
<?xml-model href="https://jenkins.tei-c.org/job/TEIP5-dev/lastSuccessfulBuild/artifact/P5/release/xml/tei/odd/p5.nvdl" type="application/xml" schematypens="http://purl.oclc.org/dsdl/nvdl/ns/structure/1.0"?>
<div xmlns="http://www.tei-c.org/ns/1.0" xmlns:xi="http://www.w3.org/2001/XInclude" type="div1" xml:id="ND" n="20">

  <head>Names, Dates, People, and Places</head>

  <p>This chapter describes a module which may be used for the encoding of names and other phrases descriptive of persons, places,
    or organizations, in a manner more detailed than that possible using the elements already provided for these purposes in the
    Core module. In section <ptr target="#CONA"/> it was noted that the elements provided in the core module allow an encoder to
    specify that a given text segment is a proper noun, or a <term>referring string</term>, and to specify the kind of object
    named or referred to only by supplying a value for the <att>type</att> attribute. The elements provided by the present module
    allow the encoder to supply a detailed sub-structure for such referring strings, and to distinguish explicitly between names
    of persons, places, and organizations.</p>

  <p>This module also provides elements for the representation of information about the person, place, or organization to which a
    given name is understood to refer and to represent the name itself, independently of its application. In simple terms, where
    the core module allows one simply to represent that a given piece of text is a <term>name</term>, this module allows one
    further to represent a <term>personal name</term>, to represent the <term>person</term> being named, and to represent the
      <term>canonical name</term> being used. A similar range is provided for names of places and organizations. The main intended
    applications for this module are in biographical, historical, or geographical data systems such as gazetteers and biographical
    databases, where these are to be integrated with encoded texts.</p>

  <p>The chapter begins by discussing attributes common to many of the elements discussed in the remaining parts of the chapter
      (<ptr target="#NDATTS"/>) before discussing specifically the elements provided for the encoding of component parts of
    personal names (section <ptr target="#NDPER"/>), place names (section <ptr target="#NDPLAC"/>) and organizational names
    (section <ptr target="#NDORG"/>). Elements for encoding personal and organizational data are discussed in section <ptr target="#NDPERS"/>. Elements for the encoding of geographical data are discussed in section <ptr target="#NDGEOG"/>.
    Finally, elements for encoding onomastic data are discussed in <ptr target="#NDNYM"/>, and the detailed encoding of dates and
    times is described in section <ptr target="#NDDATE"/>.</p>



  <div xml:id="NDATTS">
    <head>Attribute Classes Defined by This Module</head>
    <p>Most of the elements made available by this chapter share some important characteristics which are expressed by their
      membership in specific attribute classes. Members of the class <ident type="class">att.naming</ident> have specialized
      attributes which support linkage of a naming element with the entity (person, place, organization) being named; members of
      the class <ident type="class">att.datable</ident> have specialized attributes which support a number of ways of normalizing
      the date or time of the data encoded by the element concerned.</p>

    <div xml:id="NDATTSnr">
      <head>Linking Names and Their Referents</head>

      <p>The class <ident type="class">att.naming</ident> is a subclass of the class <ident type="class">att.canonical</ident>,
        from which it inherits the following attributes: <specList>
          <specDesc key="att.canonical" atts="key ref"/>
        </specList> As discussed in <ptr target="#CONARS"/>, these attributes provide two different ways of associating any sort
        of name with its referent. For cases where all that is required is to provide some minimal information about the person
        name, for example their occupation or status, the <ident type="class">att.naming</ident> class also provides a simple
          <att>role</att> attribute. It also provides an additional attribute, which allows the name itself to be associated with
        a base or canonical form: <specList>
          <specDesc key="att.naming" atts="role nymRef"/>
        </specList> The encoder may use these attributes in combination as appropriate. For example: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSnr-egXML-cj">That silly man <name role="politician" type="person">David Paul Brown</name>
          has suffered ...</egXML> The <att>ref</att> attribute should be used wherever it is possible to supply a direct link
        such as a URI to indicate the location of canonical information about the referent. <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSnr-egXML-ih">That silly man <name ref="#DPB1" type="person">David Paul Brown</name> has
          suffered ...</egXML> This encoding requires that there exist somewhere a <gi>person</gi> element with the identifier
          <code>DPB1</code>, which will contain canonical information about this particular person, marked up using the elements
        discussed in <ptr target="#NDPERS"/> below. The same element might alternatively be provided by some other document, of
        course, which the same attribute could refer to by means of a URI, as explained in <ptr target="#SAXP"/>: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSnr-egXML-ix">That silly man <name ref="http://www.example.com/personography.xml#DPB1" type="person">David Paul Brown</name> has suffered ...</egXML>More than one URI may be supplied if the name refers to
        more than one person. For example, assuming the existence of another <gi>person</gi> element for Mrs Brown, with
        identifier <code>EBB1</code>, a reference to <q>the Browns</q> might be encoded <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSnr-egXML-yf">That wretched pair <name ref="#DPB1 #EBB1" type="person">the Browns</name> came
          to dine ...</egXML>
      </p>

      <p>The <att>key</att> attribute is provided for cases where no such direct link is required: for example because resolution
        of the reference is carried out by some local convention, or because the encoder judges that no such resolution is
        necessary. As an example of the first case, a project might maintain its own local database system containing canonical
        information about persons and places, each entry in which is accessed by means of some system-specific identifier
        constructed in a project-specific way from the value supplied for the <att>key</att> attribute.<note place="bottom">In the
          module described by chapter <ptr target="#TD"/> a similar method is used to link element descriptions to the modules or
          classes to which they belong, for example.</note> As an example of the second case, consider the use of well-established
        codifications such as country or airport codes, which it is probably unnecessary for an encoder to expand further: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSnr-egXML-uy"> I never fly from <name key="LHR" type="place">Heathrow Airport</name> to <name key="FR" type="place">France</name></egXML>
      </p>

      <p>However, as explained in <ptr target="#CONARS"/>, interchange is improved by use of tag URIs in <att>ref</att> instead of
          <att>key</att>.</p>

      <p>The <att>nymRef</att> attribute has a more specialized use, where it is the name itself which is of interest rather than
        the person, place, or organization being named. See section <ptr target="#NDNYM"/> for further discussion.</p>

      <p>All members of the <ident type="class">att.naming</ident> class inherit the following attributes from the <ident type="class">att.global.responsibility</ident> class: <specList>
          <specDesc key="att.global.responsibility" atts="resp cert"/>
        </specList> This enables an encoder to record the agency responsible for a given assertion (for example, the name) and the
        confidence placed in that assertion by the encoder. Examples are given below.</p>
    </div>

    <div xml:id="NDATTSda">
      <head>Dating Attributes</head>

      <p>Members of the <ident type="class">att.datable</ident> class share the following attributes: <specList>
          <specDesc key="att.datable" atts="period"/>
          <specDesc key="att.datable.w3c" atts="when notBefore notAfter from to"/>
        </specList>
      </p>
      <p>The <att>when</att> attribute is used to specify a normalized form for any temporal expression, independently of how it
        is represented in the text, as in the following example: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSda-egXML-qi" source="#NDORG-eg-34"><date when="1807-06-09">June 9th</date> The period is approaching which will terminate my present
          copartnership. On the <date when="1808-01-01">1st Jany.</date> next, it expires by its own limitation.</egXML>
      </p>
      <p>The <att>period</att> attribute provides a convenient way of associating an event or date with a named period. Its value
        is a pointer which should indicate some other element where the period concerned is more precisely defined. A convenient
        location for such definitions is the <gi>taxonomy</gi> element in the <gi>classDecl</gi> (classification declaration) in
        the <gi>encodingDesc</gi> of a TEI header. A <gi>taxonomy</gi> may contain simply a bibliographic reference to an external
        definition for it. More usefully, it may also contain a series of <gi>category</gi> elements, each with an identifier and
        a description. The identifier can then be used as the target for a <att>period</att> attribute. For example, a taxonomy of
        named periods might be defined as follows: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSda-egXML-cq">
          <taxonomy xml:id="greekperiods">
            <category xml:id="tyranny">
              <catDesc>Before 510 BC</catDesc></category>
            <category xml:id="classical">
              <catDesc>Between 510 and 323 BC</catDesc></category>
            <category xml:id="hellenistic">
              <catDesc>
                <ref target="http://www.wikipedia.com/wiki/Hellenistic">Hellenistic</ref>. Commonly treated as <date notBefore="-0323" notAfter="-0031">from the death of Alexander to the Roman conquest.</date>
              </catDesc>
            </category>
            <category xml:id="roman">
              <catDesc>
                <ref target="http://www.wikipedia.com/wiki/Roman_Empire">Roman</ref>
              </catDesc>
            </category>
            <category xml:id="christian">
              <catDesc> The Christian period technically starts at the birth of Jesus, but in practice is considered to date from
                the conversion of Constantine in <date when="0312">312 AD</date>. </catDesc>
            </category>
          </taxonomy>
        </egXML>
      </p>
      <p>With these definitions in place, any datable element may be associated with a specific period: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSda-egXML-sn" xml:lang="und">
          <placeName period="#christian">Stauropolis</placeName></egXML></p>
      <p>The other dating attributes provided by this class support a wide range of methods of specifying temporal information in
        a normalized form. The <att>from</att> and <att>to</att> attributes may be used to express the begining and ending of a
        period of time, for example: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSda-egXML-yc">
          <event xml:id="eMBB" from="1955-12-01" to="1956-12-20">
            <label>Montgomery Bus Boycott</label>
            <desc>A political and social protest campaign against the policy of racial segregation on the public transit system of
              the city of <placeName ref="#MONT">Montgomery</placeName>.</desc>
          </event>
        </egXML></p>
      <p>The <att>notBefore</att> and <att>notAfter</att> attributes may be used to express a range of possibilities for a
        particular date (or time). For example the following element, extracted from an imaginary prosopographic entry for Anne
        Calthorpe, indicates that although the exact date of her death is not known, it can be narrowed down to a particular
        range: from 22 August 1579 to 28 March 1582, inclusive. Ostensibly the encoder has evidence that Anne Calthorpe was alive
        on the 22nd of August 1579 and evidence that she was already dead on the 28th of March 1582. <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSda-egXML-vq" source="#UND">
          <death notBefore="1579-08-22" notAfter="1582-03-28"/>
        </egXML></p>
      <p>Since <att>when</att> is used for a particular date or time, <att>from</att> and <att>to</att> for a duration, and
          <att>notBefore</att> and <att>notAfter</att> for a date or time within a range, it makes no sense to use <att>when</att>
        in combination with one or more of the others. Thus these Guidelines at present recommend against the use of
          <att>when</att> in combination with any of <att>from</att>, <att>to</att>, <att>notBefore</att>, or
        <att>notAfter</att>.</p>
      <p>The <att>from</att> or <att>to</att> attributes imply that the temporal expression to which they are attached signifies a
        duration, so the use of either with <att>notBefore</att> or <att>notAfter</att> means a duration is indicated. <table xml:id="NDATTSda-table-ba" style="border-collapse:separate; border-style:solid;">
          <row role="label">
            <cell style="border: thin solid black; padding: 1ex;"/>
            <cell style="border: thin solid black; padding: 1ex;"><att>notBefore</att></cell>
            <cell style="border: thin solid black; padding: 1ex;"><att>from</att></cell>
          </row>
          <row>
            <cell style="border: thin solid black; padding: 1ex;" role="label"><att>notAfter</att></cell>
            <cell style="border: thin solid black; padding: 1ex;">range of possibilities, inclusive</cell>
            <cell style="border: thin solid black; padding: 1ex;">duration from <att>from</att> to sometime before
                <att>notAfter</att>, inclusive</cell>
          </row>
          <row>
            <cell style="border: thin solid black; padding: 1ex;" role="label"><att>to</att></cell>
            <cell style="border: thin solid black; padding: 1ex;">duration from sometime after <att>notBefore</att> to
                <att>to</att>, inclusive</cell>
            <cell style="border: thin solid black; padding: 1ex;">duration from <att>from</att> to <att>to</att>, inclusive</cell>
          </row>
        </table>
      </p>
      <!--<p>Furthermore, a duration for which one endpoint is known and the
other is within a range of possibilities may be expressed by using
either <att>from</att> or <att>to</att> for the known endpoint, and
both <att>notBefore</att> and <att>notAfter</att> to indicate the
range of possibilities of the other endpoint. For example,
<egXML xmlns="http://www.tei-c.org/ns/Examples">
  <time from="01:26:03" notBefore="05:00:00" notAfter="06:30:00"/>
</egXML>
<!-\- This is the time range that the Chernobyl nuclear plant was burning, except for -\->
<!-\- thoe fires contained inside reactor 4. Reports vary as to when they were out;   -\->
<!-\- even wikipedia reports 2 different times, 05:00 and 06:30.                      -\->
indicates a duration of time that started at a specific time
(01:26:03), and ended sometime between 05:00 and 06:30 (inclusive).</p>-->
      <!--<p>A duration for which both endpoints occur not on a particular date
or time but rather during a specifiable range cannot be formally
expressed using only the attributes of <ident
type="class">att.datable.w3c</ident> discussed here. See
<ptr target="#NDDATEISO"/>.</p>-->
      <p>Some further self-explanatory examples follow: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSda-egXML-kk">
          <birth when="1857-03-15">15 March 1857.</birth>
        </egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSda-egXML-dr">
          <birth notBefore="1857-03-01" notAfter="1857-04-30">Some time in March or April of 1857.</birth>
        </egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSda-egXML-yl">
          <residence from="1857-03-01" to="1857-04-30">Lived in Amsterdam during March and April of 1857.</residence>
        </egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSda-egXML-zh">
          <date from="1857-03-01" notAfter="1857-04-30">From the 1st of March to some time later in March or April of 1857.</date>
        </egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSda-egXML-sy">
          <residence notBefore="1857-03-01" to="1857-04-30">From the 1st of March or sometime later to the end of April,
            1857.</residence>
        </egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDATTSda-egXML-ye">
          <residence from="1856-03" to="1858-04">From sometime in March of 1856 to sometime in April of 1858.</residence>
        </egXML>
      </p>
      <p>Normalization of date and time values permits the efficient processing of data (for example, to determine whether one
        event precedes or follows another). These examples all use the W3C standard format for representation of dates and times.
        Further examples, and discussion of some alternative approaches to normalization are given in section <ptr target="#NDDATEISO"/> below.</p>
      <!-- need reference to something on date normalization issues here -->
    </div>

  </div>

  <div xml:id="NDNA">
    <head>Names</head>

    <div type="div2" xml:id="NDPER">
      <head>Personal Names</head>

      <p>The core <gi>rs</gi> and <gi>name</gi> elements can distinguish names in a text but are insufficiently powerful to mark
        their internal components or structure. To conduct nominal record linkage or even to create an alphabetically sorted list
        of personal names, it is important to distinguish between a family name, a forename and an honorary title. Similarly, when
        confronted with a string such as <q>John, by the grace of God, king of England, lord of Ireland, duke of Normandy and
          Aquitaine, and count of Anjou</q>, the analyst will often wish to distinguish amongst the various constituent elements
        present, since they provide additional information about the status, occupation, or residence of the person to whom the
        name belongs. The following elements are provided for these and related purposes: <specList>
          <specDesc key="persName"/>
          <specDesc key="surname"/>
          <specDesc key="forename"/>
          <specDesc key="roleName"/>
          <specDesc key="addName"/>
          <specDesc key="nameLink"/>
          <specDesc key="genName"/>
        </specList>
      </p>

      <p>In addition to the <ident type="class">att.naming</ident> attributes mentioned above, all of the above elements are
        members of the class <ident type="class">att.personal</ident>, and thus share the following attributes: <specList>
          <specDesc key="att.personal" atts="full sort"/>
        </specList>
      </p>
      <p>The <gi>persName</gi> element may be used in preference to the general <gi>name</gi> element irrespective of whether or
        not the components of the personal name are also to be marked.
        <!--Its
<att>key</att> attribute can be used to provide a linkage between the
name and the person named, in exactly the same way as  on
the <gi>rs</gi> and <gi>name</gi> elements (see section <ptr
target="#CONA"/>).  The tag -->The
        element <gi>persName</gi> is synonymous with the element <tag>name type="person"</tag>, except that its <att>type</att>
        attribute allows for further subcategorization of the personal name itself, for example as a <val>married</val>,
          <val>birth</val>, <val>pen</val>, <val>pseudo</val>, or <val>religious</val> name. Consequently the following examples
        are equivalent: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-ur">That silly man <rs ref="tag:projectname.org,2012:DPB1" type="person">David Paul Brown</rs> has suffered the furniture of his office to be seized the third time for
          rent.</egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-ni">That silly man <rs ref="tag:projectname.org,2012:DPB1" type="person">
            <name>David Paul Brown</name>
          </rs> has suffered ...</egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-go">That silly man <name ref="tag:projectname.org,2012:DPB1" type="person">David Paul Brown</name> has suffered ...</egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-qf">That silly man <persName ref="tag:projectname.org,2012:DPB1">David Paul
            Brown</persName> has suffered ...</egXML>
      </p>
      <p>The <gi>persName</gi> element is more powerful than the <gi>rs</gi> and <gi>name</gi> elements because distinctive name
        components occurring within it can be marked as such.</p>
      <p>Many cultures distinguish between a family or inherited <term>surname</term> and additional personal names, often known
        as <term>given names</term>. These should be tagged using the <gi>surname</gi> and <gi>forename</gi> elements respectively
        and may occur in any order: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-wi"><persName>
            <surname>Roosevelt</surname>, <forename>Franklin</forename>
            <forename>Delano</forename>
          </persName>
          <persName>
            <forename>Franklin</forename>
            <forename>Delano</forename>
            <surname>Roosevelt</surname>
          </persName></egXML>
      </p>
      <p>The <att>type</att> attribute may be used with both <gi>forename</gi> and <gi>surname</gi> elements to provide further
        culture- or project-specific detail about the name component, for example: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-yu"><persName>
            <forename type="first">Franklin</forename>
            <forename type="middle">Delano</forename>
            <surname>Roosevelt</surname>
          </persName>
          <persName>
            <forename type="given">Margaret</forename>
            <forename type="unused">Hilda</forename>
            <surname type="birth">Roberts</surname>
            <surname type="married">Thatcher</surname>
          </persName>
          <persName type="religious">Muhammad Ali</persName>
          <persName>
            <forename>Norman</forename>
            <surname type="complex">St John Stevas</surname>
          </persName>
        </egXML> Values for the <att>type</att> attribute are not constrained, and may be chosen as appropriate to the encoding
        needs of the project. They may be used to distinguish different kinds of forename or surname, as well as to indicate the
        function a name component fills within the whole. In this example, we indicate that a surname is toponymic, and also point
        to the specific place name from which it is derived: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-ij">
          <persName>
            <forename>Johan</forename>
            <surname type="toponymic" ref="#dystvold">Dystvold</surname>
          </persName>
          <!-- ... -->
          <placeName xml:id="dystvold">Dystvold</placeName>
        </egXML>
      </p>

      <p>The value <val>complex</val> was suggested above for the not uncommon case where the whole of a surname is composed of
        several other surname elements. These nested surnames may be individually tagged as well, together with appropriate type
        values: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-yv"><persName>
            <forename>Kara</forename>
            <surname type="complex">
              <surname type="paternal">Hattersley</surname>- <surname type="maternal">Smith</surname>
            </surname>
          </persName></egXML>
      </p>
      <p>The <att>full</att> attribute may be used to indicate whether a name is an abbreviation, initials, or given in full:
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-sm"><persName>
            <forename full="abb">Maggie</forename>
            <surname>Thatcher</surname>
          </persName></egXML>
      </p>

      <p>These elements may be applied as the encoder considers appropriate, including cases where phrases or expressions are used
        to stand for surnames or forenames, as in the following: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-hr" source="#NDPER-eg-17"><s><persName>
              <forename>Peter</forename>
              <surname>son of Herbert</surname></persName> gives the king 40 m. for having custody of the land and heir of
                <persName><forename>John</forename>
              <surname>son of Hugh</surname></persName>...</s></egXML>
      </p>

      <p>Similarly, patronymics may be treated as forenames, thus: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-nr" source="#NDPER-eg-18">... but it remained for <persName>
            <forename>Snorri</forename>
            <forename>Sturluson</forename>
          </persName> to combine the two traditions in cyclic form.</egXML> When a patronymic is used as a surname, however (e.g.
        by an individual who otherwise would have no surname, but lives in a culture which requires surnames), it may be tagged as
        such: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-vj" source="#NDPER-eg-18">Even <persName><forename>Finnur</forename>
            <surname>Jonsson</surname></persName> acknowledged the artificiality of the procedure...</egXML> Alternatively, it may
        be felt more appropriate to mark a patronymic as a distinct kind of name, neither a forename nor a surname, using the
          <gi>addName</gi> element: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-fl" source="#NDPER-eg-18">
          <persName>
            <forename>Egill</forename>
            <addName type="patronym">Skallagrmsson</addName>
          </persName>
        </egXML> In the following example, the <att>type</att> attribute is used to distinguish a patronymic from other forenames:
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-ep"><persName ref="tag:projectname.org,2012:pn9">
            <forename sort="2">Sergei</forename>
            <forename sort="3" type="patronym">Mikhailovic</forename>
            <surname sort="1">Uspensky</surname>
          </persName></egXML>
      </p>


      <p>This example also demonstrates the use of the <att>sort</att> attribute common to all members of the <ident type="class">model.persNamePart</ident> class; its effect is to state the sequence in which <gi>forename</gi> and <gi>surname</gi>
        elements should be combined when constructing a sort key for the name.</p>
      <p>Some names include generational or dynastic information, such as a number, or phrases such as <q>Junior</q>, or <q>the
          Elder</q>; these qualifications may also be used to distinguish similarly named but unrelated people. In either case,
        the <gi>genName</gi> element may be used to distinguish such labels from other parts of the name, as in the following
        examples: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-ul" xml:lang="und"><persName ref="tag:projectname.org,2012:HEMA1">
            <surname>Marques</surname>
            <genName>Junior</genName>, <forename>Henrique</forename>
          </persName></egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-km" xml:lang="und"><persName>
            <forename>Charles</forename>
            <genName>II</genName>
          </persName></egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-nf" xml:lang="und"><persName xml:lang="de">
            <forename>Rudolf</forename>
            <genName>II</genName>
            <surname>von Habsburg</surname>
          </persName></egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-ot" xml:lang="und"><persName>
            <surname>Smith</surname>
            <genName>Minor</genName>
          </persName></egXML>
      </p>
      <p>It is also often convenient to distinguish phrases (historically similar to the generational labels mentioned above) used
        to link parts of a name together, such as <q>von</q>, <q>of</q>, <q>de</q> etc. It is often a matter of arbitrary choice
        whether such components are regarded as part of the surname or not; the <gi>nameLink</gi> element is provided as a means
        of making clear what the correct usage should be in a given case, as in the following examples: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-bg"><persName ref="tag:projectname.org,2012:DUDO1">
            <roleName type="honorific" full="abb">Mme</roleName>
            <nameLink>de la</nameLink>
            <surname>Rochefoucault</surname>
          </persName></egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-qo" xml:lang="und"><persName>
            <forename>Walter</forename>
            <surname>de la Mare</surname>
          </persName></egXML>
      </p>
      <p>Finally, the <gi>addName</gi> and <gi>roleName</gi> elements are used to mark all name components other than those
        already listed. The distinction between them is that a <gi>roleName</gi> encloses an associated name component such as an
        aristocratic or official title which exists in some sense independently of its bearer. The distinction is not always a
        clear one. As elsewhere, the <att>type</att> attribute may be used with either element to supply culture- or application-
        specific distinctions. Some typical values for this attribute for names in the Western European tradition follow: <list type="gloss">
          <label>
            <val>nobility</val>
          </label>
          <item>An inherited or life-time title of nobility such as <mentioned>Lord</mentioned>, <mentioned>Viscount</mentioned>,
              <mentioned>Baron</mentioned>, etc.</item>
          <label>
            <val>honorific</val>
          </label>
          <item>An academic or other honorific prefixed to a name e.g. <mentioned>Doctor</mentioned>,
              <mentioned>Professor</mentioned>, <mentioned>Mrs.</mentioned>, etc.</item>
          <label>
            <val>office</val>
          </label>
          <item>Membership of some elected or appointed organization such as <mentioned>President</mentioned>,
              <mentioned>Governor</mentioned>, etc.</item>
          <label>
            <val>military</val>
          </label>
          <item>Military rank such as <mentioned>Colonel</mentioned>.</item>
          <label>
            <val>epithet</val>
          </label>
          <item>A traditional descriptive phrase or nick-name such as <mentioned>The Hammer</mentioned>, <mentioned>The
              Great</mentioned>, etc.</item>
        </list> Note, however, that the <term>role</term> a person has in a given context (such as <mentioned>witness</mentioned>,
          <mentioned>defendant</mentioned>, etc. in a legal document) should not be encoded using the <gi>roleName</gi> element,
        since this is intended to mark roles which function as part of a person's name, not the role of the person bearing the
        name in general. Information about roles, occupations, etc. of a person are encoded within the <gi>person</gi> element
        discussed below in <ptr target="#NDPERS"/>.</p>
      <p>Here are some further examples of the usage of these elements: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-wa"><persName ref="tag:projectname.org,2012:PGK1">
            <roleName type="nobility">Princess</roleName>
            <forename>Grace</forename>
          </persName></egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-vs"><persName ref="tag:projectname.org,2012:GRMO1" type="pseudo">
            <addName type="honorific">Grandma</addName>
            <surname>Moses</surname>
          </persName></egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-ky"><persName ref="tag:projectname.org,2012:SLWICL1">
            <roleName type="office">President</roleName>
            <forename>Bill</forename>
            <surname>Clinton</surname>
          </persName></egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-ix"><persName ref="tag:projectname.org,2012:MOGA1">
            <roleName type="military">Colonel</roleName>
            <surname>Gaddafi</surname>
          </persName></egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-zt"><persName ref="tag:projectname.org,2012:FRTG1">
            <forename>Frederick</forename>
            <addName type="epithet">the Great</addName>
          </persName></egXML>
      </p>
      <p>A name may have any combination of the above elements: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPER-egXML-wk"><persName ref="tag:projectname.org,2012:EGBR1">
            <roleName type="office">Governor</roleName>
            <forename sort="2">Edmund</forename>
            <forename full="init" sort="3">G.</forename>
            <addName type="nick">Jerry</addName>
            <addName type="epithet">Moonbeam</addName>
            <surname sort="1">Brown</surname>
            <genName full="abb">Jr</genName>. </persName></egXML>
      </p>
      <p>Although highly flexible, these mechanisms for marking personal name components will not cater for every personal name,
        nor for every processing need. Where the internal structure of personal names is highly complex or where name components
        are particularly ambiguous, feature structures are recommended as the most appropriate mechanism to mark and analyze them,
        as further discussed in chapter <ptr target="#FS"/>.</p>

      <p>White space is allowed and therefore significant between elements within <gi>name</gi>, <gi>persName</gi>,
          <gi>orgName</gi>, and <gi>placeName</gi>. Therefore <eg><![CDATA[<persName>
      <forename>Mary</forename>
      <forename>Ann</forename>
      <nameLink>De</nameLink><surname>Mint</surname>
    </persName>]]></eg> encodes <q>Mary Ann DeMint</q> and <eg><![CDATA[<persName>
      <forename>Mary</forename><forename>Ann</forename>
        <nameLink>De</nameLink>
        <surname>Mint</surname>
    </persName>]]></eg> encodes <q>MaryAnn De Mint</q>. See <ptr target="#STGAxs"/> for more information on whitespace in XML.</p>
    </div>

    <div type="div2" xml:id="NDORG">
      <head>Organizational Names</head>
      <p>In these Guidelines, we use the term <q>organization</q> for any named collection of people regarded as a single unit.
        Typical examples include institutions such as <soCalled>Harvard College</soCalled> or <soCalled>the BBC</soCalled> and
        businesses such as <soCalled>Apple</soCalled> or <soCalled>Google</soCalled> but also racial or ethnic groupings or
        political factions where these are regarded as forming a single agency such as <soCalled>the Scythians</soCalled> or
          <soCalled>the Militant Tendency</soCalled>. Giving a loosely-defined group of individuals a name often serves a
        particular political or social agenda and an analysis of the way such phrases are constructed and used may therefore be of
        considerable importance to the social historian, even where the objective existence of an <q>organization</q> in this
        sense is harder to demonstrate than that of (say) a named person. In the case of businesses or other formally constituted
        institutions, the component parts of an organizational name may help to characterize the organization in terms of its
        perceived geographical location, ownership, likely number of employees, management structure, etc.</p>

      <p>Like names of persons or places, organizational names can be marked up as referring strings or as proper names with the
          <gi>rs</gi> or <gi>name</gi> elements respectively. The element <gi>orgName</gi> is provided for use where it is desired
        to distinguish organizational names more explicitly. <specList>
          <specDesc key="orgName"/>
        </specList> This element is a member of the same attribute classes as <gi>persName</gi>, as discussed above in <ptr target="#NDATTSnr"/>.</p>
      <p>The <gi>orgName</gi> element may be used to mark up any form of organizational name: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDORG-egXML-mf" source="#NDORG-eg-34">About a year back, a question of considerable interest
          was agitated in the <orgName type="voluntary" ref="tag:projectname.org,2012:PAS1">Pennsyla. Abolition
          Society</orgName></egXML> This encoding is equivalent to, but more specific than, either of the following
        representations: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDORG-egXML-is">About a year back, a question of considerable interest
          was agitated in the <rs ref="tag:projectname.org,2012:PAS1" type="org">
            <name>Pennsyla. Abolition Society</name></rs>.</egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDORG-egXML-ud">About a year back, a question of considerable interest was agitated in the
            <name ref="tag:projectname.org,2012:PAS1" type="org">Pennsyla. Abolition Society</name>.</egXML> As shown above, like
        the <gi>rs</gi> and <gi>name</gi> elements, the <gi>orgName</gi> element has a <att>key</att> attribute with which an
        external identifier such as a database key can be assigned to the organization name, and also a <att>ref</att> attribute
        which can be used to point directly to an <gi>org</gi> element containing information about the organization itself (see
        further <ptr target="#ND-org"/>). Its <att>type</att> attribute should be used to characterize the name (rather than the
        organization), for example as an acronym: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDORG-egXML-me">Mr Frost will be able to earn an
          extra fee from <orgName type="acronym">BSkyB</orgName> rather than the <orgName type="acronym">BBC</orgName>
        </egXML> as a phrase: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDORG-egXML-nc" source="#NDORG-eg-38"> The feeling in
            <country>Canada</country> is one of strong aversion to the <orgName type="phrase">United States Government</orgName>,
          and of predilection for self-government under the <orgName type="phrase">English Crown</orgName></egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDORG-egXML-xh">
          <orgName>The Justified Ancients of Mu Mu</orgName>
        </egXML> or as a composite of other kinds of name: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDORG-egXML-uh">
          <orgName type="partnerNames">
            <surname>Ernst</surname> &amp; <surname>Young</surname>
          </orgName></egXML>
      </p>
      <p>The components of an organization's name may include place names as well as personal names: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDORG-egXML-cz">A spokesman from <orgName type="regional">
            <orgName>IBM</orgName>
            <country>UK</country>
          </orgName> said ... </egXML> or role names: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDORG-egXML-xi">THE TICKET which you will
          receive herewith has been formed by the <orgName>Democratic Whig <name type="role">party</name>
          </orgName> after the most careful deliberation, with a reference to all the great objects of NATIONAL, STATE, COUNTY and
          CITY concern, and with a single eye to the <hi>Welfare and Best Interests of the Community</hi>.</egXML>
      </p>
      <p>As indicated above, organizational names may also be specified hierarchically particularly where the named organization
        is itself a department or a branch of a larger organizational entity. <q>The Department of Modern History, Glasgow
          University</q> is an example: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDORG-egXML-gw"><orgName>
            <orgName>Department of Modern History</orgName>
            <orgName><name type="city">Glasgow</name>
              <name type="role">University</name>
            </orgName>
          </orgName></egXML>
      </p>

      <p>
        <specGrp xml:id="DNDPER" n="Personal and organizational names">
          <xi:include href="../../Specs/orgName.xml"/>
          <xi:include href="../../Specs/persName.xml"/>
          <xi:include href="../../Specs/surname.xml"/>
          <xi:include href="../../Specs/forename.xml"/>
          <xi:include href="../../Specs/genName.xml"/>
          <xi:include href="../../Specs/nameLink.xml"/>
          <xi:include href="../../Specs/addName.xml"/>
          <xi:include href="../../Specs/roleName.xml"/>
        </specGrp>
      </p>
    </div>

    <div type="div2" xml:id="NDPLAC">
      <head>Place Names</head>
      <p>Like other proper nouns or noun phrases used as names, place names can simply be marked up with the <gi>rs</gi> element,
        or with the <gi>name</gi> element. For cartographers and historical geographers, however, the component parts of a place
        name provide important information about the relation between the name and some spot in space and time. They also provide
        important evidence in historical linguistics.</p>
      <p>These Guidelines distinguish three ways of referring to places. A place name (represented using the <gi>placeName</gi>
        element) may consist of one or more names for hierarchically-organized geo-political or administrative units (see section
          <ptr target="#NDPLGU"/>). A place named simply in terms of geographical features such as mountains or rivers is
        represented using the <gi>geogName</gi> element (see section <ptr target="#NDPLGF"/>). Finally, an expression consisting
        of phrases expressing spatial or other kinds of relationship between other kinds of named place may itself be regarded as
        a way of referring to a place, and hence as a kind of named place (see section <ptr target="#NDPLR"/>). <specList>
          <specDesc key="placeName"/>
          <specDesc key="geogName"/>
        </specList>
      </p>
      <p>As members of the <ident type="class">att.naming</ident> class, all of these elements bear the attributes <att>key</att>,
          <att>ref</att>, and <att>nymRef</att> mentioned above. These attributes are primarily useful as a means of linking a
        place name with information about a specific place. Recommendations for the encoding of information about a place, as
        distinct from its name, are provided in <ptr target="#NDGEOG"/> below.</p>

      <p>Like the <gi>persName</gi> element discussed in section <ptr target="#NDPER"/>, the <gi>placeName</gi> element may be
        regarded simply as an abbreviation for the elements <tag>name type="place"</tag> or <tag>rs type="place"</tag>. The
        following encodings are thus equivalent:<note place="bottom">Strictly, a suitable value such as <val>figurative</val>
          should be added to the two place names which are presented periphrastically in the second version of this example. This
          would preserve the distinction indicated by the choice of <gi>rs</gi> rather than <gi>name</gi> to encode them in the
          first version of this example.</note>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLAC-egXML-zo">After spending some time in our <rs ref="tag:projectname.org,2012:NY1" type="place">modern <name ref="tag:projectname.org,2012:BA1" type="place">Babylon</name></rs>, <name ref="tag:projectname.org,2012:NY1" type="place">New York</name>, I have proceeded to the <rs ref="tag:projectname.org,2012:PH1" type="place">City of Brotherly Love</rs>.</egXML>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLAC-egXML-dd" source="#NDPLAC-eg-55">After spending some time in our <placeName ref="tag:projectname.org,2012:NY1">modern <placeName ref="tag:projectname.org,2012:BA1">Babylon</placeName></placeName>, <placeName ref="tag:projectname.org,2012:NY1">New York</placeName>, I have proceeded
          to the <placeName ref="tag:projectname.org,2012:PH1">City of Brotherly Love</placeName>.</egXML>
      </p>
      <div type="div3" xml:id="NDPLGU">
        <head>Geo-political Place Names</head>
        <p>A place name may contain text with no indication of its internal structure: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLGU-egXML-jv" xml:lang="und"><placeName>Rochester, NY</placeName></egXML> More usually
          however, a place name of this kind will be further analysed in terms of its constitutive geo-political or administrative
          units. These may be arranged in ascending sequence according to their size or administrative importance, for example:
            <q>Rochester, New York</q>, or as a single such unit, for example <q>Belgium</q>. These Guidelines provide a hierarchy
          of generic element names, each of which may be more exactly specified by means of a <att>type</att> attribute: <specList>
            <specDesc key="district"/>
            <specDesc key="settlement"/>
            <specDesc key="region"/>
            <specDesc key="country"/>
            <specDesc key="bloc"/>
          </specList></p>
        <p>These elements are all members of the <ident type="class">model.placeNamePart</ident> class, members of which may be
          used anywhere that text is permitted, including within each other as in the following examples: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLGU-egXML-sy"><placeName>
              <settlement type="city">Rochester</settlement>, <region type="state">New York</region>
            </placeName></egXML>
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLGU-egXML-pg"><placeName ref="tag:projectname.org,2012:LSEA1">
              <country type="nation">Laos</country>, <bloc type="sub-continent">Southeast Asia</bloc>
            </placeName></egXML>
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLGU-egXML-fq" xml:lang="mul"><placeName>
              <district type="arondissement">6ème</district>
              <settlement type="city">Paris, </settlement>
              <country>France</country>
            </placeName>
          </egXML>
        </p>
      </div>
      <div type="div3" xml:id="NDPLGF">
        <head>Geographic Names</head>
        <p>Places may also be named in terms of geographic features such as mountains, lakes, or rivers, independently of
          geo-political units. The <gi>geogName</gi> is provided to mark up such names, as an alternative to the
            <gi>placeName</gi> element discussed above. For example: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLGF-egXML-az"><geogName ref="tag:projectname.org,2012:MIRI1" type="river">Mississippi River</geogName></egXML>
        </p>
        <p>In addition to the usual phrase level elements, the <gi>geogName</gi> element may contain the following specialized
          element: <specList>
            <specDesc key="geogFeat"/>
          </specList>
        </p>
        <p>Where the <gi>geogFeat</gi> element is used to characterize the kind of geographic feature being named, the
            <gi>name</gi> element will generally also be used to mark the associated proper noun or noun phrase: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLGF-egXML-ki"><geogName ref="tag:projectname.org,2012:MIRI1" type="river">
              <name>Mississippi</name>
              <geogFeat>River</geogFeat>
            </geogName></egXML> A more complex example, showing a variety of practices, follows: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLGF-egXML-rc">The isolated ridge separates two great corridors which run from <name ref="tag:projectname.org,2012:GLCO1" type="place">Glencoe</name> into <geogName ref="tag:projectname.org,2012:GLET1" type="glen">
              <geogFeat>Glen</geogFeat>
              <name>Etive</name>
            </geogName>, the <geogName ref="tag:projectname.org,2012:LAGA1" type="hill">
              <geogFeat xml:lang="gd">Lairig</geogFeat>
              <name>Gartain</name>
            </geogName> and the <geogName ref="tag:projectname.org,2012:LAEI1" type="hill">
              <geogFeat xml:lang="gd">Lairig</geogFeat>
              <name>Eilde</name>
            </geogName></egXML></p>
        <p>The Gaelic word <mentioned>lairig</mentioned> may be glossed as <gloss>sloping hill face</gloss>. The most efficient
          way of including this information in the above encoding would be to create a separate <gi>nym</gi> element for this
          component of the name and then point to it using the <att>nymRef</att> attribute, as further discussed in <ptr target="#NDNYM"/>.</p>
      </div>
      <div type="div3" xml:id="NDPLR">
        <head>Relative Place Names</head>

        <p>All the place name specifications so far discussed are <term rend="noindex">absolute</term>, in the sense that they
          define only one place. A place may however be specified in terms of its relationship to another place, for example <q>10
            miles northeast of Paris</q> or <q>near the top of Mount Sinai</q>. These <term>relative place names</term> will
          contain a place name which acts as a referent (e.g. <q>Paris</q> and <q>Mount Sinai</q>). They will also contain a word
          or phrase indicating the position of the place being named in relation to the referent (e.g. <q>the top of</q>, <q>north
            of</q>). A distance, possibly only vaguely specified, between the referent place and the place being indicated may
          also be present (e.g. <q>10 miles</q>, <q>near</q>).</p>
        <p>Relative place names may be encoded using the following elements in combination with either a <gi>placeName</gi> or a
            <gi>geogName</gi> element. <specList>
            <specDesc key="offset"/>
            <specDesc key="measure"/>
          </specList> Some examples of relative place names are: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLR-egXML-wy"><placeName ref="tag:projectname.org,2012:NRPA1">
              <offset>near the top of</offset>
              <geogName>
                <geogFeat>Mount</geogFeat>
                <name>Sinai</name>
              </geogName>
            </placeName></egXML>
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLR-egXML-iw"><placeName>
              <measure>20 km</measure>
              <offset>north of</offset>
              <settlement type="city">Paris</settlement>
            </placeName></egXML> If desired, the distance specified may be normalized using the <att>unit</att> and
            <att>quantity</att> attributes of <gi>measure</gi>: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPLR-egXML-av"><placeName ref="tag:projectname.org,2012:Duncan">
              <measure unit="km" quantity="17.7">11 miles</measure>
              <offset>Northwest of</offset>
              <settlement type="city">Providence</settlement>, <region type="state">RI</region>
            </placeName></egXML>
        </p>
        <p>The internal structure of place names is like that of personal names—complex and subject to an enormous amount of
          variation across time and different cultures. The recommendations in this section should however be adequate for a
          majority of users and applications; they may be extended using the mechanisms described in chapter <ptr target="#MD"/>
          to add new elements to the existing classes. When the focus of interest is on the name components themselves, as in
          place name studies for example, the elements discussed in <ptr target="#NDNYM"/> may also be of use. Alternatively, the
          meaning structure itself may be represented using feature structures (<ptr target="#FS"/>).</p>
        <p>
          <specGrp xml:id="DNDPLAC" n="Names for places">
            <xi:include href="../../Specs/placeName.xml"/>
            <xi:include href="../../Specs/bloc.xml"/>
            <xi:include href="../../Specs/country.xml"/>
            <xi:include href="../../Specs/region.xml"/>
            <xi:include href="../../Specs/settlement.xml"/>
            <xi:include href="../../Specs/district.xml"/>
            <xi:include href="../../Specs/offset.xml"/>
            <xi:include href="../../Specs/geogName.xml"/>
            <xi:include href="../../Specs/geogFeat.xml"/>
          </specGrp>
        </p>
      </div>


    </div>
    
    <div type="div3" xml:id="NDEVTN">
      <head>Event Names</head>
      
      <p>The <gi>eventName</gi> element is provided in parallel to
      other naming mechanisms; it is intended especially for
      <soCalled>canonical</soCalled> names that are used in texts to
      mention specific named events, whether real or fictional.
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDEVTN-egXML-rp">
          <p>On <date when="1719-03-19">Monday</date>, <rs type="person">she</rs> was writing about the 
            <eventName ref="#SecondDefPrague">1618 Defenestration of Prague</eventName> which initiated the 
            <rs type="event" ref="#ThirtyYearsWar">long war</rs>.</p>
        </egXML>
      </p>
      <p><specList><specDesc key="eventName"/></specList></p>
      <p>There are two major applications of <gi>eventName</gi>: 
        <list rend="bulleted">
          <item>to indicate names of events mentioned in transcribed text, such as in the above example; and</item>
          <item>to indicate the names of events for which details are being provided in an <gi>event</gi> element.</item>
        </list>
      </p>
      <p>For the first application, as with most other naming
      elements, the <gi>eventName</gi> element is a member of the
      <ident type="class">att.canonical</ident> class, and thus the
      <att>ref</att> (or <att>key</att>) attribute may be used to
      refer to a an <gi>event</gi> element (about which see <ptr target="#NDEVNT"/>) or some other data item that contains
      further information about the event.</p>
      <p>When used as a direct child of <gi>event</gi>, an
      <gi>eventName</gi> provides one of the names of the event about
      which details are being provided in its parent <gi>event</gi>. A
      single event may be known by many names. All, only one, or
      indeed none of these might be provided in the <gi>event</gi> used
      to provide information about such an event. If more than one
      <gi>eventName</gi> is used they may be differentiated by use of
      <att>type</att>, <att>where</att>, or dating attributes. In cases
      where multiple <gi>event</gi> elements describe events that have
      the same name, the <att>xml:id</att> attribute of the
      <gi>event</gi> or an <gi>idno</gi>, <gi>head</gi>, or
      <gi>label</gi> sibling of the <gi>eventName</gi> may be used for
      disambiguation and identification. Typically <att>xml:id</att>
      or <gi>idno</gi> would be used for machine-processable
      disambiguation, and either <gi>head</gi> or <gi>label</gi> for
      human readers.</p>
      <p>
        <specGrp xml:id="DNDEVNT" n="Names for events">
          <xi:include href="../../Specs/eventName.xml"/>
        </specGrp>
      </p>
    </div>

    <div type="div3" xml:id="NDOBJN">
      <head>Object Names</head>
      
      <p><specList>
          <specDesc key="objectName"/>
        </specList></p>

      <p>As with other proper nouns or noun phrases used as names, the names of objects may be marked up simply with the
          <gi>name</gi> element. For those working with a variety of named objects the <gi>objectName</gi> element provides more
        flexibility. <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDOBJN-egXML-my">
          <p>The <objectName ref="#MinsterLovellJewel">Minster Lovell Jewel</objectName> is probably the most similar to the
              <objectName ref="#AlfredJewel">Alfred Jewel</objectName> and was found in <placeName ref="#MinsterLovell">Minster
              Lovell</placeName> in <placeName ref="#Oxfordshire">Oxfordshire</placeName> and is kept at the <orgName ref="#AshmoleanMuseum">Ashmolean Museum</orgName>.</p>
        </egXML>
      </p>
      <p>The <gi>objectName</gi> element may be used to encode any named object whether or not this is a text-bearing object. The
        use of <gi>objectName</gi> by itself does not categorize the object referenced, but this may be done further with the
          <att>type</att> and <att>subtype</att> attributes or through reference to a <gi>taxonomy</gi>. Additionally, the use of
        the <gi>objectName</gi> element says nothing about the physical reality of the object – that is whether it is real,
        fictional, purported, or missing – and this may be one aspect that some may wish to record through the <att>type</att>
        attribute. Where more detailed information is available for a named object the <att>ref</att> attribute should be used to
        point to an <gi>object</gi> element or other source of information about this object. The <gi>objectName</gi> element is
        intended for named objects; where an object is mentioned through a descriptive phrase but not named explicitly the
          <gi>rs</gi> element should be used.</p>
    </div>

  </div>

  <div type="div2" xml:id="NDPERS">
    <head>Biographical and Prosopographical Data</head>
    <p>This module defines a number of special purpose elements which can be used to markup biographical, historical, and
      prosopographical data. We envisage a number of users and uses for these elements. For example, an encoder may be interested
      in creating or converting a set of biographical records of the type found in a Dictionary of National
      Biography. Another use is the creation or conversion of a database-like collection of information about a group of people,
      such as the people referenced in a marked-up collection of documents, or persons who have served as informants in the
      creation of spoken corpora. It is also appropriate to use these elements to register information relating to those who have
      taken part in the creation of a TEI document.</p>

    <p>To cater for this diversity, these Guidelines propose a flexible strategy, in which encoders may choose for themselves the
      approach appropriate to their needs. If one were interested, for example, in converting existing DNB-type records, and
      wanted to preserve the text as is, the <gi>person</gi> element (see <ptr target="#NDPERSE"/>) could simply contain the text
      of an article, placed within <gi>p</gi> elements, possibly using elements such as <gi>name</gi> or <gi>date</gi> to mark up
      features of that text. For a more structured entry, however, one would extract the data and place information contained in
      the text, and encode it directly using the more specific elements described in this section.</p>
    <div type="div3" xml:id="NDPERSbp">
      <head>Basic Principles</head>
      <p>Information about people, places, organizations, and events, of whatever type, essentially comprises a series of statements or
        assertions relating to: <list rend="bulleted">
          <item>characteristics or <term>traits</term> which do not, by and large, change over time</item>
          <item>characteristics or <term>states</term> which hold true only at a specific time</item>
          <item><term>events</term> or incidents which may lead to a change of state or, less frequently, trait,</item>
          <item>external resources where other information on the subject can be found.</item>
        </list>
      </p>

      <p><soCalled>Characteristics</soCalled> or <soCalled>traits</soCalled> are typically independent of an individual's volition
        or action and can be either physical, such as hair and eye colour; or cultural, such as ethnicity and caste.
        The distinction is not entirely straightforward: gender and sex can be regarded as culturally determined with physical manifestations, 
        interpreted based on the social hierarchies of a time and place. Also the division of humanity into different <soCalled>races</soCalled>,
        formalized in the nineteenth century to organize a hierarchy of humanity on the basis of physical characteristics such as skin colour, hair type,
        and skull measurements, is now recognized as a colonialist social construct.<note place="bottom">For example, see Renato G. Mazzolini's historical survey 
          of European empires and their unstable constructions of race.<ptr target="#mazz-NDPERSbp"/></note> 
        When such a construct defined individuals' identities beyond their volition, the markup and documentation should reflect 
        this as a <emph>culturally-determined</emph> characteristic.</p>

      <p><soCalled>States</soCalled> include, for example, marital status, place of residence, and position or occupation. Such
        states have a definite duration, that is, they have a beginning and an end and are typically a consequence of the
        individual's own action or that of others.</p>

      <p><soCalled>Changes in state</soCalled> refer to life-changing or identity-changing events such as birth, marriage, or appointment
        to office; such events will normally be associated with a specific date or a fairly narrow date-range. Changes in states
        can also cause or be caused by changes in characteristics. Any statement or assertion about these aspects of a
        person's life will be based on some source, possibly multiple sources, possibly contradictory. Taking all this into
        account it follows that each such statement or assertion needs to be documentable, put into a time frame, and be
        relatable to other statements or assertions.</p>

      <p>The elements defined by the module described in this chapter may, for the most part, all be regarded as specializations
        of one or other of the above three classes. Generic elements for state, trait, and event are also defined: <specList>
          <specDesc key="state"/>
          <specDesc key="trait"/>
          <specDesc key="event"/>
          <specDesc key="att.locatable" atts="where"/>
          <specDesc key="listEvent"/>
          <!-- PB, 19-04-2012
    <specDesc key="listState"/>
    -->
        </specList>
      </p>

      <p>When developing a prosopography record of a named entity it is a common practice to refer explicitly to other resources, for example the Library of Congress Name Authority File, Virtual Internationl Authority File (VIAF), a gazetteer of places like Pleiades, or a printed book.
        <specList>
          <specDesc key="idno" atts="type"/>
        </specList>
      </p>
      <p>Here is a simple example:
      <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSbp-egXML-uu"><place xml:id="Rome">
               <placeName>Rome</placeName>
               <location>
                  <geo>41.891775 12.486137</geo>
               </location>
               <idno type="Pleiades">423025</idno>
               <note>capital of the Roman Empire</note>
            </place></egXML>
      </p>
    </div>
    <div type="div3" xml:id="NDPERSE">
      <head>The Person Element</head>
      <p>Information about a person, as distinct from references to a person, for example by name, is grouped together within a
          <gi>person</gi> element. Information about a group of people regarded as a single entity (for example <soCalled>the
          audience</soCalled> of a performance) may be encoded using the <gi>personGrp</gi> element. Note however that information
        about a group of people with a distinct identity (for example a named theatrical troupe) should be recorded using the
          <gi>org</gi> element described in section <ptr target="#ND-org"/> below.</p>
      <p>These elements may appear only within a <gi>listPerson</gi> element, which groups such descriptions together, and
        optionally also describes relationships amongst the people listed. <specList>
          <specDesc key="listPerson"/>
          <specDesc key="listRelation"/>
        </specList>
      </p>

      <p>One or more <gi>listPerson</gi> elements may be supplied
      within the <gi>standOff</gi> element (see <ptr target="#SASOstdf"/>) or, when used to list the participants in
      a linguistic interaction, within the <gi>particDesc</gi>
      (participant description) element in the <gi>profileDesc</gi>
      element of a TEI header. Like other forms of list, however,
      <gi>listPerson</gi> can also appear within the body of a text
      when the module defined by this chapter is included in a
      schema.</p>

      <p>The <att>type</att> attribute may be used to distinguish lists of people of different kinds where this is considered
        convenient:
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSE-egXML-xr">
          <standOff>
            <listPerson type="fictional">
              <person xml:id="person_FAS">
                <persName>Adam Schiff</persName>
                <note>District Attorney for <placeName>Manhattan</placeName> in
                  seasons 1 to 10 of <title>Law and Order</title>.</note>
              </person>
              <person xml:id="person_FML">
                <persName>Mike Logan</persName>
                <note><choice><abbr>NYPD</abbr><expan>New York Police
                  Department</expan></choice> Detective regularly appearing in
                  seasons 1 to 5 of <title>Law and Order</title> and seasons 5 to 7
                  of <title>Law and Order: Criminal Intent</title>.</note>
              </person>
              <person xml:id="person_FBS">
                <persName>Benjamin Stone</persName>
                <note>Executive Assistant District Attorney for
                  <placeName>Manhattan</placeName> in seasons 1 to 4 of <title>Law
                    and Order</title></note>
              </person>
              <person xml:id="person_FJM">
                <persName>Jack McCoy</persName>
                <note>An Executive Assistant District Attorney then District
                  Attorney for <placeName>Manhattan</placeName> in seasons 5 to 10
                  of <title>Law and Order</title>, in seasons 1, 9, 11, and 19 of
                  <title>Law and Order: Special Victims Unit</title>, and in
                  season 1 of <title>Law and Order: Trial by Jury</title>.</note>
              </person>
              <person xml:id="person_FJR">
                <persName>Jamie Ross</persName>
                <note>An Assistant District Attorney for
                  <placeName>Manhattan</placeName> in seasons 7 &amp; 8 of
                  <title>Law and Order</title>, and a defense attorney in seasons
                  10 &amp; 11, and then a judge in <title>Law and Order: Trial by
                    Jury</title>.</note>
              </person>
              <person xml:id="person_FJF">
                <persName>Joe Fontana</persName>
                <note><choice><abbr>NYPD</abbr><expan>New York Police
                  Department</expan></choice> Detective regularly appearing 
                  in seasons 15 &amp; 16 of <title>Law and Order</title>.</note>
              </person>
            </listPerson>
            <!-- == == -->
            <listPerson type="real">
              <person xml:id="person_RAS">
                <persName>Adam Schiff</persName>
                <note>U.S. Representative from California since 2013.</note>
              </person>
              <person xml:id="person_RML">
                <persName>Mike Logan</persName>
                <note>Gridiron football player for the Pittsburgh Steelers from
                  2001 to 2006.</note>
              </person>
              <person xml:id="person_RBS">
                <persName>Benjamin Stone</persName>
                <note>Michigan State Senator from 1968 to 1979.</note>
              </person>
              <person xml:id="person_RJM">
                <persName>Jack McCoy</persName>
                <note>Iowa State Representative from 1955 to 1959.</note>
              </person>
              <person xml:id="person_RJR">
                <persName>Jamie Ross</persName>
                <note>Broadway actor, with occasional forays into television,
                  from 1971 to roughly 2007.</note>
              </person>
              <person xml:id="person_RJF">
                <persName>Joe Fontana</persName>
                <note>A member of Canada’s House of Commons from 1987 to 2006,
                  and mayor of London, Ontario from 2010 to 2014.</note>
              </person>
            </listPerson>
          </standOff>
        </egXML>
      </p>

      <p>The <gi>person</gi> element carries several attributes. As a member of the classes <ident type="class">att.global.responsibility</ident>, <ident type="class">att.editLike</ident>, and <ident type="class">att.global.source</ident> class, it carries the usual attributes for providing details about the information recorded
        for that person, such as its reliability or source: <specList>
          <specDesc key="att.global.responsibility" atts="cert resp"/>
          <specDesc key="att.editLike" atts="evidence"/>
          <specDesc key="att.global.source" atts="source"/>
        </specList> In addition, a small number of very commonly used personal properties may be recorded using attributes
        specific to <gi>person</gi> and <gi>personGrp</gi>: <specList>
          <specDesc key="person" atts="role sex age"/>
          <specDesc key="personGrp"/>
        </specList></p>

      <p>These attributes are intended for use where only a small amount of data is to be encoded in a more or less normalized
        form, possibly for many person elements, for example when encoding basic facts about respondents to a questionnaire. When
        however a more detailed encoding is required for all kinds of information about a person, for example in a historical
        gazetteer, then it will be more appropriate to use the elements <gi>age</gi>, <gi>sex</gi> and others described elsewhere
        in this chapter.</p>

      <p>Note that the <att>age</att> attribute is not intended to record the person's age expressed in years, months, or other
        temporal unit. Rather it is intended to record into which age bracket, for the purposes of some analysis, the person
        falls. A simple (perhaps too simple to be useful) binary classification of age brackets would be <val>child</val> and
          <val>adult</val>. The actual age brackets useful to various projects are likely to be varied and idiosyncratic, and thus
        these Guidelines make no particular recommendation as to possible values. Instead, individual projects are recommended to
        define the values they use in their own customization file, using a declaration like the following: <egXML xmlns="http://www.tei-c.org/ns/Examples" xmlns:rng="http://relaxng.org/ns/structure/1.0" xml:id="NDPERSE-egXML-nb">
          <elementSpec ident="person" module="namesdates" mode="change">
            <attList>
              <attDef mode="replace" ident="age">
                <datatype>
                  <dataRef key="teidata.enumerated"/>
                </datatype>
                <valList type="closed">
                  <valItem ident="child">
                    <desc>less than 18 years of age</desc>
                  </valItem>
                  <valItem ident="adult">
                    <desc>18 to 65 years of age</desc>
                  </valItem>
                  <valItem ident="retired">
                    <desc>over 65 years of age</desc>
                  </valItem>
                </valList>
              </attDef>
            </attList>
          </elementSpec>
        </egXML> The above declaration, were it properly placed in a customization file, establishes that the <att>age</att>
        attribute of <gi>person</gi> has only three possible values, <val>child</val>, <val>adult</val>, and <val>retired</val>.
        For more information on customization see <ptr target="#MD"/>.</p>

      <p>The <gi>person</gi> element may contain many sub-elements, each specifying a different property of the person being
        described. The remainder of this section describes these more specific elements. For convenience, these elements are
        grouped into three classes, corresponding with the tripartite division outlined above: one for traits, one for states and
        one for events. Each class may contain specific elements for common types of biographical information, and contains a
        generic element for other, user-defined, types of information.</p>
      <p>All the elements in these three classes belong to the attribute class <ident type="class">att.datable</ident>, which
        provides the following attributes: <specList>
          <specDesc key="att.datable.w3c" atts="when notBefore notAfter from to"/>
        </specList> as discussed in <ptr target="#NDATTS"/> above.</p>

      <div type="div4" xml:id="NDPERSEpc">
        <head>Personal Characteristics</head>
        <p>The <ident type="class">model.persStateLike</ident> class contains elements describing physical or socially-constructed
          characteristics, traits, or states of a person. Members of the class comprise the following specific elements: <!-- MDH: commented out langKnown, as it's not actually in the class, and
      added state and trait. See http://purl.org/TEI/BUGS/3492947
      and discussion on Council list 2012-02-24. -->
          <specList>
            <specDesc key="affiliation"/>
            <specDesc key="age"/>
            <specDesc key="education"/>
            <specDesc key="faith"/>
            <specDesc key="floruit"/>
            <specDesc key="gender"/>
            <specDesc key="langKnowledge"/>
            <specDesc key="nationality"/>
            <specDesc key="occupation"/>
            <specDesc key="persName"/>
            <specDesc key="persona"/>
            <specDesc key="persPronouns"/>
            <specDesc key="residence"/>
            <specDesc key="sex"/>
            <specDesc key="socecStatus"/>
            <specDesc key="state"/>
            <specDesc key="trait"/>
          </specList> All, apart from <gi>langKnowledge</gi> and <gi>persona</gi>, allow content of ordinary prose containing
          phrase-level elements. <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-kf">
            <socecStatus ref="tag:projectname.org,2012:AB1">Status AB1 in the RG Classification scheme</socecStatus>
          </egXML>
          <!-- socecstatus has its own @code and @scheme attributes which need
exemplifying here too? -->
        </p>
        <p>Encoders should take particular care to be explicit about culturally determined concepts such as nationality, ethnicity, age, 
          or sex/gender system that influence their markup.<note place="bottom">Following Gayle Rubin’s influential theory, 
            <cit><quote>Every society also has a sex/gender system—a set of arrangements by which the biological raw material 
              of human sex and procreation is shaped by human, social intervention and satisfied in a conventional manner, 
              no matter how bizarre some of the conventions may be.</quote><ptr target="#rubin-NDPERSEpc"/></cit>.</note> For example, when recording
          personal age in different cultures, there may be different assumptions about the point from which age is reckoned. 
          Scholars face similar issues when marking sex and gender according to cultural systems from times and places not their own. 
          A statement of the practice adopted in a given encoding may usefully be provided in the <gi>editorialDecl</gi> element
          discussed in <ptr target="#HD53"/>.</p>

        <p>The <gi>langKnowledge</gi> element contains either paragraphs or a number of <gi>langKnown</gi> elements; it may take a
            <att>tags</att> attribute, which provides one or more standard codes or <soCalled>tag</soCalled>s for the languages.
          The <gi>langKnown</gi> element must have a <att>tag</att> attribute, which indicates the language with the same kind of
            <soCalled>language tag</soCalled>. These <soCalled>language tags</soCalled> are discussed in detail in <ptr target="#CHSH"/>.</p>
        <p>Furthermore, the <gi>langKnown</gi> element also has a <att>level</att> attribute to indicate the level of the person's
          competence in the language. It is thus possible either to say: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-cx">
            <langKnowledge tags="ff fr wo en"><p>Speaks fluent Fulani, Wolof, and French. Some knowledge of
              English.</p></langKnowledge>
          </egXML> or <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-kc">
            <langKnowledge>
              <langKnown level="fluent" tag="ff">Fulani</langKnown>
              <langKnown level="fluent" tag="wo">Wolof</langKnown>
              <langKnown level="fluent" tag="fr">French</langKnown>
              <langKnown level="basic" tag="en">English</langKnown>
            </langKnowledge>
          </egXML>
        </p>
        <p>The <gi>persona</gi> element may contain the same component elements as a <gi>person</gi> element. Its function is to
          document a distinct persona assumed by the <gi>person</gi> element containing it. A person, not necessarily fictional,
          may take on different personas at different times or in different situations, each persona having different personal
          characteristics, such as name, age, sex, gender etc. We distinguish a persona, which is a set of characteristics associated with
          one specific individual, from a role, which is a set of characteristics that many different people can assume. An actor
          does not change their persona when adopting a different role, but none of the personas associated with one person can
          properly be associated with another.</p>

          <p>The <gi>persPronouns</gi> element may be used to indicate
          the personal pronouns used, or assumed to be used, by the
          individual being described. It is common practice in email
          signatures and biographies, for people to include their
          preferred personal pronouns along with their name or handle.
          This allows transgender and gender variant people to express
          how they wish to be identified, without having to share
          their gender identity (though some do). Cisgender people
          have also adopted the practice, which normalizes the idea
          that a person's personal pronouns should not be inferred by
          their name, sex, gender, or gender presentation. The
          <gi>persPronouns</gi> element may be used either in
          transcribed content to encode a phrase used to indicate
          preferred personal pronouns, or may be used inside a
          <gi>person</gi> or <gi>persona</gi> element to indicate
          the associated pronouns.</p>

          <p>For example, the following entry from a hypothetical
          prosopography lists only the nominative case of the
          preferred pronouns as identified by Miss Major
          Griffin-Gracy, a historical figure.
          <!-- Source for the following <egXML>: -->
          <!-- <bibl xml:id="issue2010">
               <author>Clark, Ash</author>. 
               <title>Proposal: new element <gi>persPronouns</gi></title>
               <ptr target="https://github.com/TEIC/TEI/issues/2010#issue-647632134"/>.
               </bibl> -->
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-ff" source="#NONE">
            <person>
              <persName>
                <forename>Miss Major</forename>
                <surname>Griffin-Gracy</surname>
              </persName>
              <birth when="1940-10-25"/>
              <gender value="transWoman" evidence="selfIdentification">trans woman</gender>
              <persPronouns value="she" evidence="selfIdentification"/>
              <note>
                <p>Veteran of the Stonewall Riots. Founder of the
                Griffin-Gracy Educational Retreat and Historical
                Center (the House of GG). Activist and advocate for
                transgender and gender-nonconforming people of
                color.</p>
              </note>
            </person>
          </egXML>
          </p>
          <p>Personal pronouns often occur as part of the closer of an
          email, post, or other electronic communication.
          <!-- Syd &amp; Meaghan are working on replacing or
               augmenting following example with a transcription of
               https://www6.unca.edu/ohms/viewer.php?cachefile=APOH001.xml
          -->
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-oa" source="#TEI-L_b092ac32.2101">
      <div type="email">
        <opener><salute>Dear all,</salute></opener>
        <p>With apologies for length. I'm expanding a schema …</p>
        <!-- ... -->
        <closer>
          <lb/><persName>Diane Jakacki, Ph.D.</persName> 
          <lb/><roleName>Digital Scholarship Coordinator</roleName> 
          <lb/><roleName>Affiliate Faculty in Comparative &amp; Digital Humanities</roleName>
          <lb/><orgName>Bucknell University</orgName>
          <lb/><email>d…@….edu</email>
          <lb/>(<persPronouns>she/her/hers</persPronouns>)
          <lb/>
          <lb/><roleName>Principal Investigator</roleName>, 
          <lb/><orgName>LAB Cooperative</orgName> and <orgName>REED London Online</orgName>
          <lb/><roleName>Chair</roleName>, <orgName>ADHO Conference Coordinating Committee</orgName>
        </closer>      
      </div>
          </egXML></p>
          <p>The <gi>sex</gi> and <gi>gender</gi> elements each carry a <att>value</att> attribute to give values from a project-internal taxonomy, or an
          external standard. <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-lp">
            <sex value="F">female</sex>
            <gender value="W">woman</gender>
          </egXML> As elsewhere, these coded values may be used as an alternative to or normalization of the actual descriptive
          text contained in the element. The previous example might equally well be given as <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-ao" source="#UND">
            <sex value="F"/>
            <gender value="W"/>
          </egXML>
        </p>
        <p>The generic <gi>trait</gi> and <gi>state</gi> elements are also members of this class, <specList>
            <specDesc key="trait"/>
            <specDesc key="state"/>
          </specList> These elements can be used to extend the range of information supplied about an individual's personal
          characteristics. Either may contain an optional <gi>label</gi> element, used to provide a human-readable specification
          for the characteristic concerned and a description of the feature itself supplied within a <gi>desc</gi> element. These
          may be followed by or one or more <gi>p</gi> elements supplying more detailed information about the trait. In either
          case, these may be followed by one or more notes or bibliographical references. The <att>type</att>, <att>ref</att>, and
            <att>key</att> attributes may be used to indicate a fuller definition of the combination of feature and value. <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-ae">
            <trait type="ethnicity" key="alb">
              <label>Ethnicity</label>
              <desc>Ethnic Albanian.</desc>
            </trait>
          </egXML>
        </p>
        <!-- what does alb point to here? -->
        <!-- AC: I suppose it could point to the defintion of the country for example  -->

        <p>These elements are provided as a simple means of extending the set of descriptive features available in a standardized
          way. For example, there are no predefined elements for such features as eye or hair colour. If these are to be recorded,
          they may simply be added as new types of trait: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-lh">
            <trait type="physical">
              <label>eye colour</label>
              <desc>blue</desc>
            </trait>
            <trait type="physical">
              <label>hair colour</label>
              <desc>brown</desc>
            </trait>
          </egXML>
        </p>

        <p>If none of the more specialized elements listed above is appropriate, then a choice must be made between the two
          generic elements <gi>trait</gi> and <gi>state</gi>. If you wish to distinguish between characteristics that are
          generally perceived to be transient and those which are generally considered unchanging, use <gi>state</gi> for the
          former, and <gi>trait</gi> for the latter. It may also be helpful to note that traits are typically, but not
          necessarily, independent of the volition or action of the holder. If the distinction between state and trait is not
          considered relevant or useful, use <gi>state</gi>.</p>

        <p>The <gi>persName</gi> element is repeatable and can, like all TEI elements, take the attribute <att>xml:lang</att> to
          indicate the language of the content of the element, as well as a <att>type</att> attribute to indicate the type of
          name, whether a nickname, maiden or birth name, alternative form, etc. This is useful in cases where, for example, a
          person is known by a Latin name and also by any number of vernacular names, many or all of which may have claims to
            <soCalled>authenticity</soCalled>. In order to ensure uniformity, the method generally employed in the library world
          has been to accept the form found in some authority file, for example that of the American Library of Congress, as the
            <soCalled>base</soCalled> or <soCalled>neutral</soCalled> form. Feelings can run high on this matter, however, and
          people are often reluctant to accept as <soCalled>neutral</soCalled> an overtly foreign form of the name of their local
          saint or hero. Within the <gi>person</gi> element any number of variant forms of a name can be given, with no
          prioritization, and hence less likelihood of offence. The Icelandic scholar and manuscript collector Árni Magnússon, to
          give his name in standard modern Icelandic spelling, is known in Danish as Arne Magnusson, the form which he himself, as
          a long term resident of Denmark, generally used; there is also a Latinized form, Arnas Magnæus, which he used in his
          scholarly writings. All three forms can be given, and in any order: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-pt" xml:lang="mul">
            <person xml:id="ArnMag">
              <persName xml:lang="is">Árni Magnússon</persName>
              <persName xml:lang="da">Arne Magnusson</persName>
              <persName xml:lang="la">Arnas Magnæus</persName>
            </person>
          </egXML>
        </p>
        <p>At the other extreme, a person may be named periphrastically as in the following example: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-gc">
            <person xml:id="simon_son_of_richard2">
              <persName>Simon, son of Richard</persName>
              <residence><placeName><region>Essex</region></placeName></residence>
              <floruit notBefore="1219" notAfter="1223">1219-1223</floruit>
            </person>
          </egXML>
        </p>

        <p>Alternatively, the generic <gi>name</gi> element may be used for all of the naming components in a description. For
          example, a description of the first living held by the Icelandic clergyman and poet Jón Oddsson Hjaltalín might be
          tagged as follows: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-tb"><state type="office" from="1777-04-07" to="1780-07-12">
              <p>Jón's first living — which he apparently accepted rather reluctantly — was at <name type="place">Háls í
                  Hamarsfirði</name>, <name type="place">Múlasýsla</name>, to which he was presented on 7 April 1777. He was
                ordained the following month and spent three years at Háls, but was never happy there, due largely to the general
                penury in which he was forced to live — a recurrent theme throughout the early part of his life. In June of 1780
                the bishop recommended that Jón should <q xml:lang="da">promoveres til andet bedre kald, end det hand hidindtil
                  har havt</q>, and on 12 July it was agreed that he should exchange livings with <name type="person" ref="tag:projectname.org,2012:ThorJon">sr. Þórður Jónsson</name> at <name type="place">Kálfafell á Síðu</name>,
                  <name type="place">Skaftafellssýsla</name>.</p> <bibl>ÞÍ, Stms I.15, p. 733.</bibl> <bibl>ÞÍ, Stms I.17, p.
                102.</bibl> </state>
          </egXML>
        </p>

        <p>Similarly, the generic <gi>state</gi> or <gi>trait</gi> element may be used in preference to the more specific elements
          listed above: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-nf">
            <state type="nationality" notBefore="2002-01-15">
              <label>Nationality</label>
              <desc>American citizen from 15 January 2002.</desc>
            </state>
          </egXML> is the same as: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-bh">
            <nationality notBefore="2002-01-15">American citizen from 15 January 2002.</nationality>
          </egXML> or even: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpc-egXML-xt" xml:lang="und" source="#UND">
            <nationality notBefore="2002-01-15" key="US"/>
          </egXML>
        </p>

      </div>
      <div type="div4" xml:id="NDPERSEpe">
        <head>Personal Events</head>
        <p>This section describes <gi>event</gi>s that relate to one or more <gi>person</gi>s, while the section on
          <ref target="#NDEVNT">Events</ref> below describes the use of <gi>event</gi> in more general terms.</p>
        <p>Events in a person's history are not characteristics of an individual, but often cause an individual to gain such
          characteristics, or to enter a new state. Most such events, for example marriage, appointment, promotion, or a journey
          may be recorded using the generic element <gi>event</gi>, which may be grouped with <gi>listEvent</gi>, and has a
          content model similar to that of <gi>state</gi> and <gi>trait</gi>. The chief difference is that <gi>event</gi> can
          include a <gi>placeName</gi> element to identify the name of the place where the event occurred.</p>
        <p>Two particular events in a person's life, namely birth and death, are both ubiquitous and usually considered
          particularly important, and thus may be represented by specialized elements for the purpose: <specList>
            <specDesc key="birth"/>
            <specDesc key="death"/>
          </specList>
        </p>
        <p>In the following example, we give a brief summary of the wedding of Jane Burden to the English writer, designer, and
          socialist William Morris, encoded as an <gi>event</gi> element embedded within the <gi>person</gi> element used to
          record data about Morris, though we could equally well have embedded the <gi>event</gi> element within the
            <gi>person</gi> element for Burden, or have encoded it independently of either <gi>person</gi> element: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpe-egXML-vg">
            <person xml:id="WM">
              <!-- ... -->
              <event type="marriage" when="1859-04-26">
                <label>Marriage</label>
                <desc><name type="person" ref="#WM">William Morris</name> and <name type="person" ref="http://en.wikipedia.org/wiki/Jane_Burden">Jane Burden</name> were married at <name type="place">St
                    Michael's Church, Ship Street, Oxford</name> on <date when="1859-04-26">26 April 1859</date>. The wedding was
                  conducted by Morris's friend <name type="person" ref="#RWD">R. W. Dixon</name> with <name type="person" ref="#CBF">Charles Faulkner</name> as the best man. The bride was given away by her father, <name type="person" ref="#RB">Robert Burden</name>. According to the account that <name type="person" ref="http://en.wikipedia.org/wiki/Edward_Burne-Jones">Burne-Jones</name> gave <name type="person" ref="#JWM">Mackail</name>
                  <quote>M. said to Dixon beforehand <said>Mind you don't call her Mary</said> but he did</quote>. The entry in
                  the Register reads: <quote>William Morris, 25, Bachelor Gentleman, 13 George Street, son of William Morris decd.
                    Gentleman. Jane Burden, minor, spinster, 65 Holywell Street, d. of Robert Burden, Groom.</quote> The witnesses
                  were Jane's parents and Faulkner. None of Morris's family attended the ceremony. Morris presented Jane with a
                  plain gold ring bearing the London hallmark for 1858. She gave her husband a double-handled antique silver
                  cup.</desc>
                <bibl>J. W. Mackail, <title>The Life of William Morris</title>, 1899.</bibl>
              </event>
            </person>
            <person xml:id="RB">
              <persName>Robert Burden</persName>
            </person>
            <person xml:id="RWD">
              <persName>R.W. Dixon</persName>
            </person>
            <person xml:id="CBF">
              <persName>Charles Faulkner</persName>
            </person>
            <person xml:id="EBJ">
              <persName>
                <forename>Edward</forename>
                <surname>Burne-Jones</surname>
              </persName>
            </person>
            <person xml:id="JWM">
              <persName>J.W. Mackail</persName>
            </person>
          </egXML> In this example the <att>ref</att> attributes on the various <gi>name</gi> elements point either to an external
          source or to a <gi>person</gi> element within which other information about the person named may be found. As further
          discussed below (<ptr target="#NDPERSREL"/>), a <gi>relation</gi> element may then be used to link them in a more
          meaningful way: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpe-egXML-qk" source="#UND">
            <relation name="spouse" mutual="#WM #JBM"/>
            <relation name="friend" mutual="#WM #RWD"/>
            <relation name="parent" active="#RB" passive="#JBM"/>
          </egXML>
        </p>
        <p>As mentioned above, all these elements, both the specific and the generic, are members of the <ident type="class">att.datable</ident> attribute class, which means they can be limited in terms of time. The following encoding, for
          example, demonstrates that the person named David Jones changed his name in 1966 to David Bowie: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpe-egXML-wd" xml:lang="und">
            <person xml:id="DB">
              <persName notAfter="1966">David Jones</persName>
              <persName notBefore="1966">David Bowie</persName>
            </person>
          </egXML>
        </p>
        <p>All the generic elements are also members of the <ident type="class">att.global.responsibility</ident> and <ident type="class">att.editLike</ident> classes. These classes make available the attributes <att>cert</att>, to indicate
          the degree of certainty, <att>resp</att>, the agency responsible, <att>evidence</att>, the nature of the evidence used,
          and <att>source</att>, a pointer to a resource from which the information derives. In this way it is possible, in the
          case of multiple and conflicting sources, to provide more than one view of what happened, as in the following example:
            <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSEpe-egXML-tv">
            <event type="birth" resp="#XYZ" cert="high"><p>Born in <name type="place">Brixton</name> on 8 January
              1947.</p></event>
            <event type="birth" resp="#ABC" cert="low"><p>Born in <name type="place">Berkhamsted</name> on 9 January
              1947.</p></event>
          </egXML>
        </p>
      </div>
      <div type="div4" xml:id="NDPERSREL">
        <head>Personal Relationships</head>

        <p>When the module defined by this chapter is included in a schema, the following two elements may be used to document
          relationships amongst the persons, places, or organizations identified: <specList>
            <specDesc key="listRelation"/>
            <specDesc key="relation" atts="name active mutual passive"/>
          </specList> These elements are both members of the <ident type="class">att.typed</ident> class, from which they inherit
          the <att>type</att> and <att>subtype</att> attributes in the usual way. The value specified for either attribute on a
            <gi>listRelation</gi> element is implicitly applicable to all of its child <gi>relation</gi> elements, unless
          overridden.</p>
        <p>A <term>relationship</term>, as defined here, may be any kind of describable link between specified participants. A
          participant (in this sense) might be a person, a place, or an organization. In the case of persons, therefore, a
          relationship might be a social relationship (such as employer/employee), a personal relationship (such as sibling,
          spouse, etc.) or something less precise such as <q>possessing shared knowledge</q>. A relationship may be
            <term>mutual</term>, in that all the participants engage in it on an equal footing (for example the <q>sibling</q>
          relationship); or it may not be if participants are not identical with respect to their role in the relationship (for
          example, the <q>employer</q> relationship). For non-mutual relationships, only two kinds of role are currently
          supported; they are named <term>active</term> and <term>passive</term>. These names are chosen to reflect the fact that
          non-mutual relations are <term>directed</term>, in the sense that they are most readily described by a transitive verb,
          or a verb phrase of the form <mentioned>is X of</mentioned> or <mentioned>is X to</mentioned>. The subject of the verb
          is classed as <term>active</term>; the direct object of the verb, or the object of the concluding preposition, as
            <term>passive</term>. Thus parents are <q>active</q> and children <q>passive</q> in the relationship <q>parent</q>
          (interpreted as <mentioned>is parent of</mentioned>); the employer is <q>active</q>, the employee <q>passive</q>, in the
          relationship <mentioned>employs</mentioned>. These relationships can be inverted: parents are <q>passive</q> and
          children <q>active</q> in the relationship <mentioned>is child of</mentioned>; similarly <q>works for</q> inverts the
          active and passive roles of <q>employs</q>.</p>
        <p>For example: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDPERSREL-egXML-ja" source="#UND"><listRelation>
              <relation name="parent" active="#P1 #P2" passive="#P3 #P4"/>
              <relation name="spouse" mutual="#P1 #P2"/>
              <relation type="social" name="employer" active="#P1" passive="#P3 #P4"/>
            </listRelation></egXML> This example defines the relationships amongst a number of people not further described here;
          we assume however that each person has been allocated an identifier such as <val>P1</val>, <val>P2</val>, etc. which can
          be linked to using references such as <val>#P1</val>, <val>#P2</val>, etc. Then the above set of <gi>relation</gi>
          elements describe the following three relationships amongst the people referenced: <list rend="bulleted">
            <item>P1 and P2 are parents of P3 and P4.</item>
            <item>P1 and P2 are linked in a mutual relationship called <q>spouse</q>—that is, P2 is the spouse of P1, and P1 is
              the spouse of P2.</item>
            <item>P1 has the social relationship <q>employer</q> with respect to P3 and P4.</item>
          </list></p>
        <p>Relationships within places and organizations are further discussed in the relevant sections below. Relationships
          between for example organizations and places, or places and persons, may be handled in exactly the same way.
          <!-- examples plz! -->
        </p>
      </div>
    </div>

    <div xml:id="ND-org">
      <head>Organizational Data</head>
      <p>The <gi>org</gi> and <gi>listOrg</gi> elements are used to store data about an organization such as its preferred name,
        its locations, or key persons within it. <specList>
          <specDesc key="org"/>
          <specDesc key="listOrg"/>
        </specList> These elements are intended to be used in a way analogous to the <gi>place</gi> and <gi>person</gi> elements
        discussed elsewhere in this chapter, that is to provide a unique wrapper element for information about an entity, distinct
        from references to that entity which are typically encoded using a naming element such as <tag>name type="org"</tag> or
          <gi>orgName</gi>. The content of a naming element will represent the way an organization is named in a given context;
        the content of an <gi>org</gi> represents the information known to the encoder about that organization, gathered together
        in a single place, and independent of its textual realization.</p>
      <p>An organization is not the same thing as a list or group of people because it has an identity of its own. That identity
        may be expressed solely in the existence of a name (for example <q>The Scythians</q>), but is likely to consist in the
        combination of that name with a number of events, traits, or states which are considered to apply to the organization
        itself, rather than any of its members. For example, a sports team might be described in terms of its membership (a
          <gi>listPerson</gi>), its fixtures (a <gi>listPlace</gi>), its geographical affiliation (a <gi>placeName</gi>), or any
        combination of these. It will also have properties which may be used to categorize it in some way such as the kind of
        sport played, whether the team is amateur or professional, and so on: these are probably best dealt with by means of the
          <att>type</att> attribute. However, it is the name of the sports team alone which identifies it.</p>
      <p>The content model for <gi>org</gi> permits any mixture of generic <gi>state</gi>, <gi>trait</gi>, or <gi>event</gi>
        elements: the presence of the <gi>orgName</gi> element described in <ptr target="#NDORG"/> is however strongly
        recommended.</p>
      <p>In other respects, the <gi>org</gi> element is used in much the same way as <gi>place</gi> or <gi>person</gi>. An
        organization may have different names at different times: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="ND-org-egXML-xc"><org xml:id="fab4">
            <orgName notAfter="1960">The Silver Beetles</orgName>
            <orgName from="1960-08">The Beatles</orgName>
          </org></egXML>
      </p>
      <p>The names of the people making up an organization can also change over time, (if they are known at all). For example:
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="ND-org-egXML-di"><org xml:id="FAB4">
            <orgName notAfter="1960">The Silver Beetles</orgName>
            <orgName notBefore="1960">The Beatles</orgName>
            <state type="membership" from="1960-08" to="1962-05">
              <desc>
                <persName>John Lennon</persName>
                <persName>Paul McCartney</persName>
                <persName>George Harrison</persName>
                <persName>Stuart Sutcliffe</persName>
                <persName>Pete Best</persName>
              </desc>
            </state>
            <state type="membership" notBefore="1963">
              <desc>
                <persName>John Lennon</persName>
                <persName>Paul McCartney</persName>
                <persName>George Harrison</persName>
                <persName>Ringo Starr</persName>
              </desc>
            </state>
          </org></egXML>
      </p>
      <p>An <gi>org</gi> may contain subordinate <gi>org</gi>s: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="ND-org-egXML-vq"><org xml:id="OUCS">
            <orgName>Oxford University Computing Services</orgName>
            <org xml:id="OUCSisg">
              <orgName>Information and Support Group</orgName>
            </org>
            <org xml:id="OUCSig">
              <orgName>Infrastructure Group</orgName>
              <org xml:id="OUCSig.nt">
                <orgName>Networking Team</orgName>
              </org>
              <org xml:id="OUCSig.sdt">
                <orgName>System Development Team</orgName>
              </org>
            </org>
            <org xml:id="OUCSltg">
              <orgName>Learning Technologies Group</orgName>
            </org>
          </org>
        </egXML>
      </p>
      <p>The following example demonstrates the use of the <gi>listOrg</gi> element to group together a number of <gi>org</gi>
        elements, each of which is defined solely by means of an informal description, itself containing other names. <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="ND-org-egXML-it">
          <p>The TEI institutional hosts are: <listOrg>
              <org xml:id="bu">
                <orgName>Brown University</orgName>
                <desc>The host contribution is made jointly by the <name type="project">Brown University Women Writers
                    Project</name> and the <orgName>Brown University Library's Center for Digital Initiatives</orgName>.</desc>
              </org>
              <org xml:id="na">
                <orgName>Nancy</orgName>
                <desc>Hosting is provided by a group of institutions located in Nancy, France, coordinated by
                    <orgName>Loria</orgName> and also including <orgName>ATILF</orgName> and <orgName>INIST</orgName>.</desc>
              </org>
              <org xml:id="ou">
                <orgName>Oxford University</orgName>
                <desc>Hosting is provided by the <orgName>Research Technologies Service</orgName> at <orgName>Oxford University
                    Computing Services</orgName>.</desc>
              </org>
              <org xml:id="uv">
                <orgName>University of Virginia</orgName>
                <desc>Virginia's host support comes jointly from the <orgName>Institute for Advanced Technology in the
                    Humanities</orgName> and the <orgName>University of Virginia Library</orgName>.</desc>
              </org>
            </listOrg>
          </p></egXML> In a more elaborated version of this example, the organizational names tagged using <gi>orgName</gi> might
        be linked using the <att>key</att> or <att>ref</att> attribute to a unique <gi>org</gi> element elsewhere.</p>
    </div>

    <div type="div2" xml:id="NDGEOG">
      <head>Places</head>

      <p>In <ptr target="#NDPLAC"/> we discuss various ways of naming places such as towns, countries, etc. In much the same way
        as these Guidelines distinguish between the encoding of names for people and the encoding of other data about people, so
        they also distinguish between the encoding of names for places and the encoding of other data about places. In this
        section we present elements which may be used to record in a structured way data about places of any kind which might be
        named or referenced within a text. Such data may be useful as a way of normalizing or standardizing references to
        particular places, as the raw material for a gazetteer or similar reference document associated with a particular text or
        set of texts, or in conjunction with any form of geographical information system.</p>
      <p>The following elements are provided for this purpose: <specList>
          <specDesc key="listPlace"/>
          <specDesc key="place"/>
        </specList>
      </p>

      <p>The <ident type="class">model.placeStateLike</ident> class contains elements describing characteristics of a place which
        have a definite duration, such as its name. Any member of the <ident type="class">model.placeNamePart</ident> may be used
        for this purpose, since a <gi>place</gi> element will usually contain at least one, and possibly several,
          <gi>placeName</gi>-like elements indicating the names associated with it, by different people, in different languages,
        or at different times.</p>

      <p>For example, the modern city of Lyon in France was in Roman times known as Lugdunum. Although the modern and the Roman
        city are not physically co-extensive, they have significant areas which overlap, and we may therefore wish to regard them
        as the same place, while supplying both names with an indication of the time period during which each was current.</p>

      <p>Places usually have physical locations in addition to names. As with the example of Lyon, the precise
        geographic location and extent of a place may change over time, and so locations like names may need to be
        qualified with indications of the time period to which they apply. Locations may be
        specified in a number of ways: as a set of coordinates defining a point or an area on the
        surface of the earth, or by providing a description of how the place may be found, usually
        in terms of other place names. For example, we can identify the location of the Canadian
        city of London, either by specifying its latitude and longitude, or by specifying that we
        mean the city called London located in the province called Ontario within the country called
        Canada.</p>
      
      <p>In addition we may wish to supply a brief characterization of the place identified, for example to state that it is a
        city, an administrative area such as a country, or a landmark of some kind such as a monument or a battlefield. If our
        typology of places is simple, the open ended <att>type</att> attribute is the easiest way to represent it: so we might say
          <tag>place type="city"</tag>, <tag>place type="battlefield"</tag> etc.</p>


      <p>Within the <gi>place</gi> element, the following elements may be used to provide more information about specific aspects
        of the place in a structured form: <specList>
          <specDesc key="placeName"/>
          <specDesc key="location"/>
        </specList>
      </p>
      <div xml:id="NDGEOGva">
        <head>Varieties of Location</head>
        <p>A location may be specified in one or more of the following ways: <list rend="numbered">
            <item>by supplying a string representing its coordinates in some standardized way within a <gi>geo</gi> element, as
              shown below</item>
            <item>by supplying one or more place name component elements (e.g. <gi>country</gi>, <gi>settlement</gi> etc.) to
              place it within a geo-political context</item>
            <item>by supplying a postal address, e.g. using the <gi>address</gi> element</item>
            <item>by supplying a brief textual description, e.g. using the <gi>desc</gi> element</item>
            <item>by using a non-TEI XML vocabulary such as the Geography Markup Language</item>
          </list> We give examples of all of these methods in the remainder of this section.</p>

        <p>The simplest method of specifying a location is by means of its geographic coordinates, supplied within the
            <gi>geo</gi> element. This may be used to supply any kind of positional information, using one of the many different
          geodetic systems available. Such systems vary in their format, in their scope or coverage, and more fundamentally in the
          reference frame (the <soCalled>datum</soCalled>) used for the coordinate system itself. The default recommended by these
          Guidelines is to supply a string containing two real numbers separated by whitespace, of which the first indicates
          latitude and the second longitude according to the 1984 World Geodetic System (WGS84); this is the system currently used
          by most GPS applications which TEI users are likely to encounter.<note place="bottom">See <ptr target="http://earth-info.nga.mil/GandG/wgs84/index.html"/>. The most recent revision of this standard is known as
            the Earth Gravity Model 1996.</note>We might therefore record the information about the place known as
            <soCalled>Lyon</soCalled> as follows: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGva-egXML-pt">
            <place xml:id="LYON1" type="city">
              <placeName notBefore="1400">Lyon</placeName>
              <placeName notAfter="0640">Lugdunum</placeName>
              <location><geo>45.769559 4.834843</geo></location>
            </place>
          </egXML>
        </p>

        <p>Identifying Lyon by its geo-political status as a settlement within a country forming part of a larger political
          entity, we might represent the same <soCalled>place</soCalled> as follows: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGva-egXML-lp" xml:lang="und">
            <place xml:id="LYON2">
              <placeName notBefore="1400">Lyon</placeName>
              <placeName notAfter="0640">Lugdunum</placeName>
              <location>
                <bloc>EU</bloc>
                <country>France</country>
              </location>
            </place>
          </egXML> Elements such as <gi>bloc</gi> are specialized forms of <gi>placeName</gi>, as discussed in <ptr target="#NDPLGU"/>.</p>
        <p>We may use the same procedure to represent the location of smaller places, such as a street or even an individual
          building: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGva-egXML-mx"><place xml:id="BGbldg" type="building">
              <placeName>Brasserie Georges</placeName>
              <location>
                <country key="FR"/>
                <settlement type="city">Lyon</settlement>
                <district type="arrondissement">IIème</district>
                <district type="quartier">Perrache</district>
                <placeName type="street"><num>30</num>, Cours de Verdun</placeName>
              </location>
            </place></egXML> Note the use of the <att>type</att> attribute to categorize more precisely both the kind of place
          concerned (a building) and the kind of name used to locate it, for example by characterizing the generic
            <gi>district</gi> as an <soCalled>arrondissement</soCalled>, or a <soCalled>quartier</soCalled>.</p>

        <p>We may also treat imaginary places in the same way: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGva-egXML-ao"><place xml:id="Atl" type="imaginary">
              <placeName>Atlantis</placeName>
              <location>
                <offset>beyond</offset>
                <placeName>The Pillars of <persName>Hercules</persName></placeName>
              </location>
            </place></egXML></p>

        <p>A <gi>location</gi> sometimes resembles a set of instructions for finding a place: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGva-egXML-hw"><place xml:id="MYF">
              <placeName notAfter="1969">Yasgur's Farm</placeName>
              <placeName notBefore="1969">Woodstock Festival Site</placeName>
              <location>
                <measure>one mile</measure>
                <offset>north west of</offset>
                <settlement>Bethel</settlement>
                <region>New York</region>
              </location>
            </place></egXML>
        </p>
        <p>The element <gi>address</gi> may also be used to identify a location in terms of its postal or other address: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGva-egXML-zn"><place xml:id="locCA" type="cemetery">
              <placeName>Protestant Cemetery</placeName>
              <placeName type="official" xml:lang="it">Cimitero Acattolico</placeName>
              <location type="geopolitical">
                <country>Italy</country>
                <settlement>Rome</settlement>
                <district>Testaccio</district>
              </location>
              <location type="address">
                <address>
                  <addrLine>Via Caio Cestio, 6</addrLine>
                  <addrLine>00153 Roma</addrLine>
                </address>
              </location>
            </place></egXML> When, as here, the same place is given multiple locations, the <att>type</att> attribute should be
          used to characterize the kind of location, as a means of indicating that these are alternative ways of identifying the
          same place, rather than that the place is spread across several locations.</p>

        <p>The <gi>location</gi> element may thus identify a place to a greater or lesser degree of precision, using a variety of
          means: a name, a set of names, or a set of coordinates. The <gi>geo</gi> element introduced earlier is by default
          understood to supply a value expressed in a specific (and widely used) notation. If a <gi>location</gi> contains more
          than one <gi>geo</gi>, this is interpreted as being really the same place in the universe, but with different systems
          used to refer to it. If there is a lack of consensus about the location (of, for example, Camelot), more than one
            <gi>location</gi> should be used, each with its own <gi>geo</gi>.</p>

        <p>By default, the content of <gi>geo</gi> is interpreted as following the standard known as the World Geodetic System
          (WGS). This may be modified, however, in two ways.</p>
        <p>Firstly, the content of the <gi>geo</gi> element can be expressed some other way, that is, according to some different
          geodetic system. The <att>decls</att> attribute is used point to a <gi>geoDecl</gi> element defined in the document
          header, which describes a different datum.</p>
        <p>Secondly, the element <gi>geo</gi> may be redefined to contain markup from a different XML vocabulary which is
          specifically designed to represent this kind of information. This technique is used throughout these Guidelines where
          specialized markup is required, for example to embed mathematical expressions or vector graphics, and is further
          described and exemplified in <ptr target="#MDlite"/>. For geographic information, suitable non-TEI vocabularies include:
            <list rend="bulleted">
            <item> the OpenGIS Geography Markup Language (GML) being defined by the OGC<note place="bottom">The OGC is an
                international voluntary consensus standards organization whose members maintain the Geography Markup Language
                standard. The OGC coordinates with the ISO TC 211 standards organization to maintain consistency between OGC and
                ISO standards work. GML is also an ISO standard (<ref target="#ISO-19136">ISO 19136:2007</ref>).</note>
            </item>
            <item> the Keyhole Markup Language (KML) used by Google Maps<note place="bottom">See <ptr target="https://developers.google.com/kml/documentation/"/></note>
            </item>
          </list>
        </p>
        <p>In the following example, we have defined the location of the place <soCalled>Lyon</soCalled> using GML and indicated
          the two names associated with it at different times: <egXML xmlns="http://www.tei-c.org/ns/Examples" xmlns:gml="http://www.opengis.net/gml" xml:id="NDGEOGva-egXML-my" valid="feasible">
            <place xml:id="locLyon" type="city">
              <placeName notBefore="1400">Lyon</placeName>
              <placeName notAfter="0640">Lugdunum</placeName>
              <location>
                <geo>
                  <gml:Polygon>
                    <gml:exterior>
                      <gml:LinearRing> 45.256 -110.45 46.46 -109.48 43.84 -109.86 45.8 -109.2 45.256 -110.45 </gml:LinearRing>
                    </gml:exterior>
                  </gml:Polygon>
                </geo>
              </location>
            </place></egXML>
        </p>

        <p>A <gi>bibl</gi> element may be used within <gi>location</gi> to indicate the source of the location information.</p>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGva-egXML-vp">
          <location>
            <geo>53.226658 -0.541254</geo>
            <bibl><title>Roman Inscriptions of Britain</title>, <idno>262</idno></bibl>
          </location>
        </egXML>

      </div>
      <div xml:id="NDGEOGmp">
        <head>Multiple Places</head>
        <p>A place may contain other places. This containment relation can be directly modelled in XML: thus we can say that the
          towns of Vilnius and Kaunas are both in a place called Lithuania (or Lietuva) as follows: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGmp-egXML-ea" xml:lang="mul"><place xml:id="locLith">
              <country>Lithuania</country>
              <country xml:lang="lt">Lietuva</country>
              <place>
                <settlement>Vilnius</settlement>
              </place>
              <place>
                <settlement>Kaunas</settlement>
              </place>
            </place></egXML>
        </p>
        <p>This does not, of course, imply that Vilnius and Kaunas are the only places constituting Lithuania; only that they are
          within it. A separate <gi>place</gi> element may indicate that it is a part of Lithuania by supplying a
            <gi>relation</gi> element, as discussed below (<ptr target="#place-rel"/>).</p>

        <p>As a further example, the islands of Mauritius, Réunion, and Rodrigues are collectively known as the Mascarene Islands.
          Grouped together with Mauritius there are also several smaller offshore islands, with rather picturesque French names.
          These offshore islands do not however constitute an identifiable place as a whole. One way of representing this is as
          follows: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGmp-egXML-cb"><place xml:id="locMascarenes" type="islandGroup">
              <placeName>Mascarene Islands</placeName>
              <placeName>Mascarenhas Archipelago</placeName>
              <place type="island">
                <placeName>Mauritius</placeName>
                <listPlace type="offshoreIslands">
                  <place>
                    <placeName>La roche qui pleure</placeName>
                  </place>
                  <place>
                    <placeName>Île aux cerfs</placeName>
                  </place>
                </listPlace>
              </place>
              <place type="island">
                <placeName>Rodrigues</placeName>
              </place>
              <place type="island">
                <placeName>Réunion</placeName>
              </place>
            </place></egXML>
        </p>
        <p>Here is a more complex example, showing the variety of names associated at different times and in different languages
          with a set of hierarchically grouped places—the settlement of Carmarthen Castle, within the town of Carmarthen, within
          the administrative county of Carmarthenshire, Wales. <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGmp-egXML-qn" xml:lang="mul">
            <place xml:id="wales" type="country">
              <placeName xml:lang="cy">Cymru</placeName>
              <placeName xml:lang="en">Wales</placeName>
              <placeName xml:lang="la">Wallie</placeName>
              <placeName xml:lang="la">Wallia</placeName>
              <placeName xml:lang="fro">Le Waleis</placeName>
              <place xml:id="carmarthenshire" type="region">
                <region type="county" xml:lang="en" notBefore="1284">Carmarthenshire</region>
                <place xml:id="carmarthen" type="settlement">
                  <placeName xml:lang="en">Carmarthen</placeName>
                  <placeName xml:lang="la" notBefore="1090" notAfter="1300">Kaermerdin</placeName>
                  <placeName xml:lang="cy">Caerfyrddin</placeName>
                  <place xml:id="carmarthen_castle" type="castle">
                    <settlement>castle of Carmarthen</settlement>
                  </place>
                </place>
              </place>
            </place>
          </egXML>
        </p>
        <p>As noted previously, <gi>country</gi>, <gi>region</gi>, and <gi>settlement</gi> are all specializations of the generic
            <gi>placeName</gi> element; they are not specializations of the <gi>place</gi> element. If it is desired to
          distinguish amongst kinds of <emph>place</emph> this can only be done by means of the <att>type</att> attribute as in
          the above example.</p>

        <p>This use of multiple <gi>place</gi> elements should be distinguished from the (possibly simpler) case where a number of
          places with some property in common are being grouped together for convenience, for example, in a gazetteer. The
            <gi>listPlace</gi> element is provided as a means of grouping places together where there is no implication that the
          grouped elements constitute a distinct place. For example: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGmp-egXML-wb"><place xml:id="pl-c-H" type="county">
              <placeName>Herefordshire</placeName>
              <listPlace type="villages">
                <place xml:id="pl-v-AD">
                  <placeName>Abbey Dore</placeName>
                  <location>
                    <geo>51.969604 -2.893146</geo>
                  </location>
                </place>
                <place xml:id="pl-v-AB">
                  <placeName>Acton Beauchamp</placeName>
                </place>
                <!-- ... -->
              </listPlace>
              <listPlace type="towns">
                <place xml:id="pl-t-H">
                  <placeName>Hereford</placeName>
                </place>
                <place xml:id="pl-t-L">
                  <placeName>Leominster</placeName>
                </place>
                <!-- ...  -->
              </listPlace>
            </place></egXML>
        </p>
      </div>
      <div xml:id="NDGEOGste">
        <head>States, Traits, and Events</head>

        <p>There are many different kinds of information which it might be considered useful to record for a place in addition to
          its name and location, and the categories selected are likely to be very project-specific. As with persons therefore
          these Guidelines make no claim to comprehensiveness in this context. Instead, the generic <gi>state</gi>,
          <gi>trait</gi>, and <gi>event</gi> elements defined by this module should be used. Each of these may be customized for
          particular needs by means of their <att>type</att> attribute. These are complemented by a small number of predefined
          elements of general utility: <specList>
            <specDesc key="population"/>
            <specDesc key="climate"/>
            <specDesc key="terrain"/>
          </specList>
        </p>

        <p>These are all specializations of the generic <gi>trait</gi> element. This element may be used for almost any kind of
          event in the life of a place; no specialized version of this element is proposed, nor do we attempt to enumerate the
          possible values which might be appropriate for the <att>type</att> attribute on any of these generic elements.</p>
        <p>Here is an example, showing how the specific and generic elements may be combined: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGste-egXML-oe">
            <place xml:id="IS">
              <placeName xml:lang="en">Iceland</placeName>
              <placeName xml:lang="is">Ísland</placeName>
              <location><geo>65.00 -18.00</geo></location>
              <terrain>
                <desc>Area: 103,000 sq km</desc>
              </terrain>
              <state type="governance" notBefore="1944">
                <p>Constitutional republic</p>
              </state>
              <state type="governance" notAfter="1944">
                <p>Part of the kingdom of <placeName key="DK">Denmark</placeName></p>
              </state>
              <event type="governance" when="1944-06-17">
                <desc>Iceland became independent on 17 June 1944.</desc>
              </event>
              <state type="governance" from="1944-06-17">
                <p>An independent republic since June 1944</p>
              </state> </place>
          </egXML>
        </p>

        <p>In the following example, the <gi>climate</gi> example is used to provided a detailed discussion of this particular
          aspect of the information available about a particular place: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGste-egXML-mj">
            <place xml:id="greece">
              <placeName>Greece</placeName>
              <climate>
                <desc>Greece's climate is divided into three well defined classes:</desc>
                <climate>
                  <label>Mediterranean</label>
                  <desc>It features mild, wet winters and hot, dry summers. Temperatures rarely reach extremes, although snowfalls
                    do occur occasionally even in <placeName>Athens</placeName>, <placeName>Cyclades</placeName> or
                      <placeName>Crete</placeName> during the winter.</desc>
                </climate>
                <climate>
                  <label>Alpine</label>
                  <desc>It is found primarily in <placeName><offset>Western</offset> Greece</placeName>
                      (<placeName>Epirus</placeName>, <placeName><offset>Central</offset> Greece</placeName>,
                      <placeName>Thessaly</placeName>, <placeName><offset>Western</offset> Macedonia</placeName> as well as
                    central parts of <placeName>Peloponnesus</placeName> like <placeName>Achaea</placeName>,
                      <placeName>Arcadia</placeName> and parts of <placeName>Laconia</placeName> where the Alpine range pass
                    by)</desc>
                </climate>
                <climate>
                  <label>Temperate</label>
                  <desc>It is found in <placeName><offset>Central</offset> and <offset>Eastern</offset> Macedonia</placeName> as
                    well as in <placeName>Thrace</placeName> at places like <placeName>Komotini</placeName>,
                      <placeName>Xanthi</placeName> and <placeName><offset>northern</offset> Evros</placeName>. It features cold,
                    damp winters and hot, dry summers.</desc>
                </climate>
              </climate>
            </place>
          </egXML>
          <!--  adapted from http://greekinfo.wordpress.com/ -->
        </p>
        <p>As the above example shows, <gi>state</gi> and <gi>trait</gi> elements, and others of the same class, can be nested
          hierarchically within each other. When this is done, values for the <att>type</att> attribute are to be understood as
          cumulatively inherited, as elsewhere in the TEI scheme (for example on <gi>category</gi> or <gi>linkGrp</gi>). In the
          following example, the outermost <gi>population</gi> element concerns the squirrel population between the dates given.
          This is then broken down into red and gray squirrel populations, and within that into male and female: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDGEOGste-egXML-ip">
            <population type="squirrel" notBefore="1901" notAfter="1902-01-11" resp="#strabo">
              <population type="red" when="1901-01-10">
                <population type="female"><desc>12</desc></population>
                <population type="male"><desc>15</desc></population>
              </population>
              <population type="gray" when="1902-01-10" cert="high">
                <population type="female"><desc>23</desc></population>
                <population type="male" cert="low" resp="#biber"><desc>45</desc></population>
              </population>
            </population>
          </egXML> The dating and responsibility attributes here behave slightly differently from the <att>type</att> attribute:
          responsibility is not an additive property, and therefore an element either states it explicitly, or inherits it from
          its nearest ancestor. Dating is slightly different again, in that a child element may specify a date more precisely than
          its parent, as in the example above.</p>

        <p>An <gi>event</gi> may be related to other named entities, and thus may appear within
          an <gi>org</gi>, <gi>person</gi>, <gi>personGrp</gi>, <gi>persona</gi>, or <gi>place</gi>
          element as well as within a <gi>listEvent</gi> or another <gi>event</gi>.</p>
        
      </div>

      <div xml:id="place-rel">
        <head>Relations Between Places</head>

        <p>The <gi>relation</gi> element may also be used to express relationships of various kinds between places, or between
          places and persons, in much the same way as it is used to express relationships between persons alone. Returning to the
          Mascarene Islands example cited above, we might define the island group and its constituents separately, but indicate
          the relationship by means of a <gi>relation</gi> element: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="place-rel-egXML-ip">
            <listPlace>
              <place xml:id="MASC">
                <placeName>Mascarene islands</placeName>
                <placeName>Mascarenhas Archipelago</placeName>
              </place>
              <place xml:id="MRU">
                <placeName>Mauritius</placeName>
                <!-- ... -->
              </place>
              <place xml:id="ROD">
                <placeName>Rodrigues</placeName>
              </place>
              <place xml:id="REN">
                <placeName>Réunion</placeName>
              </place>
              <relation name="contains" active="#MASC" passive="#ROD #MRU #REN"/>
            </listPlace>
          </egXML>
        </p>

        <p>This <soCalled>stand-off</soCalled> style of representation has the advantage that we can now also represent the fact
          that a place may be a <q>part of</q> more than one other place; for example, Réunion is part of France, as well as part
          of the Mascarenes. If we add a declaration for France to the list above: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="place-rel-egXML-na">
            <place type="country" xml:id="FRA">
              <placeName>France</placeName>
            </place>
          </egXML> we can now model this dual allegiance by means of a <gi>relation</gi> element: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="place-rel-egXML-da" xml:lang="und" source="#UND">
            <relation name="partOf" active="#REN" passive="#FRA #MASC"/>
          </egXML>
        </p>

        <!-- material on oxford colleges to go here -->

        <!-- next div3 was originally proposed by MJD workgroup but never
properly elaborated or tested LB 2012-06-15 -->

        <!--
<div3 >
<head>Assertions</head>
<p>In order to allow even greater flexibility we intend to propose a new element, tentatively called <gi>assert</gi>,
which may be used for making assertions about characteristics, states
and changes in states and associating these assertions with
bibliographical records, notes and so on.
<specList>
<specDesc key="assert"/>
</specList>
Using this mechanism allows one for example to date the assertions as distinct from the things
being asserted:
<egXML xmlns="http://www.tei-c.org/ns/Examples">
<assert resp="#XYZ" cert="high" notBefore="1999">
    <birth dateValue="1947-01-08">Born in <name type="place">Brixton</name> on 8 January 1947.</birth>
</assert>
<assert resp="#ABC" cert="low" notAfter="1999">
    <birth dateValue="1947-01-09">Born in <name type="place">Berkhamsted</name> on 9 January 1947.</birth>
</assert>
</egXML>
In this example it can be seen that up until 1999 it was believed,
on the authority of ABC, that the individual in question was born in
Berkhamsted on the 9th of January 1947, whereas after 1999 XYZ's
assertion that he had in fact been born in Brixton on the 8th of
January was generally accepted. A bibliographical reference or note can
be added to provide documentation or further explanation.</p>

<p>We also propose a grouping element, <gi>assertGrp</gi> (for <soCalled>assertion group</soCalled>).
<specList>
<specDesc key="assertGrp"/>
</specList>
The <gi>assertGrp</gi> element can serve as a wrapper around several elements, as in the following example:
<egXML xmlns="http://www.tei-c.org/ns/Examples">
<assertGrp type="causal">
    <occupation to="2006-06-13">Manuscript scholar</occupation>
    <residence to="2006-06-13">
        <placeName>
            <settlement type="city">Copenhagen</settlement>
            <country>Denmark</country>
        </placeName>
    </residence>
    <persEvent>
        <label>Nervous breakdown</label>
        <date dateValue="2006-06-14">14 June 2006</date>
    </persEvent>
    <occupation from="2006-06-15">Bee-keeper</occupation>
    <residence from="2006-06-15">
        <placeName>
            <settlement type="village">Dobarsko</settlement>
            <country>Bulgaria</country>
        </placeName>
    </residence>
</assertGrp>
</egXML>
In this example an explicit causal link is made between the various
elements, indicating that a specific event has resulted in a change of
occupation and residence.</p>
</div3>
-->
        <specGrp xml:id="DCCAHPA" n="Historical data">
          <xi:include href="../../Specs/affiliation.xml"/>
          <xi:include href="../../Specs/age.xml"/>
          <xi:include href="../../Specs/birth.xml"/>
          <xi:include href="../../Specs/climate.xml"/>
          <xi:include href="../../Specs/death.xml"/>
          <xi:include href="../../Specs/education.xml"/>
          <xi:include href="../../Specs/event.xml"/>
          <xi:include href="../../Specs/faith.xml"/>
          <xi:include href="../../Specs/floruit.xml"/>
          <xi:include href="../../Specs/gender.xml"/>
          <xi:include href="../../Specs/geo.xml"/>
          <xi:include href="../../Specs/langKnowledge.xml"/>
          <xi:include href="../../Specs/langKnown.xml"/>
          <xi:include href="../../Specs/listOrg.xml"/>
          <xi:include href="../../Specs/listEvent.xml"/>
          <xi:include href="../../Specs/listPerson.xml"/>
          <xi:include href="../../Specs/listPlace.xml"/>
          <xi:include href="../../Specs/listRelation.xml"/>
          <!-- PB, 19-04-2012 &listState;-->
          <xi:include href="../../Specs/location.xml"/>
          <xi:include href="../../Specs/nationality.xml"/>
          <xi:include href="../../Specs/occupation.xml"/>
          <xi:include href="../../Specs/org.xml"/>
          <!--        MDH: Deleted now-obsolete relationGrp element 2014-05-21.  -->
          <!--<xi:include href="../../Specs/relationGrp.xml"/> -->
          <xi:include href="../../Specs/person.xml"/>
          <xi:include href="../../Specs/persona.xml"/>
          <xi:include href="../../Specs/personGrp.xml"/>
          <xi:include href="../../Specs/persPronouns.xml"/>
          <xi:include href="../../Specs/place.xml"/>
          <xi:include href="../../Specs/population.xml"/>
          <xi:include href="../../Specs/relation.xml"/>
          <xi:include href="../../Specs/residence.xml"/>
          <xi:include href="../../Specs/sex.xml"/>
          <xi:include href="../../Specs/socecStatus.xml"/>
          <xi:include href="../../Specs/state.xml"/>
          <xi:include href="../../Specs/terrain.xml"/>
          <xi:include href="../../Specs/trait.xml"/>
        </specGrp>
      </div>
    </div>

    <div xml:id="NDEVNT" type="div2">
      <head>Events</head>
      <p>
        <specList>
          <specDesc key="event"/>
          <specDesc key="eventName"/>
          <specDesc key="listEvent"/>
        </specList> An event is a change of state whether real, planned, fictional, or purported about which more
        information is known. The <gi>eventName</gi> element may be used to encode the proper name of an event, if known. The <gi>head</gi> or <gi>label</gi> element may also appear in <gi>event</gi>, either in lieu of or in addition to the <gi>eventName</gi> element, to provide a human-readable heading or editorially supplied label for the event.</p>
      <p>These guidelines do not prescribe what encoders count as events, nor their granularity,
        nesting, or amount of other information to record in relation to each event. Yet most events can be identified by their time, location, or agents involved (be they organizations, persons, or objects).</p>
      <p>An <gi>event</gi> element may be used to record information about a place, person, or organization related to the described event; for this reason the element
        may appear as content of a <gi>place</gi>, <gi>person</gi>, or <gi>org</gi>. However, it is also possible to describe events
        independently of either a place, person, or organization. This may be useful not only for encoding texts which describe named events and 
        their <gi>eventName</gi>s, but also in applications as chronologies or lists of significant events (e.g., important  battles, legislative milestones, or the stages of construction of a large building, etc.).</p>
      
      <p>The <gi>listEvent</gi> element is a member of the <ident type="class">model.listLike</ident> class, and may therefore
        appear inside <gi>standOff</gi>, or wherever else lists are
        permitted, in the same way as the <gi>listPerson</gi>,
        <gi>listPlace</gi>, <gi>listOrg</gi> etc. elements described elsewhere in this
        chapter.</p>
      <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDEVNT-egXML-lx">
        <standOff>
          <listEvent>
            <event when="1713" ref="https://www.canadiana.ca/view/oocihm.9_01832/2">
              <label>Treaty of Utrecht</label>
              <!-- The following example presupposes that the editors of the TEI document decided
                to understand legislation or a treaty as an <gi>event</gi>, which itself may be
                considered a shortcut for several events that led up to the existence or validity
                of the law or treaty (e.g. the signing of a treaty could also be modeled as an event,
                and the result on paper could be encoded as an <gi>object</gi> or <gi>bibl</gi>). -->
              <desc>France ceded to Great Britain its claims to the <orgName>Hudson's Bay Company</orgName> territories in
                <placeName>Rupert's Land</placeName>, <placeName>Newfoundland</placeName>, and <placeName>Acadia</placeName> and
                recognized British suzerainty over <orgName type="tribe">the Iroquois</orgName> but retained its other pre-war
                North American possessions, including 
                <placeName key="PEI">Île-Saint-Jean</placeName> 
                (now <placeName key="PEI">Prince Edward Island</placeName>)...</desc>
            </event>
            <event when="1774" key="14-GeoIII-c83">
              <label>Quebec Act</label>
              <desc>This act of the British Parliament guaranteed free practice of the Catholic faith and restored use of the
                French Civil Code for private matters throughout the Province of Quebec, which had been expanded in territory
                following the <ref>Treaty of Paris</ref>.</desc>
            </event>
            <event when="1778" ref="http://avalon.law.yale.edu/18th_century/del1778.asp">
              <label>Treaty of Fort Pitt</label>
              <desc>Also known as the <name type="event">Treaty with the Delawares</name>, this was the first written treaty
                between the newly formed <orgName>United States</orgName> and any Native American people, in this case, the
                <orgName type="tribe">Lenape</orgName> or Delawares.</desc>
            </event>
          </listEvent>
        </standOff>
      </egXML>
      <p>The next example demonstrates the use of the
        <att>where</att> attribute with <gi>event</gi>, coordinated
        with location information stored in <gi>listPlace</gi>.</p>
      <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDEVNT-egXML-ma" source="#NDGEOGste-Falls">
        <standOff>
          <!-- ========= events ========= -->
          <listEvent>
            <event xml:id="DB-3F" where="#WWIIEast" when="1942-01">
              <head>Luftwaffe shoots down Ilyushin Il-4</head>
              <head type="short">DB-3F</head>
              <ab type="altitude"><measure unit="m" quantity="7000"/></ab>
              <ab type="survivor"><persName ref="#p-IC">Іван Чиссов</persName></ab>
            </event>
            <event xml:id="SCP" where="#l-GSN" when="1943-01-03">
              <head>Snap, Crackle, Pop is shot down by German flak</head>
              <head type="short">B-17</head>
              <ab type="altitude"><measure unit="m" quantity="6700"/></ab>
              <ab type="survivor"><persName ref="#p-AM">Alan Magee</persName></ab>
            </event>
            <event xml:id="DS664" where="#l-Obe" when="1944-03-24">
              <head>Avro Lancaster shot down by Junkers Ju 88</head>
              <head type="short">Lancaster</head>
              <ab type="altitude"><measure unit="m" quantity="5490"/></ab>
              <ab type="survivor"><persName ref="#p-NA">Nicholas Alkemade</persName></ab>
            </event>
            <event xml:id="LANSA508" where="#l-PI" when="1971-12-04">
              <head>LANSA 508 struck by lightning</head>
              <head type="short">Amazon rainforest</head>
              <ab type="altitude"><measure unit="m" quantity="3000"/></ab>
              <ab type="survivor"><persName ref="#p-JK">Juliane Diller (née Koepcke)</persName></ab>
            </event>
            <event xml:id="jat367" where="#l-Seb" when="1972-01-26T16:01:29Z">
              <head>Bombing of Yugoslav Airlines Flight 367</head>
              <head type="short">JAT 367</head>
              <ab type="altitude"><measure unit="m" quantity="10050"/></ab>
              <ab type="survivor"><persName ref="#p-VV">Весна Вуловић</persName></ab>
              <ptr type="furtherInfo" target="https://en.wikipedia.org/wiki/JAT_Flight_367"/>
            </event>
            <event xml:id="AFL811" where="#l-Zav" when="1981-08-24T16:21:00+09:00">
              <head>Russian military jet collides with passenger flight</head>
              <head type="short">Amur Oblast</head>
              <ab type="altitude"><measure unit="m" quantity="5220"/></ab>
              <ab type="survivor"><persName ref="#p-LS"/></ab>
              <ptr type="furtherInfo" target="https://en.wikipedia.org/w/index.php?title=Aeroflot_Flight_811"/>
            </event>
            <event xml:id="BG" where="#l-KorZ" when="1996">
              <head>SAS parachute failure</head>
              <head type="short">Bear Grylls</head>
              <ab type="altitude"><measure unit="m" quantity="4877"/></ab>
              <ab type="survivor"><persName ref="#p-BG"/></ab>
            </event>
            <event xml:id="CM" where="#l-Joh" when="2004-08-22">
              <head>Johannesburg parachute failure</head>
              <head type="short">Christine McKenzie</head>
              <ab type="altitude"><measure unit="m" quantity="3353"/></ab>
              <ab type="survivor"><persName ref="#p-CM">Christine McKenzie</persName></ab>
            </event>
            <event xml:id="JBK" where="#l-Kam" when="2009-05">
              <head>Cameraman fails to open chute</head>
              <head type="short">Sport videographer</head>
              <ab type="altitude"><measure unit="m" quantity="1829"/></ab>
              <ab type="survivor"><persName ref="#p-JB"/></ab>
            </event>
          </listEvent>
          <!-- ========= places ========= -->
          <listPlace>
            <place xml:id="l-GSN">
              <placeName xml:lang="fr">Gare de Saint-Nazaire</placeName>
              <location>
                <geo>47.28657 -2.21171</geo>
              </location>
            </place>
            <place xml:id="l-Joh">
              <placeName>Johannesburg</placeName>
              <location>
                <country>South Africa</country>
                <region type="province">Gauteng</region>
              </location>
            </place>
            <place xml:id="l-Kam">
              <placeName xml:lang="ru">Камчатке</placeName>
              <location>
                <country>Russia</country>
                <region>Kamchatka Krai</region>
              </location>
            </place>
            <place xml:id="l-Ken">
              <country>Kenya</country>
            </place>
            <place xml:id="l-Zav">
              <placeName xml:lang="en">Bureysky District</placeName>
              <placeName xml:lang="ru-Cyrl">Бурейский район</placeName>
              <location>
                <country>Russia</country>
                <region xml:lang="ru-Cyrl">Амурская область</region>
                <district>Bureysky</district>
                <geo>50.019444 130.466667</geo>
              </location>
            </place>
            <place xml:id="l-Obe" xml:lang="de">
              <placeName>Oberkirchen</placeName>
              <location>
                <country>Deutschland</country>
                <region type="state">Nordrhein-Westfalen</region>
                <region>Arnsberg</region>
                <district>Hochsauerlandkreis</district>
                <settlement>Schmallenberg</settlement>
                <geo cert="low">51.154 8.357</geo>
              </location>
            </place>
            <place xml:id="l-PI" xml:lang="es">
              <placeName>Puerto Inca</placeName>
              <location>
                <country>Peru</country>
                <region>Huánuco</region>
                <district>Puerto Inca</district>
              </location>
            </place>
            <place xml:id="l-Seb">
              <placeName xml:lang="de">Sebnitz</placeName>
              <location>
                <geo>50.966667 14.283333</geo>
              </location>
            </place>
            <place xml:id="l-WWIIEast">
              <name>Eastern Front</name>
              <ptr type="furtherInfo" target="https://en.wikipedia.org/wiki/Eastern_Front_(World_War_II)"/>
            </place>
            <place xml:id="l-Zam">
              <country>Zambia</country>
            </place>        
          </listPlace>
          <!-- ========= people ========= -->
          <listPerson>
            <person xml:id="p-VV">
              <persName xml:lang="sr-Cyrl">Весна Вуловић</persName>
              <persName xml:lang="sr-Latn">Vesna Vulović</persName>
              <birth when="1950-01-03"/>
              <death when="2016-12-23"/>
              <ptr type="furtherInfo" target="https://en.wikipedia.org/wiki/Vesna_Vulovi%C4%87"/>
            </person>
            <person xml:id="p-LS">
              <persName xml:lang="ru-Latn">Larisa Savitskaya</persName>
              <persName xml:lang="ru-Cyrl">Савицкая, Лариса Владимировна</persName>
              <birth when="1961-01-11"/>
              <ptr type="furtherInfo" target="https://ru.wikipedia.org/wiki/%D0%A1%D0%B0%D0%B2%D0%B8%D1%86%D0%BA%D0%B0%D1%8F,_%D0%9B%D0%B0%D1%80%D0%B8%D1%81%D0%B0_%D0%92%D0%BB%D0%B0%D0%B4%D0%B8%D0%BC%D0%B8%D1%80%D0%BE%D0%B2%D0%BD%D0%B0"/>
            </person>
            <person xml:id="p-IC">
              <persName xml:lang="uk-Cyrl">Іван Михайлович Чиссов</persName>
              <persName xml:lang="ru-Cyrl">Иван Михайлович Чисов</persName>
              <persName xml:lang="uk-Latn">Ivan Mikhailovich Chisov</persName>
              <birth when="1916"/>
              <death when="1986"/>
              <ptr type="furtherInfo" target="https://en.wikipedia.org/wiki/Ivan_Chisov"/>
            </person>
            <person xml:id="p-AM">
              <persName>Alan Eugene Magee</persName>
              <birth when="1919-01-13"/>
              <death when="2003-12-20"/>
              <ptr type="furtherInfo" target="https://en.wikipedia.org/wiki/Alan_Magee"/>
            </person>
            <person xml:id="p-NA">
              <persName>Nicholas Stephen Alkemade</persName>
              <birth when="1922-12-10"/>
              <death when="1987-06-22"/>
              <ptr type="furtherInfo" target="https://en.wikipedia.org/wiki/Nicholas_Alkemade"/>
            </person>
            <person xml:id="p-BG">
              <persName>Edward Michael Grylls</persName>
              <birth when="1974-06-07"/>
              <ptr type="furtherInfo" target="https://www.beargrylls.com/pages/about-bear-grylls"/>
            </person>
            <person xml:id="p-JK">
              <persName>Juliane Koepcke</persName>
              <birth when="1954-10-10"/>
              <ptr type="furtherInfo" target="https://en.wikipedia.org/wiki/Juliane_Koepcke"/>
            </person>
            <person xml:id="p-JB">
              <persName>James Boole</persName>
              <birth>1978, give or take a year</birth>
              <ptr type="furtherInfo" target="https://www.facebook.com/james.boole/?ref=page_internal"/>
            </person>
          </listPerson>
          <!-- ========= conjunctions and disjunctions ========= -->
          <altGrp type="location">
            <alt xml:id="l-KorZ" target="#l-Ken #l-Zam"/>
          </altGrp>
        </standOff>
      </egXML>
      <p>The <att>where</att> attribute on <gi>event</gi> can point to multiple canonical place descriptions, which indicates that an event took place in multiple locations. For example, the November 2015
        Paris Attacks took place at six different locations in Paris; this
        might be encoded as an <gi>event</gi> with a <att>where</att>
        attribute with six space-separated values, or using a <gi>listPlace</gi> (nested into the <gi>event</gi> or standalone).</p>
      
      <p>Events may also be modeled as hierarchies of nested <gi>event</gi>s. For example, a two part meeting might be represented as follows:
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDEVNT-egXML-do">
          <event type="meeting" when="2007-05-29">
            <desc>All day meeting to resolve content models</desc>
            <event type="preamble" notAfter="13:00:00">
              <desc>first part</desc>
            </event>
            <event type="conclusions" notBefore="13:00:00">
              <desc>second part</desc>
            </event>
          </event>
        </egXML>
      </p>
      
      <p>For <gi>event</gi> as a child element of <gi>person</gi>, note the Section <ptr target="#NDPERSEpe"/>.</p>
    </div>
    
    <div xml:id="NDOBJ">
      <head>Objects</head>
      <p>
        <specList>
          <specDesc key="object"/>
          <specDesc key="objectName"/>
          <specDesc key="listObject"/>
        </specList> An object is any material thing whether real, in existence, fictional, missing, or purported about which more
        information is known. Where objects have proper names the <gi>objectName</gi> element may be used to encode these.
        However, many objects are not named but the <gi>object</gi> element may still be used to provide a description of them.
        The <gi>object</gi> element is a more general descriptive form of the <gi>msDesc</gi> element. The latter should be used
        for describing manuscripts and similar text-bearing objects but can be viewed as a more specific form of the
        <gi>object</gi> element.</p>
        <p><!-- JC: Update after a couple of releases -->
          <emph>Please note:</emph> The <gi>object</gi> element is a recent addition to TEI P5 Guidelines as of version 3.5.0 and as such might
          be more prone to further revision in the next few releases as its use develops. This may be particularly evident where its
          contents have been borrowed from <gi>msDesc</gi> and have yet to be generalized from their use in the context of manuscript descriptions.
        </p>
        <p>The <gi>object</gi> element usually appears inside the
        <gi>listObject</gi> element which is used to group
        descriptions of identifiable objects. The <gi>listObject</gi>
        element is a member of <ident type="class">model.listLike</ident> and so may appear inside
        <gi>standOff</gi>, or anywhere else that <gi>list</gi> is
        allowed. This enables the flexibility of using
        <gi>listObject</gi> to contain a set of metadata descriptions
        stored in the TEI header, or as a list of objects transcribed from
        a source document. The equivalent list for manuscript
        descriptions is <gi>listBibl</gi>.</p>
      <p>
        <specList>
          <specDesc key="objectIdentifier"/>
          <specDesc key="msContents"/>
          <specDesc key="physDesc"/>
          <specDesc key="history"/>
          <specDesc key="additional"/>
        </specList>
        Overall, the basic structure of an <gi>object</gi> element is akin to that of <gi>msDesc</gi> in that it is providing a
        structured description of an object. After a group of
        identifying information, it has the option of paragraphs or, if the <ident type="module">msdescription</ident> module is
        loaded, <gi>msContents</gi>, <gi>physDesc</gi>, <gi>history</gi>, and <gi>additional</gi> elements for descriptive
        metadata about this object. Although these elements originate from manuscript description the <gi>object</gi> element may
        be used for all forms of object (whether text-bearing or not).

        <!-- JC: Update after a couple of releases -->
        Where descendents of <gi>object</gi> still have the hallmarks
        of their use in manuscript description, the descriptions as relating to manuscripts should be interpreted as applying to all
        forms of object (text-bearing) or not.</p>
        <p>The <gi>objectIdentifier</gi> element is a general-purpose
        grouping element for location or identification information relating to a single object or resource. It is very similar to
        an <gi>msIdentifier</gi> element with less contraints on the order of its contents. The <gi>objectIdentifier</gi> may be more
        or less detailed dependent on the needs of the encoder. In some cases an <gi>object</gi> may be used mostly as a common
        reference point for multiple <gi>objectName</gi> elements to refer back to. In situations, one might provide more detailed
        information in the <gi>objectIdentifier</gi> where it is available or desirable. Compare <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDOBJ-egXML-wt">
          <object xml:id="Excalibur-shortIdentifier">
            <objectIdentifier>
              <objectName>Excalibur</objectName>
            </objectIdentifier>
            <p>Excalibur is the name for the legendary sword of King Arthur.</p>
          </object>
        </egXML> where only a single <gi>objectName</gi> is provided and below where multiple versions are provided. <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDOBJ-egXML-zz">
          <object xml:id="Excalibur-longerIdentifier">
            <objectIdentifier>
              <objectName type="main">Excalibur</objectName>
              <objectName type="alt">Caliburn</objectName>
              <objectName xml:lang="cy">Caledfwlch</objectName>
              <objectName xml:lang="cnx">Calesvol</objectName>
              <objectName xml:lang="br">Kaledvoulc'h</objectName>
              <objectName xml:lang="la">Caliburnus</objectName>
              <country>Wales</country>
            </objectIdentifier>
            <p>Excalibur is the main English name for the legendary
            sword of King Arthur. In Welsh it is called
            <mentioned>Caledfwlch</mentioned>, in Cornish it is called
            <mentioned>Calesvol</mentioned>, in Breton it is called
            <mentioned>Kaledvoulc'h</mentioned>, and in Latin it is
            called <mentioned>Caliburnus</mentioned>. In some versions
            of the legend, Excalibur’s blade was engraved with phrases on opposite
            sides: <q>Take me up</q> and <q>Cast me away</q> (or similar).</p>
          </object>
        </egXML>
      </p>
      <p>Moreover, the <gi>objectIdentifier</gi> may include an <gi>address</gi> element to provide the address at which the object
        currently resides. The use of <gi>location</gi> within this enables the provision of geographical coordinates when
        describing objects not housed in traditional repositories or institutions. This may also be used to supplement more
        traditional repository location information if available and, for example, to enable providing outputs such as maps
        showing the location of encoded objects. <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDOBJ-egXML-mz">
          <objectIdentifier>
            <objectName xml:lang="en">Mask of Tutankhamun</objectName>
            <idno type="carter">256a</idno>
            <idno type="JournalD'Entrée">60672</idno>
            <idno type="exhibition">220</idno>
            <institution>Museum of Egyptian Antiquities</institution>
            <address>
              <street>15 Meret Basha</street>
              <district>Ismailia</district>
              <settlement>Cairo</settlement>
              <country>Egypt</country>
              <location>
                <geo>30.047778 31.233333</geo>
              </location>
            </address>
          </objectIdentifier>
        </egXML>
      </p>
      <p>The <gi>msContents</gi> element is currently used to provide a description of the intellectual contents of any text on an object
        and, being optional, is not necessary if there are no intellectual contents to describe. (Such contents, especially in the
        case of artistic objects, may not always be textual.) The <gi>physDesc</gi> element may be used to give a physical
        description of the object either in prose or using more structured elements as and where they apply to that kind of
        object. The <gi>history</gi> element provides the option to describe the history of the object as paragraphs or with more
        structure using the <gi>origin</gi> element, as many <gi>provenance</gi> stages as are appropriate, and
          <gi>acquisition</gi> to describe its current ownership. The <gi>additional</gi> element may be used to provide
        information about surrogates for the object (such as digital facsimiles) as well as administrative and curatorial
        information. A full description of an object can provide more or less detail at any level to represent the state of
        knowledge about the object.
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDOBJ-egXML-ym">
          <listObject>
            <object xml:id="TutankhamunMask">
              <objectIdentifier>
                <objectName xml:lang="en">Mask of Tutankhamun</objectName>
                <idno type="carter">256a</idno>
                <idno type="JournalD'Entrée">60672</idno>
                <idno type="exhibition">220</idno>
                <institution>Museum of Egyptian Antiquities</institution>
                <address>
                  <street>15 Meret Basha</street>
                  <district>Ismailia</district>
                  <settlement>Cairo</settlement>
                  <country>Egypt</country>
                  <location>
                    <geo>30.047778 31.233333</geo>
                  </location>
                </address>
              </objectIdentifier>
              <msContents>
                <p>The back and shoulders of the mask is inscribed with a protective spell in Egyptian hieroglyphs formed of ten
                  vertical and horizontal lines. This spell first appeared on masks in the Middle Kingdom at least 500 years
                  before Tutankhamun, and comes from chapter 151 of the <title>Book of the Dead</title>.</p>
              </msContents>
              <physDesc>
                <p>The mask of Tutankhamun is 54cm x 39.3cm x 49cm. It is constructed from two layers of high-karat gold that
                  varies in thickness from 1.5-3mm. It weighs approximately 10.23kg and x-ray crystallography shows that it is
                  composed of two alloys of gold with a lighter 18.4 karat shade being used for the face and neck while a heavier
                  22.5 karat gold was used for the rest of the mask.</p>
                <p>In the mask Tutankhamun wears a nemes headcloth which has the royal insignia of a cobra (Wadjet) and vulture
                  (Nekhbet) on it. These are thought respectively to symbolize Tutankhamun's rule of both Lower Egypt and Upper
                  Egypt. His ears are pierced for earrings. The mask has rich inlays of coloured glass and gemstones, including
                  lapis lazuli surrounding the eye and eyebrows, quartz for the eyes, obsidian for the pupils. The broad collar is
                  made up of carnelian, feldspar, turquoise, amazonite, faience and other stones.</p>
              </physDesc>
              <history>
                <origin>
                  <p>The mask of Tutankhamun was created in <origPlace>Egypt</origPlace> around <origDate when="-1323" type="circa">1323 BC</origDate>. It is a death mask of the 18th-dynasty ancient Egyptian Pharaoh Tutankhamun
                    who reigned 1332–1323 BC.</p>
                </origin>
                <provenance>
                  <p>The mask of Tutankhamun was found in his burial chamber at Theban Necropolis in the Valley of the Kings in
                    1922. On 28 October 1925 the excavation team led by English archaeologist Howard Carter opened the heavy
                    sarcophagus and three coffins and were the first people in around 3,250 years to see the mask of Tutankhamun.
                    Carter wrote in his diary: <quote> The pins removed, the lid was raised. The penultimate scene was disclosed –
                      a very neatly wrapped mummy of the young king, with golden mask of sad but tranquil expression, symbolizing
                      Osiris … the mask bears that god's attributes, but the likeness is that of Tut.Ankh.Amen – placid and
                      beautiful, with the same features as we find upon his statues and coffins. The mask has fallen slightly
                      back, thus its gaze is straight up to the heavens. </quote>
                  </p>
                </provenance>
                <acquisition> In December 1925, the mask was removed from the tomb, placed in a crate and transported 635
                  kilometres (395 mi) to the Egyptian Museum in Cairo, where it remains on public display. </acquisition>
              </history>
              <additional>
                <adminInfo>
                  <custodialHist>
                    <custEvent when="1944">When it was discovered in 1925, the 2.5kg narrow gold beard was no longer attached to
                      the mask and was reattached to the chin by use of a wooden dowel in 1944.</custEvent>
                    <custEvent when="2014-08"> In August 2014 when the mask was removed from its display case for cleaning, the
                      beard fell off again. Those working in the museum unadvisedly used a quick-drying epoxy to attempt to fix
                      it, but left the beard off-centre. </custEvent>
                    <custEvent when="2015-01">The damage was noticed and repaired in January 2015 by a German-Egyptian team who
                      used beeswax, a material known to be used as adhesives by the ancient Egyptians.</custEvent>
                  </custodialHist>
                </adminInfo>
              </additional>
            </object>
          </listObject>
        </egXML>
      </p>


      <p>If the object is being referenced from elsewhere in the document, this is usually done with an <gi>objectName</gi>. For
        example here the <val>Alfred-Jewel</val> <att>xml:id</att> is referenced from a paragraph elsewhere in the document using the <att>ref</att>
         attribute on the <gi>objectName</gi> element.

        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDOBJ-egXML-qn">
          <!-- Inside <standOff>: -->
          <listObject>
            <object xml:id="Alfred-Jewel">
              <objectIdentifier>
                <country>United Kingdom</country>
                <region>Oxfordshire</region>
                <settlement>Oxford</settlement>
                <institution>University of Oxford</institution>
                <repository>Ashmolean Museum</repository>
                <collection>English Treasures</collection>
                <idno type="ashmolean">AN1836p.135.371</idno>
                <idno type="wikipedia">https://en.wikipedia.org/wiki/Alfred_Jewel</idno>
                <objectName>Alfred Jewel</objectName>
              </objectIdentifier>
              <physDesc>
                <p>The Alfred Jewel is about 6.4 cm in length and is made of combination of filigreed <material>gold</material>
                  surrounding a polished teardrop shaped piece of transparent <material>quartz</material>. Underneath the rock
                  crystal is a cloisonné enamel image of a man with ecclesiastical symbols. The sides of the jewel holding the
                  crystal in place contain an openwork inscription saying "AELFRED MEC HEHT GEWYRCAN", meaning 'Alfred ordered me
                  made'.</p>
              </physDesc>
              <history>
                <origin>It is generally accepted that the Alfred Jewel dates from the <origDate>late 9th Century</origDate> and
                  was most likely made in <origPlace>England</origPlace>. </origin>
                <provenance when="1693">The jewel was discovered in 1693 at Petherton Park, North Petherton in the English county
                  of Somerset, on land owned by Sir Thomas Wroth. North Petherton is about 8 miles away from Athelney, where King
                  Alfred founded a monastery. </provenance>
                <provenance when="1698">A description of the Alfred Jewel was first published in 1698, in the Philosophical
                  Transactions of the Royal Society.</provenance>
                <acquisition> It was bequeathed to Oxford University by Colonel Nathaniel Palmer (c. 1661-1718) and today is in
                  the Ashmolean Museum in Oxford. </acquisition>
              </history>
            </object>
          </listObject>

          <!-- Inside <text>: -->
          <p>
            The <objectName ref="#MinsterLovellJewel">Minster Lovell Jewel</objectName> is probably the most similar to the
              <objectName ref="#Alfred-Jewel">Alfred Jewel</objectName> and was found in <placeName ref="#MinsterLovell">Minster
              Lovell</placeName> in <placeName ref="#Oxfordshire">Oxfordshire</placeName> and is kept at the <orgName ref="#AshmoleanMuseum">Ashmolean Museum</orgName>.
          </p>
        </egXML>
      </p>

<p>
There is no restriction on the form, size, or type of object that may be described by an <gi>object</gi> element, however, some objects may be more adequately described by a <gi>place</gi> element depending on context. Where a description of an object is being provided in terms of identification, physical characteristics, or history, then an <gi>object</gi> element may be preferred. Where metadata is being recorded about the geo-political location, population, or similar traits, then the <gi>place</gi> element may be better suited. A corresponding relation between an object description and place may be recorded through the use of the <att>corresp</att> attribute. An example of a large object that might be described with the <gi>object</gi> element could be a building such as the Central Library of the National Autonomous University of Mexico.
</p>


<p>
        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDOBJ-egXML-xt">
  <object type="building" xml:lang="en" xml:id="UNAM-CL">
               <objectIdentifier>
                  <objectName type="abbr">The Central Library of UNAM</objectName>
                  <objectName type="full">The Central Library of the National Autonomous University of Mexico</objectName>
                  <objectName xml:lang="es">La Biblioteca Central de la Universidad Nacional Autónoma de México</objectName>
                  <settlement>Mexico City</settlement>
                  <region>Coyoacán</region>
                  <country>Mexico</country>
               </objectIdentifier>
               <physDesc>
                  <objectDesc>
                     <p>The Central Library encompasses an area of <dim unit="m" quantity="16000" type="area">16 thousand square
                           meters</dim> and is built on a three meter platform. The base contains two <material>basalt</material>
                        <objectType>fountains</objectType> and <objectType>decorative reliefs</objectType> inspired by
                        pre-Hispanic art.</p>
                     <p>The library has ten windowless floors for book storage, each having enough space for 120 thousand volumes.
                        These storage areas have the necessary lighting, temperature and humidty conditions for book conservation.
                        In the reading room, flanked by a garden on each side, the diffuse and matte light is filtered through
                           <material>thin tecali stone slabs</material>. The semi-basement of the building contains the service
                        and administrative offices of the library.</p>
                     <p>The building facades are covered with one of the largest murals in the world and is made from naturally
                        colored stone tiles. It is entitled <title>Historical Representation of Culture</title> and is by
                           <persName role="artist">Juan O'Gorman</persName>.</p>
                  </objectDesc>
                  <decoDesc>
                     <decoNote>
                        <label>Base</label> At the base of the building there are two basalt fountains and decorative reliefs
                        around the outside that are inspired by pre-Hispanic art. The color of the stone in these elements is left
                        exposed to take advantage of the stone's texture as an aesthetic and expressive element, and to give a
                        sense of continuity to the external pavement.</decoNote>
                     <decoNote>
                        <label>Murals</label>
                        <p>The outside windowless portion of the building contains one of the largest murals in the world. This is
                           called <title>Historical Representation of the Culture</title> and is a <material>stone polychromatic
                              mosaic</material> based on the combination of 12 basic colors. The mural is created in an
                           impressionist style where the coloured tiles when seen from a distance form specific figures. The 12
                           colors where chosen from 150 samples of original stones with the criteria including the stone's
                           resistance to degredation by weather. According to the artist, <persName role="artist">Juan
                              O'Gorman</persName>, in the mosaic he represented three fundamental historical facets of the Mexican
                           culture: the pre-Hispanic era, the Spanish colonial era, and the modern age. For example with the North
                           Wall, this represents the pre-Hispanic era and is dominated by mythical elements relating to the
                           life-death duality. The left side of the main axis there are
                           deities and scenes pertaining to the creation of life. The right hand side of the mural contains figures
                           relating to death. For a more detailed description see <ref target="https://en.wikipedia.org/wiki/Central_Library_(UNAM)#Murals">https://en.wikipedia.org/wiki/Central_Library_(UNAM)#Murals</ref>.</p>
                     </decoNote>
                  </decoDesc>
               </physDesc>
               <history>
                  <origin> In <origDate when="1948" type="conceptual">1948</origDate> the architect and artist Juan O'Gorman, in
                     collaboration with architects Gustavo Saavedra and Juan Martinez de Velasco designed the building with a
                     functionalist approach, as part of the greater project of the construction of the University City on the
                     grounds of the Pedregal de San Angel in Mexico City. Originally the building was planned to host the National
                     Library and National Newspaper Library of Mexico. The library finally opened its doors for the first time on
                        <origDate when="1956-04-05" type="opening">5 April 1956</origDate>. In July 2007 it was declared a UNESCO
                     world heritage site. </origin>

               </history>
               <additional>
                  <adminInfo>
                     <custodialHist>
                        <custEvent from="1981" to="1983"> The library was significantly remodelled from 1981 - 1983 with the
                           purpose of changing from closed shelving to open stacks, providing users more direct access to the
                           collections. </custEvent>
                     </custodialHist>
                  </adminInfo>
               </additional>
            </object>


</egXML>
</p>



      <!-- Include all the necessary object-related elements  -->
      <specGrp xml:id="DNDOBJ" n="Names for objects">
        <xi:include href="../../Specs/objectName.xml"/>
        <xi:include href="../../Specs/object.xml"/>
        <xi:include href="../../Specs/listObject.xml"/>
        <xi:include href="../../Specs/model.objectLike.xml"/>
        <xi:include href="../../Specs/objectIdentifier.xml"/>
      </specGrp>

    </div>



    <div xml:id="NDNYM">
      <head>Names and Nyms</head>
      <p>So far we have discussed ways in which a name or referring string encountered in running text may be resolved by
        considering the object that the name refers to: in the case of a personal name, the name refers to a person; in the case
        of a place name, to a place, for example. The resolution of this reference is effected by means of the <att>key</att> or
          <att>ref</att> attributes available to all elements which are members of the <ident type="class">att.naming</ident>
        class, such as <gi>persName</gi> or <gi>placeName</gi> and their more specialized variants such as <gi>forename</gi> or
          <gi>country</gi>. However, <emph>names</emph> can also be regarded as objects in their own right, irrespective of the
        objects to which they are attached, notably in onomastic studies. From this point of view, the names
          <mentioned>John</mentioned> in English, <mentioned>Jean</mentioned> in French, and <mentioned>Ivan</mentioned> in
        Russian might all be regarded as existing independently of any person to which they are attached, and also independently
        of any variant forms that might be attested in different sources (such as Jon or Johnny in English, or Jehan or Jojo in
        French). We use the term <term>nym</term> to refer to the canonical or normalized form of a name regarded in such a way,
        and provide the following elements to encode it: <specList>
          <specDesc key="listNym"/>
          <specDesc key="nym"/>
        </specList>
      </p>
      <p>Any element which is a member of the <ident type="class">att.naming</ident> class may use the attribute <att>nymRef</att>
        to indicate the nym with which it corresponds. Thus, given the following <gi>nym</gi> for the name
          <mentioned>Antony</mentioned>: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDNYM-egXML-fh">
          <listNym>
            <nym xml:id="N123">
              <form>Antony</form>
            </nym>
            <!-- other nym definitions here -->
          </listNym></egXML> an occurrence of this name in running text might be encoded as follows: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDNYM-egXML-qt" xml:lang="und">
          <forename nymRef="#N123">Tony</forename> Blair </egXML> Note that this association (between "Tony" and "Antony") has
        nothing to do with any individual who might use the name.</p>
      <p>The person identified by this particular Tony may however be indicated independently using the <att>ref</att> attribute,
        either on the forename or on the whole name component: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDNYM-egXML-xw">
          <forename nymRef="#N123" ref="#BLT">Tony</forename>
          <!-- ... -->
          <person xml:id="BLT">
            <persName>Tony Blair</persName>
            <occupation>politician</occupation>
          </person></egXML>
      </p>
      <p>The <gi>nym</gi> element may be thought of as providing a specialized kind of dictionary entry. Like a dictionary entry,
        it may contain any element from the <ident type="class">model.entryPart</ident> class, such as <gi>form</gi>,
          <gi>etym</gi>, etc. For example, we may show that the canonical form for a given nym has two orthographic variants in
        this way: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDNYM-egXML-wb" xml:lang="und">
          <nym xml:id="J451">
            <form>
              <orth xml:lang="en-US">Ian</orth>
              <orth xml:lang="en-x-Scots">Iain</orth>
            </form>
          </nym>
        </egXML>
      </p>
      <p>Because a schema intending to make use of the <gi>nym</gi> or <gi>listNym</gi> element must include the <ident type="module">dictionaries</ident> module as well as the <ident type="module">namesdates</ident> module, many other
        elements are available in addition to <gi>form</gi>. For example, to provide a more complex etymological decomposition of
        a name, we might use the existing <gi>etym</gi> element, as follows: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDNYM-egXML-as"><nym xml:id="XYZ">
            <form>Bogomil</form>
            <etym>Means <gloss>favoured by God</gloss> from the <lang>Slavic</lang> elements <mentioned xml:lang="ru">bog</mentioned>
              <gloss>God</gloss> and <mentioned xml:lang="ru">mil</mentioned>
              <gloss>favour</gloss></etym>
          </nym></egXML>
      </p>
      <p>Where it is necessary to mark the substructure of nyms, this may be done by <gi>seg</gi> elements within the
          <gi>form</gi>:<egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDNYM-egXML-vn" xml:lang="und">
          <nym xml:id="ABC">
            <form>
              <choice>
                <seg type="morph"><seg>Bog</seg><seg>o</seg><seg>mil</seg></seg>
                <seg type="morph"><seg>Bogo</seg><seg>mil</seg></seg>
              </choice>
            </form>
          </nym></egXML>
        <!-- add example to show that Amadeus has same referents --> The <gi>seg</gi> element used here is provided by the TEI
          <ident type="module">linking</ident> module, which would therefore also need to be included in a schema built to
        validate such markup. Other possibilities for more detailed linguistic analysis are provided by elements included in that
        and the <ident type="module">analysis</ident> (see <ptr target="#AI"/>) or <ident type="module">iso-fs</ident> modules
        (see <ptr target="#FS"/>).</p>
      <p>Alternatively, each of the constituents of <mentioned>Bogomil</mentioned> might be regarded as a nym in its own right:
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDNYM-egXML-ko" xml:lang="und">
          <nym xml:id="B1" type="part">
            <form>bog</form>
          </nym>
          <nym xml:id="M1" type="part">
            <form>mil</form>
          </nym>
        </egXML> Within running text, a name can specify all the nyms associated with it: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDNYM-egXML-eg" xml:lang="und"> ...<name nymRef="#B1 #M1">Bogomil</name>... </egXML> Similarly,
        within a nym, the attribute <att>parts</att> is used to indicate its constituent parts, where these have been identified
        as distinct nyms: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDNYM-egXML-xp" xml:lang="und">
          <nym xml:id="BM1" parts="#B1 #M1">
            <form>Bogomil</form>
          </nym>
        </egXML>
      </p>
      <p>The <gi>nym</gi> element may also combine a number of other <gi>nym</gi> elements together, where it is intended to show
        that they are all regarded as variations on the same root. Thus the different forms of the name John, all being derived
        from the same root, may be represented as a hierarchic structure like this: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDNYM-egXML-mt" xml:lang="und"><nym xml:id="J45">
            <form xml:lang="la">Iohannes</form>
            <nym xml:id="J450">
              <form xml:lang="en">John</form>
              <nym xml:id="J4501">
                <form>Johnny</form>
              </nym>
              <nym xml:id="J4502">
                <form>Jon</form>
              </nym>
            </nym>
            <nym xml:id="J455">
              <form xml:lang="ru">Ivan</form>
            </nym>
            <nym xml:id="J453">
              <form xml:lang="fr">Jean</form>
            </nym>
          </nym></egXML>
      </p>
      <p>The <gi>nym</gi> element may be used for components of geographical or organizational names as well. For example: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDNYM-egXML-hg">
          <geogName ref="tag:projectname.org,2012:LAEI1" type="hill">
            <geogFeat xml:lang="gd" nymRef="#LAIRG">Lairig</geogFeat>
            <name>Eilde</name>
          </geogName> ... <nym xml:id="LAIRG">
            <form xml:lang="gd">lairig</form>
            <def>sloping hill face</def>
          </nym> ... </egXML>
      </p>

      <p>
        <specGrp xml:id="DNDNYM" n="Canonical names">
          <xi:include href="../../Specs/nym.xml"/>
          <xi:include href="../../Specs/listNym.xml"/>
        </specGrp> As noted above, use of these elements implies that both the <ident type="module">dictionaries</ident> and the
          <ident type="module">namesdates</ident> modules are included in a schema.</p>
    </div>
  </div>

    <div xml:id="NDDATE">
      <head>Dates</head>
      <p>The following elements for the encoding of dates and times were introduced in section <ptr target="#CONADA"/>: <specList>
          <specDesc key="date"/>
          <specDesc key="time"/>
        </specList>
      </p>
      <p>The current module <ident type="module">namesdates</ident> provides a mechanism for more detailed encoding of relative
        dates and times. A <term>relative temporal expression</term> describes a date or time with reference to some other
        (absolute) temporal expression, and thus may contain an <gi>offset</gi> element in addition to one or more <gi>date</gi>
        or <gi>time</gi> elements: <specList>
          <specDesc key="offset"/>
        </specList>
      </p>
      <p>As members of the <ident type="class">att.datable</ident> and <ident type="class">att.duration</ident> classes, which in
        turn are members of <ident type="class">att.datable.w3c</ident> and <ident type="class">att.duration.w3c</ident>
        respectively, the <gi>date</gi> and <gi>time</gi> elements share the following attributes: <specList>
          <specDesc key="att.datable.w3c" atts="when"/>
          <specDesc key="att.duration.w3c" atts="dur"/>
        </specList>
      </p>
      <div type="div2" xml:id="NDDATER">
        <head>Relative Dates and Times </head>
        <p>As noted above, relative dates and times such as <q>in the Two Hundredth and First Year of the Republic</q>, <q>twenty
            minutes before noon</q>, and, more ambiguously, <q>after the lamented death of the Doctor</q> or <q>an hour after the
            game</q> have two distinct components. As well as the absolute temporal expression or event to which reference is made
          (e.g. <q>noon</q>, <q>the game</q>, <q>the death of the Doctor</q>, <q>[the foundation of] the Republic</q>), they also
          contain a description of the <soCalled>distance</soCalled> between the time or date which is indicated and the referent
          expression (e.g. <q>the Two Hundredth and First Year</q>, <q>twenty minutes</q>, <q>an hour</q>); and (optionally) an
            <soCalled>offset</soCalled> describing the direction of the distance between the time or date indicated and the
          referent expression (e.g. <q>of</q> implying after, <q>before</q>, <q>after</q>).</p>
        <p>The <soCalled>distance</soCalled> component of a relative temporal expression may be encoded as a temporal element in
          its own right using either <gi>date</gi> or <gi>time</gi>, or with the more generic <gi>measure</gi> element. A special
          element, <gi>offset</gi>, is provided by this module for encoding the <soCalled>offset</soCalled> component of a
          relative temporal expression. The absolute temporal expression contained within the relative expression may be encoded
          with a <gi>date</gi> or <gi>time</gi> element; in turn, those elements may of course be relative, and thus contain
            <gi>date</gi> or <gi>time</gi> elements within themselves. This allows for deeply nested structures such as <q source="#NONE">the
            third Sunday after the first Monday before Lammastide in the fifth year of the King's second marriage ... </q> but so
          does natural language.</p>
        <p>In the following examples, the <att>when</att> and <att>dur</att> attributes have been used to simplify processing of
          variant forms of expression: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATER-egXML-cc"><date when="1786-12-11">
              <date dur="P14D">A fortnight</date>
              <offset>before</offset>
              <date when="1786-12-25" type="holiday">Christmas 1786</date>
            </date></egXML>
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATER-egXML-pr">I reached the station <time when="14:15:00">
              <time dur="PT30M0S">precisely half an hour</time>
              <offset>after</offset>
              <time when="13:45:00" type="occasion">the departure of the afternoon train to Boston</time>
            </time></egXML></p>
        <p>In the following example, a nested <gi>date</gi> element is used to show that <q>my birthday</q> and the cited date are
          parts of the same temporal expression, and hence to disambiguate the phrase <q>A week before my birthday on 9th
            December</q>: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATER-egXML-nh"><date when="--12-02">
              <date>A week</date>
              <offset>before</offset>
              <date when="--12-09">
                <date type="occasion">my birthday</date> on <date>9th December</date>
              </date>
            </date></egXML> The alternative reading of this phrase could be encoded as follows: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATER-egXML-iz"><date when="--12-09">
              <date>A week</date>
              <offset>before</offset>
              <date type="occasion" when="--12-16">my birthday</date> on <date>9th December</date>
            </date></egXML>
        </p>
        <p>Where more complex or ambiguous expressions are involved, and where it is desirable to make more explicit the
          interpretive processes required, the feature structure notation described in chapter <ptr target="#FS"/> may be used.
          Consider, for example, the following temporal expression which occurs in the <title>Scottish Temperance Review</title>
          of August 1850, referring to the summer holiday known in Glasgow simply as <q>the Fair</q>: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATER-egXML-ca">Not only is the city, <date ana="#gf50">during the Fair</date>, a horrible
            nucleus of immorality and wickedness; it sends our multitudes to pollute and demoralize the country.</egXML>
        </p>
        <p>For the definition of the <att>ana</att> attribute, see chapter <ptr target="#AI"/> (in particular <ptr target="#AIATTS"/>). It is used here to link the temporal phrase with an interpretation of it. Like most traditional
          fairs and market days, the Glasgow Fair was established by local custom and could vary from year to year. Consequently,
          in order to provide such an interpretation, it is necessary to draw upon additional information which may or may not be
          located in the particular text in question. In this case, it is necessary at least to know the spatial and temporal
          context (year and place) of the fair referred to. These and other features required for the analysis of this particular
          temporal expression may be combined together as one feature structure of type <val>date-analysis</val>: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATER-egXML-wd"><fs xml:id="gf50" type="date-analysis">
              <f name="event"><string>the Fair</string></f>
              <f name="place"><string>Glasgow</string></f>
              <f name="year"><numeric value="1850"/></f>
              <f name="from-value"><string>1850-08-08</string></f>
              <f name="to-value"><string>1850-09-19</string></f>
            </fs></egXML> For further discussion of feature structure representation see chapter <ptr target="#FS"/>.</p>
      </div>

      <div type="div2" xml:id="NDDATEA">
        <head>Absolute Dates and Times</head>

        <p>The following are examples of absolute temporal expressions.</p>
        <p>
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATEA-egXML-tv" source="#NDDATEA-eg-169">The university's view of American affairs
            produced a stinging attack by Edmund Burke in the Commons debate of <date when="1775-10-26">26 October
            1775</date></egXML>
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATEA-egXML-yq" source="#NONE">
            <date when="1993-05-14">Friday, 14 May 1993</date>
          </egXML>
        </p>
        <p>It may be useful to categorize a temporal expression which is given in terms of a named event, such as a public
          holiday, or a named time such as <q>tea time</q> or <q>matins</q>: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATEA-egXML-ze">In
            New York, <date type="occasion" when="--01-01">New Year's Day</date> is the quietest of holidays, <date when="--07-04" type="occasion">Independence Day</date> the most turbulent.</egXML>
        </p>
        <!-- Example needs to be re-worked
<p>These components may be applied to dates using any calendar system
using  subcomponents equivalent to those listed above:
<egXML xmlns="http://www.tei-c.org/ns/Examples"><title>Le Vieux Cordelier:
Journal r&#xE9;dig&#xE9; par Camille Desmoulins</title>,
<date calendar="Revolutionary" value="1794-02-03">
   Quintidi
   Pluviose
   2e d&#xE9;cade,
   l'an 2 de la R&#xE9;publique Indivisible
</date></egXML> -->
        <!-- NB - I removed value= attrs because I do not think -->
        <!-- they were "correct" in the sense that they were    -->
        <!-- non-ISO format and did not normalize; I'm not sure -->
        <!-- what "correct" would be, though; 1794-02-03 was    -->
        <!-- 1794-034 or 1794-W06-1 (per Emacs :-)              -->
        <!-- Date headline from Le Vieux Cordelier of that date -->
        <!-- Thanks to T. Munck for providing the above example -->
        <!-- /p -->
        <p>Absolute temporal expressions denoting times which are given in terms of seconds, minutes, hours, or of well-defined
          events (e.g. <q>noon</q>, <q>sunset</q>) may similarly be represented using the <gi>time</gi> element. <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATEA-egXML-bg">The train leaves for Boston at <time type="twentyfourHour" when="13:45:00">13:45</time></egXML>
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATEA-egXML-jh">At <time type="occasion">sunset</time> we walked to the beach.</egXML>
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATEA-egXML-th">The train leaves for Boston at <time xml:lang="en-US" type="descriptive" when="13:45:00-05:00"> a quarter of two </time></egXML>
        </p>
      </div>
      <div type="div2" xml:id="NDDATEISO">
        <head>More Expressive Normalizations</head>
        <p>The attributes for normalization of dates and times so far described use a standard format defined by <ref target="#XSD2">XML Schema Part 2: Datatypes Second Edition</ref>. This format is widely accepted and has significant
          software support. It is essentially a profile of ISO 8601 <title>Data elements and interchange formats — Information
            interchange — Representation of dates and times</title>. The full ISO standard provides formats not available in the
          W3C recommendation, for example, the capability to refer to a date by its ordinal date or week date, or to refer to a
          century. It also provides ways of indicating duration and range.</p>

        <p>When this module is included in a schema, the following additional attributes are provided: <specList>
            <specDesc key="att.datable.iso" atts="when-iso notBefore-iso notAfter-iso from-iso to-iso"/>
            <specDesc key="att.duration.iso" atts="dur-iso"/>
          </specList> These attributes may be used in preference to their W3C equivalent when it is necessary to provide a
          normalized value in some form not supported by the W3C attributes. For example, a century date in the W3C format must be
          expressed as a range, using the <att>from</att> attribute together with either the <att>to</att> attribute or the
            <att>dur</att> (duration) attribute: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATEISO-egXML-pq"><date from="1301" to="1400">fourteenth century</date>
            <date from="1301" dur="P100Y">fourteenth century</date>
          </egXML> With the attribute <att>when-iso</att>, however, it is possible to express the same normalized value in any of
          the following additional ways: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATEISO-egXML-cg"><date when-iso="13">fourteenth
              century</date>
            <date when-iso="1301/1400">fourteenth century</date>
            <date when-iso="1301/P100Y">fourteenth century</date>
          </egXML>
        </p>

        <specGrp>
          <xi:include href="../../Specs/model.orgStateLike.xml"/>
          <xi:include href="../../Specs/att.personal.xml"/>
          <xi:include href="../../Specs/model.placeLike.xml"/>
          <xi:include href="../../Specs/att.datable.iso.xml"/>
          <xi:include href="../../Specs/att.calendarSystem.xml"/>
          <xi:include href="../../Specs/att.duration.iso.xml"/>
          <xi:include href="../../Specs/teidata.temporal.iso.xml"/>
          <xi:include href="../../Specs/teidata.duration.iso.xml"/>
          <specGrpRef target="#DNDPER"/>
          <specGrpRef target="#DNDPLAC"/>
          <specGrpRef target="#DCCAHPA"/>
          <specGrpRef target="#DNDNYM"/>
        </specGrp>

      </div>

      <div type="div2" xml:id="NDDATECUSTOM">
        <head>Using Non-Gregorian Calendars</head>
        <p>All date-related encoding described above makes use of the Gregorian calendar, on which both the ISO and W3C datetime
          formats are based. However, historical texts often pre-date the invention of the Gregorian calendar in the 16th century,
          or its adoption in Europe over the following centuries, and many other calendars are used in texts from other cultures
          and contexts. Non-Gregorian dates can be encoded using methods described below.</p>

        <p>First, a Calendar Description element needs to be supplied in the <gi>teiHeader</gi> as described in <ptr target="#HD44"/>:</p>

        <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATECUSTOM-egXML-po">
          <calendarDesc>
            <calendar xml:id="Julian_England"><p>The Julian calendar, as used in England until 1752.</p></calendar>
          </calendarDesc>
        </egXML>

        <p>The following attributes can now be used to encode dates using this calendar: <specList>
            <specDesc key="att.calendarSystem" atts="calendar"/>
            <specDesc key="att.datable.custom" atts="when-custom notBefore-custom notAfter-custom from-custom to-custom datingMethod"/>
          </specList>
          <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATECUSTOM-egXML-sl">
            <p>The Poole by S. <hi>Giles</hi> Churchyarde was a large water in the yeare <date calendar="#Julian_England">1244</date>.</p>
          </egXML> Here, the <att>calendar</att> attribute points to the <gi>calendar</gi> element in the header which defines and
          describes the calendar used.</p>

        <p>The <att>calendar</att> attribute is used to specify the calendar used in the <emph>text content</emph> of the dating
          element which bears it. For reasons of consistency and computability, it is often useful to complement the content of an 
          element with attributes such as <att>when</att>, <att>notBefore</att>, <att>notAfter</att>, etc. For dates expressed in a non-Gregorian calendar, 
          such normalizations may also be expressed in terms of the non-Gregorian calendar specified by the <att>datingMethod</att> attribute. 
          The attributes <att>when-custom</att>, <att>notBefore-custom</att>, <att>from-custom</att>, etc. are provided for this purpose; the <att>datingMethod</att> attribute 
          is used to identify the calendar used in the value of these attributes: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATECUSTOM-egXML-sg">
            <head> The Tryumphs of Peace.<lb/> That Celebrated the Solemnity of the right Honorable Sr Francis Iones Knight, at
              his Inauguration into the Maioraltie of London, on Monday being the <date when-custom="1620-10-30" datingMethod="#Julian_England" calendar="#Julian_England"> 30. of October, 1620. </date>
            </head>
          </egXML> Here, the <att>calendar</att> attribute specifies the calendar used in the text content of the <gi>date</gi>
          element, as before, whereas the <att>datingMethod</att> attribute signifies that the calendar used in the
            <att>when-custom</att> attribute is also Julian. The schema could be customized in order to constrain the content of
          custom attributes in a manner similar to the constraints provided on regular Gregorian dating attributes such as
            <att>when</att>, to enforce consistency in the use of non-Gregorian dates.</p>

        <p>Custom dating attributes can be combined with any of the standard dating attributes in order to provide a standardized
          Gregorian version of a non-Gregorian date. We might enhance the preceding example with the addition of <att>when</att>,
          providing the Gregorian calendar equivalent of the Julian date: <egXML xmlns="http://www.tei-c.org/ns/Examples" xml:id="NDDATECUSTOM-egXML-nj">
            <date when-custom="1620-10-30" when="1620-11-09" datingMethod="#Julian_England" calendar="#Julian_England"> 30. of
              October, 1620. </date>
          </egXML>
        </p>
      </div>
    </div>


  <div>
    <head>Module for Names and Dates</head>
    <p>The module described in this chapter makes available the following components: <moduleSpec xml:id="DND" ident="namesdates">
        <idno type="FPI">Names, dates, persons and places</idno>
        <desc xml:lang="en" versionDate="2006-09-13">Names and dates</desc>
        <desc xml:lang="fr" versionDate="2018-07-12">Noms, dates, personnes et lieux</desc>
        <desc xml:lang="zh-TW" versionDate="2018-07-12">名稱與日期</desc>
        <desc xml:lang="it" versionDate="2018-07-12">Nomi e date</desc>
        <desc xml:lang="pt" versionDate="2018-07-12">Nomes e datas</desc>
        <desc xml:lang="ja" versionDate="2018-07-12">名前モジュール</desc>
      </moduleSpec> The selection and combination of modules to form a TEI schema is described in <ptr target="#STIN"/>.</p>
  </div>

</div>
