<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.tei-c.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tfinney</id>
	<title>TEIWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.tei-c.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tfinney"/>
	<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Special:Contributions/Tfinney"/>
	<updated>2026-04-22T01:42:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8909</id>
		<title>Prosopography</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8909"/>
		<updated>2011-03-09T08:19:52Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: /* Relations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERS 13.3 Prosopography] of the TEI Guidelines discusses how the elements and attributes from the TEI P5 [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#index-body.1_div.13_div.4 namesdates module] can be used to mark up prosopographical data.&lt;br /&gt;
&lt;br /&gt;
This wiki page attempts to summarise a number of issues in recording prosopographical data, and aims to provide a (sometimes personal) starting point for discussion and sharing of encoding experiences and insights. Rather than a documentation of best practice, it focuses on possible approaches for encoding some prosopographical phenomena, and tries to find sensible ones.&lt;br /&gt;
&lt;br /&gt;
==Dating==&lt;br /&gt;
===Unknown dates vs. lacking dates===&lt;br /&gt;
Birth and death dates can only be recorded if they are known. Yet, omitting the &amp;lt;death&amp;gt; element from a &amp;lt;person&amp;gt; description may lead to ambiguity. Consider following example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Does this indicate:&lt;br /&gt;
* that the person is still living?&lt;br /&gt;
* that the person has died but the date of death is unknown?&lt;br /&gt;
(Obviously, this ambiguity does not hold for birth dates, as can be assumed that all existing persons must have been born.)&lt;br /&gt;
&lt;br /&gt;
In order to resolve this ambiguity, it could be assumed that a description in a &amp;lt;person&amp;gt; element withouth &amp;lt;death&amp;gt; element would relate to a living person. When the person is known to have died, a &amp;lt;death&amp;gt; statement would then be required. If only the birth date is known, this can be used as a lower bound for the possible date of death:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;1935&amp;quot; precision=&amp;quot;low&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Note how the @notBefore attribute is used to specify this lower bound, in combination with the @precision attribute to indicate the precision of this statement. One could equally infer an upper bound by assuming that nobody lives longer than 120 years, and document this with the @notAfter attribute on the &amp;lt;death&amp;gt; element. The status of this conjecture and its certainty could be indicated by @evidence and @cert attributes, respectively:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Corey Adams&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1835&amp;quot;&amp;gt;1835&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;1955&amp;quot; precision=&amp;quot;low&amp;quot; cert=&amp;quot;high&amp;quot; evidence=&amp;quot;conjecture&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
The lacking data could be represented by e.g. a question mark as text content of the &amp;lt;death&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
When no birth nor death date is known for a dead person, no precise dates (or approximations) can be given in attributes. Still, it could make sense to have &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, whose text contents indicate this knowledge gap:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth&amp;gt;?&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Circa Dates===&lt;br /&gt;
This issue has been raised on the [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind0903&amp;amp;L=TEI-L&amp;amp;D=0&amp;amp;P=18661 TEI-L mailing list]. Currently, TEI P5 only offers implicit means to indicate that a date is only an approximation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Aischylos&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth precision=&amp;quot;low&amp;quot; when=&amp;quot;-0525&amp;quot;&amp;gt;ca. 525 b.C.&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death precision=&amp;quot;low&amp;quot; when=&amp;quot;-0456&amp;quot;&amp;gt;ca. 456 b.C.&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
...with the @precision attribute indicating the low precision of these statements.&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Yet, depending on the requirements of the encoding, an ideal representation of circa dates could get quite complex, and touches on broader issues concerning an accurate representation of uncertainty. See following resources:&lt;br /&gt;
* [http://www.tfinney.net/Uncertainty/ Tim Finney: 'Uncertainty in text, markup and beyond']&lt;br /&gt;
* [http://sourceforge.net/tracker/?func=detail&amp;amp;aid=3060909&amp;amp;group_id=106328&amp;amp;atid=644065 feature request by Tim Finney]&lt;br /&gt;
&lt;br /&gt;
===Alternative Dates===&lt;br /&gt;
Sometimes, multiple possibilities exist for determining the date of birth or death of a person. When both dates are successive, one could encode this as a date range, with @notBefore and @notAfter, as in this case with two possible birth dates:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Duncan, Isadora&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;1877&amp;quot; notAfter=&amp;quot;1878&amp;quot;&amp;gt;[1877 or] 1878&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1927&amp;quot;&amp;gt;1927&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
When, on the other hand, both dates are non-successive, multiple &amp;lt;birth&amp;gt; or &amp;lt;death&amp;gt; dates can be provided, with an @exclude attribute indicating their exclusive alternation:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Vanhautte, Delphien&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1869-09-02&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Ardooie&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;02.09.1869&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-02-03&amp;quot; xml:id=&amp;quot;d19440203&amp;quot; exclude=&amp;quot;#d19441203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-12-03&amp;quot; xml:id=&amp;quot;d19441203&amp;quot; exclude=&amp;quot;#d19440203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
===Only a period is known===&lt;br /&gt;
Sometimes no exact dates of birth or death are known, while the lifetime can be approximated in a period. As has been remarked by [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rathtz on TEI-L], the period can be approximated by @notBefore and @notAfter attributes on &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, while the ambiguity can be recorded in a &amp;lt;floruit&amp;gt; element:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In his response, [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L] makes a refinement. If the period mentioned does not literally apply to birth and death dates, and in the previous example rather conveys that this person lived the better part of her life in the 3rd century (while she might have been born or died before the start or after the end of that century), the most accurate way of representing this would imply an inversion of the @notBefore and @notAfter attributes on respectively &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Naming==&lt;br /&gt;
===Pseudonyms===&lt;br /&gt;
Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERSEps 13.3.2.2 Personal States] of the TEI Guidelines describes how multiple &amp;lt;persName&amp;gt;s are allowed for a person, possibly categorised with a @type attribute. For pseudonyms, the value 'pseudo' can be used. Hence, the guitarist commonly known as Slash could be described as follows:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This may raise an issue regarding the 'canonicity' of either name. In this case, a bibliographic entry would probably use the pseudonym 'Slash', whereas for less famous people the actual name may be preferred. This 'preference' could be recorded implicitly by the order of the &amp;lt;persNames&amp;gt;, or with the @sort attribute:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName sort=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot; sort=&amp;quot;1&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This could then mean that the pseudonym is the 'canonical' name for this person.&lt;br /&gt;
&lt;br /&gt;
Another question is whether the actual name should then be typed as @type='real'?&lt;br /&gt;
&lt;br /&gt;
===Alternative Names===&lt;br /&gt;
A related issue arises when people are commonly known by another name than their real name. For example, Joe English, a Belgian painter, is actually called Joseph English. I wonder whether a regularisation with &amp;lt;reg&amp;gt; would be the most suitable solution to encode this?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;English, Joe A.M.&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;English&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Joseph A.M.&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Mixing Prose and Structure==&lt;br /&gt;
The TEI P5 Guidelines define the contents &amp;lt;person&amp;gt; as either a collection of highly structured biographical 'fields' (using dedicated elements like &amp;lt;trait&amp;gt;, &amp;lt;occupation&amp;gt;, ...), or a collection of loose prose paragraphs (&amp;amp;lt;p&amp;gt;). Especially when transforming existing biographical records to TEI P5, this exclusive alternation can be unsatisfactory:&lt;br /&gt;
* splitting up all biographical prose into biographical fields may be too demanding&lt;br /&gt;
* OTOH, choosing to retain the description in prose paragraphs also prohibits the specification of basic biographical data in specific fields (&amp;lt;birth&amp;gt;, &amp;lt;death&amp;gt;, &amp;lt;persName&amp;gt;) inside &amp;lt;person&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One (tentative) solution could be to extract record-like information into biographical fields, while grouping the prose descriptions as paragraphs into a &amp;lt;note&amp;gt; element:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person xml:id=&amp;quot;FJ&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;Fabricius, Jan&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Fabricius&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Jan&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1871-09-30&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Assen&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;30.09.1871&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1964-11-23&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Wimborne, Dorset&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;23.11.1964&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;bio&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Journalist, Nederlands toneelschrijver.&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Vader van de schrijver Johan Fabricius. Hoofdredacteur van verschillende bladen, zowel in Nederlands-Indië als in Nederland. &lt;br /&gt;
         In 1938 vestigde hij zich in Engeland. Hoewel Fabricius op latere leeftijd ook enkele romans en drie delen memoires heeft &lt;br /&gt;
         gepubliceerd, ligt zijn betekenis in zijn toneelwerk. Zijn technische vaardigheid en meesterschap in het schrijven van een &lt;br /&gt;
         dialoog, maken zijn stukken goed speelbaar. Kind van een tijd die het realisme beoefende (Heijermans, Hauptmann), kon hij &lt;br /&gt;
         toch niet de romantiek geheel laten varen. Het handelingsverloop is vaak gewild; er wordt dan bewust aangestuurd op een &lt;br /&gt;
         aandoenlijke werking, zodat sommige van zijn stukken het predikaat 'melodramatisch' verdienen. Gedreven door een sterk gevoel &lt;br /&gt;
         voor rechtvaardigheid zocht hij zijn gegevens in de problematiek van milieus die hem vertrouwd waren: het boerenland van &lt;br /&gt;
         Groningen en Drente, de planterswereld van Indië. Fabricius' werk werd in Nederland en ook in het buitenland met succes opgevoerd. &lt;br /&gt;
         Tot zijn bekendste werken behoren &amp;lt;title&amp;gt;Eenzaam&amp;lt;/title&amp;gt; (1907) en &amp;lt;title&amp;gt;Dolle Hans&amp;lt;/title&amp;gt; (1916). Sommige stukken zijn vertaald &lt;br /&gt;
         in het Frans, Duits, Engels, Noors, Deens, Fries en Gronings. &lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;ref&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;&lt;br /&gt;
        &amp;lt;ptr ref=&amp;quot;http://www.dbnl.org/auteurs/borkv/Fabr004.htm&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This allows to group other types of information into other notes as well, distinguished by means of appropriate values for their @type attributes.&lt;br /&gt;
&lt;br /&gt;
==Traits, States, and Events==&lt;br /&gt;
The Guidelines use traits, states, and events as basic categories for prosopography. Traits differ from states in being generally immutable. It may be that the distinction between states and traits is unnecessary. Almost every member of model.persTraitLike (age faith langKnowledge nationality s*x socecStatus trait) can change. Dropping &amp;quot;trait&amp;quot; leaves a simple yet expressive model where entities are described by states and state-transitions (i.e. events).&lt;br /&gt;
&lt;br /&gt;
==Relations==&lt;br /&gt;
At the moment, relations are defined by attributes such as name, active and passive:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation name=&amp;quot;parent&amp;quot; active=&amp;quot;#p1 #p2&amp;quot; passive=&amp;quot;#p3 #p4&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An alternative would be to use RDF-like subject, predicate, object triples:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation subject=&amp;quot;#p1&amp;quot; predicate=&amp;quot;child-of&amp;quot; object=&amp;quot;#p2&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the relation element could be placed inside the element which describes the subject (e.g. a person element) then the subject attribute would be implicit.&lt;br /&gt;
&lt;br /&gt;
[[Category:Markup]]&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8908</id>
		<title>Prosopography</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8908"/>
		<updated>2011-03-09T08:17:09Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: /* Relations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERS 13.3 Prosopography] of the TEI Guidelines discusses how the elements and attributes from the TEI P5 [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#index-body.1_div.13_div.4 namesdates module] can be used to mark up prosopographical data.&lt;br /&gt;
&lt;br /&gt;
This wiki page attempts to summarise a number of issues in recording prosopographical data, and aims to provide a (sometimes personal) starting point for discussion and sharing of encoding experiences and insights. Rather than a documentation of best practice, it focuses on possible approaches for encoding some prosopographical phenomena, and tries to find sensible ones.&lt;br /&gt;
&lt;br /&gt;
==Dating==&lt;br /&gt;
===Unknown dates vs. lacking dates===&lt;br /&gt;
Birth and death dates can only be recorded if they are known. Yet, omitting the &amp;lt;death&amp;gt; element from a &amp;lt;person&amp;gt; description may lead to ambiguity. Consider following example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Does this indicate:&lt;br /&gt;
* that the person is still living?&lt;br /&gt;
* that the person has died but the date of death is unknown?&lt;br /&gt;
(Obviously, this ambiguity does not hold for birth dates, as can be assumed that all existing persons must have been born.)&lt;br /&gt;
&lt;br /&gt;
In order to resolve this ambiguity, it could be assumed that a description in a &amp;lt;person&amp;gt; element withouth &amp;lt;death&amp;gt; element would relate to a living person. When the person is known to have died, a &amp;lt;death&amp;gt; statement would then be required. If only the birth date is known, this can be used as a lower bound for the possible date of death:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;1935&amp;quot; precision=&amp;quot;low&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Note how the @notBefore attribute is used to specify this lower bound, in combination with the @precision attribute to indicate the precision of this statement. One could equally infer an upper bound by assuming that nobody lives longer than 120 years, and document this with the @notAfter attribute on the &amp;lt;death&amp;gt; element. The status of this conjecture and its certainty could be indicated by @evidence and @cert attributes, respectively:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Corey Adams&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1835&amp;quot;&amp;gt;1835&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;1955&amp;quot; precision=&amp;quot;low&amp;quot; cert=&amp;quot;high&amp;quot; evidence=&amp;quot;conjecture&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
The lacking data could be represented by e.g. a question mark as text content of the &amp;lt;death&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
When no birth nor death date is known for a dead person, no precise dates (or approximations) can be given in attributes. Still, it could make sense to have &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, whose text contents indicate this knowledge gap:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth&amp;gt;?&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Circa Dates===&lt;br /&gt;
This issue has been raised on the [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind0903&amp;amp;L=TEI-L&amp;amp;D=0&amp;amp;P=18661 TEI-L mailing list]. Currently, TEI P5 only offers implicit means to indicate that a date is only an approximation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Aischylos&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth precision=&amp;quot;low&amp;quot; when=&amp;quot;-0525&amp;quot;&amp;gt;ca. 525 b.C.&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death precision=&amp;quot;low&amp;quot; when=&amp;quot;-0456&amp;quot;&amp;gt;ca. 456 b.C.&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
...with the @precision attribute indicating the low precision of these statements.&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Yet, depending on the requirements of the encoding, an ideal representation of circa dates could get quite complex, and touches on broader issues concerning an accurate representation of uncertainty. See following resources:&lt;br /&gt;
* [http://www.tfinney.net/Uncertainty/ Tim Finney: 'Uncertainty in text, markup and beyond']&lt;br /&gt;
* [http://sourceforge.net/tracker/?func=detail&amp;amp;aid=3060909&amp;amp;group_id=106328&amp;amp;atid=644065 feature request by Tim Finney]&lt;br /&gt;
&lt;br /&gt;
===Alternative Dates===&lt;br /&gt;
Sometimes, multiple possibilities exist for determining the date of birth or death of a person. When both dates are successive, one could encode this as a date range, with @notBefore and @notAfter, as in this case with two possible birth dates:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Duncan, Isadora&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;1877&amp;quot; notAfter=&amp;quot;1878&amp;quot;&amp;gt;[1877 or] 1878&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1927&amp;quot;&amp;gt;1927&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
When, on the other hand, both dates are non-successive, multiple &amp;lt;birth&amp;gt; or &amp;lt;death&amp;gt; dates can be provided, with an @exclude attribute indicating their exclusive alternation:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Vanhautte, Delphien&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1869-09-02&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Ardooie&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;02.09.1869&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-02-03&amp;quot; xml:id=&amp;quot;d19440203&amp;quot; exclude=&amp;quot;#d19441203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-12-03&amp;quot; xml:id=&amp;quot;d19441203&amp;quot; exclude=&amp;quot;#d19440203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
===Only a period is known===&lt;br /&gt;
Sometimes no exact dates of birth or death are known, while the lifetime can be approximated in a period. As has been remarked by [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rathtz on TEI-L], the period can be approximated by @notBefore and @notAfter attributes on &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, while the ambiguity can be recorded in a &amp;lt;floruit&amp;gt; element:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In his response, [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L] makes a refinement. If the period mentioned does not literally apply to birth and death dates, and in the previous example rather conveys that this person lived the better part of her life in the 3rd century (while she might have been born or died before the start or after the end of that century), the most accurate way of representing this would imply an inversion of the @notBefore and @notAfter attributes on respectively &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Naming==&lt;br /&gt;
===Pseudonyms===&lt;br /&gt;
Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERSEps 13.3.2.2 Personal States] of the TEI Guidelines describes how multiple &amp;lt;persName&amp;gt;s are allowed for a person, possibly categorised with a @type attribute. For pseudonyms, the value 'pseudo' can be used. Hence, the guitarist commonly known as Slash could be described as follows:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This may raise an issue regarding the 'canonicity' of either name. In this case, a bibliographic entry would probably use the pseudonym 'Slash', whereas for less famous people the actual name may be preferred. This 'preference' could be recorded implicitly by the order of the &amp;lt;persNames&amp;gt;, or with the @sort attribute:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName sort=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot; sort=&amp;quot;1&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This could then mean that the pseudonym is the 'canonical' name for this person.&lt;br /&gt;
&lt;br /&gt;
Another question is whether the actual name should then be typed as @type='real'?&lt;br /&gt;
&lt;br /&gt;
===Alternative Names===&lt;br /&gt;
A related issue arises when people are commonly known by another name than their real name. For example, Joe English, a Belgian painter, is actually called Joseph English. I wonder whether a regularisation with &amp;lt;reg&amp;gt; would be the most suitable solution to encode this?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;English, Joe A.M.&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;English&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Joseph A.M.&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Mixing Prose and Structure==&lt;br /&gt;
The TEI P5 Guidelines define the contents &amp;lt;person&amp;gt; as either a collection of highly structured biographical 'fields' (using dedicated elements like &amp;lt;trait&amp;gt;, &amp;lt;occupation&amp;gt;, ...), or a collection of loose prose paragraphs (&amp;amp;lt;p&amp;gt;). Especially when transforming existing biographical records to TEI P5, this exclusive alternation can be unsatisfactory:&lt;br /&gt;
* splitting up all biographical prose into biographical fields may be too demanding&lt;br /&gt;
* OTOH, choosing to retain the description in prose paragraphs also prohibits the specification of basic biographical data in specific fields (&amp;lt;birth&amp;gt;, &amp;lt;death&amp;gt;, &amp;lt;persName&amp;gt;) inside &amp;lt;person&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One (tentative) solution could be to extract record-like information into biographical fields, while grouping the prose descriptions as paragraphs into a &amp;lt;note&amp;gt; element:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person xml:id=&amp;quot;FJ&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;Fabricius, Jan&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Fabricius&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Jan&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1871-09-30&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Assen&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;30.09.1871&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1964-11-23&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Wimborne, Dorset&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;23.11.1964&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;bio&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Journalist, Nederlands toneelschrijver.&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Vader van de schrijver Johan Fabricius. Hoofdredacteur van verschillende bladen, zowel in Nederlands-Indië als in Nederland. &lt;br /&gt;
         In 1938 vestigde hij zich in Engeland. Hoewel Fabricius op latere leeftijd ook enkele romans en drie delen memoires heeft &lt;br /&gt;
         gepubliceerd, ligt zijn betekenis in zijn toneelwerk. Zijn technische vaardigheid en meesterschap in het schrijven van een &lt;br /&gt;
         dialoog, maken zijn stukken goed speelbaar. Kind van een tijd die het realisme beoefende (Heijermans, Hauptmann), kon hij &lt;br /&gt;
         toch niet de romantiek geheel laten varen. Het handelingsverloop is vaak gewild; er wordt dan bewust aangestuurd op een &lt;br /&gt;
         aandoenlijke werking, zodat sommige van zijn stukken het predikaat 'melodramatisch' verdienen. Gedreven door een sterk gevoel &lt;br /&gt;
         voor rechtvaardigheid zocht hij zijn gegevens in de problematiek van milieus die hem vertrouwd waren: het boerenland van &lt;br /&gt;
         Groningen en Drente, de planterswereld van Indië. Fabricius' werk werd in Nederland en ook in het buitenland met succes opgevoerd. &lt;br /&gt;
         Tot zijn bekendste werken behoren &amp;lt;title&amp;gt;Eenzaam&amp;lt;/title&amp;gt; (1907) en &amp;lt;title&amp;gt;Dolle Hans&amp;lt;/title&amp;gt; (1916). Sommige stukken zijn vertaald &lt;br /&gt;
         in het Frans, Duits, Engels, Noors, Deens, Fries en Gronings. &lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;ref&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;&lt;br /&gt;
        &amp;lt;ptr ref=&amp;quot;http://www.dbnl.org/auteurs/borkv/Fabr004.htm&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This allows to group other types of information into other notes as well, distinguished by means of appropriate values for their @type attributes.&lt;br /&gt;
&lt;br /&gt;
==Traits, States, and Events==&lt;br /&gt;
The Guidelines use traits, states, and events as basic categories for prosopography. Traits differ from states in being generally immutable. It may be that the distinction between states and traits is unnecessary. Almost every member of model.persTraitLike (age faith langKnowledge nationality s*x socecStatus trait) can change. Dropping &amp;quot;trait&amp;quot; leaves a simple yet expressive model where entities are described by states and state-transitions (i.e. events).&lt;br /&gt;
&lt;br /&gt;
==Relations==&lt;br /&gt;
At the moment, relations are defined by attributes such as name, active and passive:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation name=&amp;quot;parent&amp;quot; active=&amp;quot;#p1 #p2&amp;quot; passive=&amp;quot;#p3 #p4&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An alternative would be to use RDF-like subject, predicate, object triples:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation subject=&amp;quot;#p1&amp;quot; predicate=&amp;quot;child-of&amp;quot; object=&amp;quot;#p2&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the relation element was allowed inside a person element (which would be a good thing) then the subject would be implicit and need not be specified.&lt;br /&gt;
&lt;br /&gt;
[[Category:Markup]]&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8907</id>
		<title>Prosopography</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8907"/>
		<updated>2011-03-09T08:14:51Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: /* Traits, States, and Events */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERS 13.3 Prosopography] of the TEI Guidelines discusses how the elements and attributes from the TEI P5 [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#index-body.1_div.13_div.4 namesdates module] can be used to mark up prosopographical data.&lt;br /&gt;
&lt;br /&gt;
This wiki page attempts to summarise a number of issues in recording prosopographical data, and aims to provide a (sometimes personal) starting point for discussion and sharing of encoding experiences and insights. Rather than a documentation of best practice, it focuses on possible approaches for encoding some prosopographical phenomena, and tries to find sensible ones.&lt;br /&gt;
&lt;br /&gt;
==Dating==&lt;br /&gt;
===Unknown dates vs. lacking dates===&lt;br /&gt;
Birth and death dates can only be recorded if they are known. Yet, omitting the &amp;lt;death&amp;gt; element from a &amp;lt;person&amp;gt; description may lead to ambiguity. Consider following example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Does this indicate:&lt;br /&gt;
* that the person is still living?&lt;br /&gt;
* that the person has died but the date of death is unknown?&lt;br /&gt;
(Obviously, this ambiguity does not hold for birth dates, as can be assumed that all existing persons must have been born.)&lt;br /&gt;
&lt;br /&gt;
In order to resolve this ambiguity, it could be assumed that a description in a &amp;lt;person&amp;gt; element withouth &amp;lt;death&amp;gt; element would relate to a living person. When the person is known to have died, a &amp;lt;death&amp;gt; statement would then be required. If only the birth date is known, this can be used as a lower bound for the possible date of death:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;1935&amp;quot; precision=&amp;quot;low&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Note how the @notBefore attribute is used to specify this lower bound, in combination with the @precision attribute to indicate the precision of this statement. One could equally infer an upper bound by assuming that nobody lives longer than 120 years, and document this with the @notAfter attribute on the &amp;lt;death&amp;gt; element. The status of this conjecture and its certainty could be indicated by @evidence and @cert attributes, respectively:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Corey Adams&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1835&amp;quot;&amp;gt;1835&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;1955&amp;quot; precision=&amp;quot;low&amp;quot; cert=&amp;quot;high&amp;quot; evidence=&amp;quot;conjecture&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
The lacking data could be represented by e.g. a question mark as text content of the &amp;lt;death&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
When no birth nor death date is known for a dead person, no precise dates (or approximations) can be given in attributes. Still, it could make sense to have &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, whose text contents indicate this knowledge gap:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth&amp;gt;?&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Circa Dates===&lt;br /&gt;
This issue has been raised on the [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind0903&amp;amp;L=TEI-L&amp;amp;D=0&amp;amp;P=18661 TEI-L mailing list]. Currently, TEI P5 only offers implicit means to indicate that a date is only an approximation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Aischylos&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth precision=&amp;quot;low&amp;quot; when=&amp;quot;-0525&amp;quot;&amp;gt;ca. 525 b.C.&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death precision=&amp;quot;low&amp;quot; when=&amp;quot;-0456&amp;quot;&amp;gt;ca. 456 b.C.&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
...with the @precision attribute indicating the low precision of these statements.&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Yet, depending on the requirements of the encoding, an ideal representation of circa dates could get quite complex, and touches on broader issues concerning an accurate representation of uncertainty. See following resources:&lt;br /&gt;
* [http://www.tfinney.net/Uncertainty/ Tim Finney: 'Uncertainty in text, markup and beyond']&lt;br /&gt;
* [http://sourceforge.net/tracker/?func=detail&amp;amp;aid=3060909&amp;amp;group_id=106328&amp;amp;atid=644065 feature request by Tim Finney]&lt;br /&gt;
&lt;br /&gt;
===Alternative Dates===&lt;br /&gt;
Sometimes, multiple possibilities exist for determining the date of birth or death of a person. When both dates are successive, one could encode this as a date range, with @notBefore and @notAfter, as in this case with two possible birth dates:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Duncan, Isadora&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;1877&amp;quot; notAfter=&amp;quot;1878&amp;quot;&amp;gt;[1877 or] 1878&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1927&amp;quot;&amp;gt;1927&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
When, on the other hand, both dates are non-successive, multiple &amp;lt;birth&amp;gt; or &amp;lt;death&amp;gt; dates can be provided, with an @exclude attribute indicating their exclusive alternation:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Vanhautte, Delphien&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1869-09-02&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Ardooie&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;02.09.1869&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-02-03&amp;quot; xml:id=&amp;quot;d19440203&amp;quot; exclude=&amp;quot;#d19441203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-12-03&amp;quot; xml:id=&amp;quot;d19441203&amp;quot; exclude=&amp;quot;#d19440203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
===Only a period is known===&lt;br /&gt;
Sometimes no exact dates of birth or death are known, while the lifetime can be approximated in a period. As has been remarked by [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rathtz on TEI-L], the period can be approximated by @notBefore and @notAfter attributes on &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, while the ambiguity can be recorded in a &amp;lt;floruit&amp;gt; element:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In his response, [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L] makes a refinement. If the period mentioned does not literally apply to birth and death dates, and in the previous example rather conveys that this person lived the better part of her life in the 3rd century (while she might have been born or died before the start or after the end of that century), the most accurate way of representing this would imply an inversion of the @notBefore and @notAfter attributes on respectively &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Naming==&lt;br /&gt;
===Pseudonyms===&lt;br /&gt;
Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERSEps 13.3.2.2 Personal States] of the TEI Guidelines describes how multiple &amp;lt;persName&amp;gt;s are allowed for a person, possibly categorised with a @type attribute. For pseudonyms, the value 'pseudo' can be used. Hence, the guitarist commonly known as Slash could be described as follows:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This may raise an issue regarding the 'canonicity' of either name. In this case, a bibliographic entry would probably use the pseudonym 'Slash', whereas for less famous people the actual name may be preferred. This 'preference' could be recorded implicitly by the order of the &amp;lt;persNames&amp;gt;, or with the @sort attribute:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName sort=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot; sort=&amp;quot;1&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This could then mean that the pseudonym is the 'canonical' name for this person.&lt;br /&gt;
&lt;br /&gt;
Another question is whether the actual name should then be typed as @type='real'?&lt;br /&gt;
&lt;br /&gt;
===Alternative Names===&lt;br /&gt;
A related issue arises when people are commonly known by another name than their real name. For example, Joe English, a Belgian painter, is actually called Joseph English. I wonder whether a regularisation with &amp;lt;reg&amp;gt; would be the most suitable solution to encode this?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;English, Joe A.M.&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;English&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Joseph A.M.&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Mixing Prose and Structure==&lt;br /&gt;
The TEI P5 Guidelines define the contents &amp;lt;person&amp;gt; as either a collection of highly structured biographical 'fields' (using dedicated elements like &amp;lt;trait&amp;gt;, &amp;lt;occupation&amp;gt;, ...), or a collection of loose prose paragraphs (&amp;amp;lt;p&amp;gt;). Especially when transforming existing biographical records to TEI P5, this exclusive alternation can be unsatisfactory:&lt;br /&gt;
* splitting up all biographical prose into biographical fields may be too demanding&lt;br /&gt;
* OTOH, choosing to retain the description in prose paragraphs also prohibits the specification of basic biographical data in specific fields (&amp;lt;birth&amp;gt;, &amp;lt;death&amp;gt;, &amp;lt;persName&amp;gt;) inside &amp;lt;person&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One (tentative) solution could be to extract record-like information into biographical fields, while grouping the prose descriptions as paragraphs into a &amp;lt;note&amp;gt; element:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person xml:id=&amp;quot;FJ&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;Fabricius, Jan&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Fabricius&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Jan&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1871-09-30&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Assen&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;30.09.1871&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1964-11-23&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Wimborne, Dorset&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;23.11.1964&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;bio&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Journalist, Nederlands toneelschrijver.&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Vader van de schrijver Johan Fabricius. Hoofdredacteur van verschillende bladen, zowel in Nederlands-Indië als in Nederland. &lt;br /&gt;
         In 1938 vestigde hij zich in Engeland. Hoewel Fabricius op latere leeftijd ook enkele romans en drie delen memoires heeft &lt;br /&gt;
         gepubliceerd, ligt zijn betekenis in zijn toneelwerk. Zijn technische vaardigheid en meesterschap in het schrijven van een &lt;br /&gt;
         dialoog, maken zijn stukken goed speelbaar. Kind van een tijd die het realisme beoefende (Heijermans, Hauptmann), kon hij &lt;br /&gt;
         toch niet de romantiek geheel laten varen. Het handelingsverloop is vaak gewild; er wordt dan bewust aangestuurd op een &lt;br /&gt;
         aandoenlijke werking, zodat sommige van zijn stukken het predikaat 'melodramatisch' verdienen. Gedreven door een sterk gevoel &lt;br /&gt;
         voor rechtvaardigheid zocht hij zijn gegevens in de problematiek van milieus die hem vertrouwd waren: het boerenland van &lt;br /&gt;
         Groningen en Drente, de planterswereld van Indië. Fabricius' werk werd in Nederland en ook in het buitenland met succes opgevoerd. &lt;br /&gt;
         Tot zijn bekendste werken behoren &amp;lt;title&amp;gt;Eenzaam&amp;lt;/title&amp;gt; (1907) en &amp;lt;title&amp;gt;Dolle Hans&amp;lt;/title&amp;gt; (1916). Sommige stukken zijn vertaald &lt;br /&gt;
         in het Frans, Duits, Engels, Noors, Deens, Fries en Gronings. &lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;ref&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;&lt;br /&gt;
        &amp;lt;ptr ref=&amp;quot;http://www.dbnl.org/auteurs/borkv/Fabr004.htm&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This allows to group other types of information into other notes as well, distinguished by means of appropriate values for their @type attributes.&lt;br /&gt;
&lt;br /&gt;
==Traits, States, and Events==&lt;br /&gt;
The Guidelines use traits, states, and events as basic categories for prosopography. Traits differ from states in being generally immutable. It may be that the distinction between states and traits is unnecessary. Almost every member of model.persTraitLike (age faith langKnowledge nationality s*x socecStatus trait) can change. Dropping &amp;quot;trait&amp;quot; leaves a simple yet expressive model where entities are described by states and state-transitions (i.e. events).&lt;br /&gt;
&lt;br /&gt;
==Relations==&lt;br /&gt;
At the moment, relations are defined by attributes such as name, active and passive:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation name=&amp;quot;parent&amp;quot; active=&amp;quot;#p1 #p2&amp;quot; passive=&amp;quot;#p3 #p4&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An alternative would be to use RDF-like subject, predicate, object triples:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation subject=&amp;quot;#p1&amp;quot; predicate=&amp;quot;child-of&amp;quot; object=&amp;quot;#p2&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the relation object was allowed inside a person element then the subject would be implicit.&lt;br /&gt;
&lt;br /&gt;
[[Category:Markup]]&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8906</id>
		<title>Prosopography</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8906"/>
		<updated>2011-03-09T08:14:15Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: /* Traits, States, and Events */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERS 13.3 Prosopography] of the TEI Guidelines discusses how the elements and attributes from the TEI P5 [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#index-body.1_div.13_div.4 namesdates module] can be used to mark up prosopographical data.&lt;br /&gt;
&lt;br /&gt;
This wiki page attempts to summarise a number of issues in recording prosopographical data, and aims to provide a (sometimes personal) starting point for discussion and sharing of encoding experiences and insights. Rather than a documentation of best practice, it focuses on possible approaches for encoding some prosopographical phenomena, and tries to find sensible ones.&lt;br /&gt;
&lt;br /&gt;
==Dating==&lt;br /&gt;
===Unknown dates vs. lacking dates===&lt;br /&gt;
Birth and death dates can only be recorded if they are known. Yet, omitting the &amp;lt;death&amp;gt; element from a &amp;lt;person&amp;gt; description may lead to ambiguity. Consider following example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Does this indicate:&lt;br /&gt;
* that the person is still living?&lt;br /&gt;
* that the person has died but the date of death is unknown?&lt;br /&gt;
(Obviously, this ambiguity does not hold for birth dates, as can be assumed that all existing persons must have been born.)&lt;br /&gt;
&lt;br /&gt;
In order to resolve this ambiguity, it could be assumed that a description in a &amp;lt;person&amp;gt; element withouth &amp;lt;death&amp;gt; element would relate to a living person. When the person is known to have died, a &amp;lt;death&amp;gt; statement would then be required. If only the birth date is known, this can be used as a lower bound for the possible date of death:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;1935&amp;quot; precision=&amp;quot;low&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Note how the @notBefore attribute is used to specify this lower bound, in combination with the @precision attribute to indicate the precision of this statement. One could equally infer an upper bound by assuming that nobody lives longer than 120 years, and document this with the @notAfter attribute on the &amp;lt;death&amp;gt; element. The status of this conjecture and its certainty could be indicated by @evidence and @cert attributes, respectively:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Corey Adams&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1835&amp;quot;&amp;gt;1835&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;1955&amp;quot; precision=&amp;quot;low&amp;quot; cert=&amp;quot;high&amp;quot; evidence=&amp;quot;conjecture&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
The lacking data could be represented by e.g. a question mark as text content of the &amp;lt;death&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
When no birth nor death date is known for a dead person, no precise dates (or approximations) can be given in attributes. Still, it could make sense to have &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, whose text contents indicate this knowledge gap:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth&amp;gt;?&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Circa Dates===&lt;br /&gt;
This issue has been raised on the [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind0903&amp;amp;L=TEI-L&amp;amp;D=0&amp;amp;P=18661 TEI-L mailing list]. Currently, TEI P5 only offers implicit means to indicate that a date is only an approximation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Aischylos&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth precision=&amp;quot;low&amp;quot; when=&amp;quot;-0525&amp;quot;&amp;gt;ca. 525 b.C.&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death precision=&amp;quot;low&amp;quot; when=&amp;quot;-0456&amp;quot;&amp;gt;ca. 456 b.C.&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
...with the @precision attribute indicating the low precision of these statements.&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Yet, depending on the requirements of the encoding, an ideal representation of circa dates could get quite complex, and touches on broader issues concerning an accurate representation of uncertainty. See following resources:&lt;br /&gt;
* [http://www.tfinney.net/Uncertainty/ Tim Finney: 'Uncertainty in text, markup and beyond']&lt;br /&gt;
* [http://sourceforge.net/tracker/?func=detail&amp;amp;aid=3060909&amp;amp;group_id=106328&amp;amp;atid=644065 feature request by Tim Finney]&lt;br /&gt;
&lt;br /&gt;
===Alternative Dates===&lt;br /&gt;
Sometimes, multiple possibilities exist for determining the date of birth or death of a person. When both dates are successive, one could encode this as a date range, with @notBefore and @notAfter, as in this case with two possible birth dates:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Duncan, Isadora&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;1877&amp;quot; notAfter=&amp;quot;1878&amp;quot;&amp;gt;[1877 or] 1878&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1927&amp;quot;&amp;gt;1927&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
When, on the other hand, both dates are non-successive, multiple &amp;lt;birth&amp;gt; or &amp;lt;death&amp;gt; dates can be provided, with an @exclude attribute indicating their exclusive alternation:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Vanhautte, Delphien&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1869-09-02&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Ardooie&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;02.09.1869&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-02-03&amp;quot; xml:id=&amp;quot;d19440203&amp;quot; exclude=&amp;quot;#d19441203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-12-03&amp;quot; xml:id=&amp;quot;d19441203&amp;quot; exclude=&amp;quot;#d19440203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
===Only a period is known===&lt;br /&gt;
Sometimes no exact dates of birth or death are known, while the lifetime can be approximated in a period. As has been remarked by [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rathtz on TEI-L], the period can be approximated by @notBefore and @notAfter attributes on &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, while the ambiguity can be recorded in a &amp;lt;floruit&amp;gt; element:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In his response, [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L] makes a refinement. If the period mentioned does not literally apply to birth and death dates, and in the previous example rather conveys that this person lived the better part of her life in the 3rd century (while she might have been born or died before the start or after the end of that century), the most accurate way of representing this would imply an inversion of the @notBefore and @notAfter attributes on respectively &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Naming==&lt;br /&gt;
===Pseudonyms===&lt;br /&gt;
Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERSEps 13.3.2.2 Personal States] of the TEI Guidelines describes how multiple &amp;lt;persName&amp;gt;s are allowed for a person, possibly categorised with a @type attribute. For pseudonyms, the value 'pseudo' can be used. Hence, the guitarist commonly known as Slash could be described as follows:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This may raise an issue regarding the 'canonicity' of either name. In this case, a bibliographic entry would probably use the pseudonym 'Slash', whereas for less famous people the actual name may be preferred. This 'preference' could be recorded implicitly by the order of the &amp;lt;persNames&amp;gt;, or with the @sort attribute:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName sort=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot; sort=&amp;quot;1&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This could then mean that the pseudonym is the 'canonical' name for this person.&lt;br /&gt;
&lt;br /&gt;
Another question is whether the actual name should then be typed as @type='real'?&lt;br /&gt;
&lt;br /&gt;
===Alternative Names===&lt;br /&gt;
A related issue arises when people are commonly known by another name than their real name. For example, Joe English, a Belgian painter, is actually called Joseph English. I wonder whether a regularisation with &amp;lt;reg&amp;gt; would be the most suitable solution to encode this?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;English, Joe A.M.&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;English&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Joseph A.M.&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Mixing Prose and Structure==&lt;br /&gt;
The TEI P5 Guidelines define the contents &amp;lt;person&amp;gt; as either a collection of highly structured biographical 'fields' (using dedicated elements like &amp;lt;trait&amp;gt;, &amp;lt;occupation&amp;gt;, ...), or a collection of loose prose paragraphs (&amp;amp;lt;p&amp;gt;). Especially when transforming existing biographical records to TEI P5, this exclusive alternation can be unsatisfactory:&lt;br /&gt;
* splitting up all biographical prose into biographical fields may be too demanding&lt;br /&gt;
* OTOH, choosing to retain the description in prose paragraphs also prohibits the specification of basic biographical data in specific fields (&amp;lt;birth&amp;gt;, &amp;lt;death&amp;gt;, &amp;lt;persName&amp;gt;) inside &amp;lt;person&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One (tentative) solution could be to extract record-like information into biographical fields, while grouping the prose descriptions as paragraphs into a &amp;lt;note&amp;gt; element:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person xml:id=&amp;quot;FJ&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;Fabricius, Jan&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Fabricius&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Jan&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1871-09-30&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Assen&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;30.09.1871&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1964-11-23&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Wimborne, Dorset&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;23.11.1964&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;bio&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Journalist, Nederlands toneelschrijver.&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Vader van de schrijver Johan Fabricius. Hoofdredacteur van verschillende bladen, zowel in Nederlands-Indië als in Nederland. &lt;br /&gt;
         In 1938 vestigde hij zich in Engeland. Hoewel Fabricius op latere leeftijd ook enkele romans en drie delen memoires heeft &lt;br /&gt;
         gepubliceerd, ligt zijn betekenis in zijn toneelwerk. Zijn technische vaardigheid en meesterschap in het schrijven van een &lt;br /&gt;
         dialoog, maken zijn stukken goed speelbaar. Kind van een tijd die het realisme beoefende (Heijermans, Hauptmann), kon hij &lt;br /&gt;
         toch niet de romantiek geheel laten varen. Het handelingsverloop is vaak gewild; er wordt dan bewust aangestuurd op een &lt;br /&gt;
         aandoenlijke werking, zodat sommige van zijn stukken het predikaat 'melodramatisch' verdienen. Gedreven door een sterk gevoel &lt;br /&gt;
         voor rechtvaardigheid zocht hij zijn gegevens in de problematiek van milieus die hem vertrouwd waren: het boerenland van &lt;br /&gt;
         Groningen en Drente, de planterswereld van Indië. Fabricius' werk werd in Nederland en ook in het buitenland met succes opgevoerd. &lt;br /&gt;
         Tot zijn bekendste werken behoren &amp;lt;title&amp;gt;Eenzaam&amp;lt;/title&amp;gt; (1907) en &amp;lt;title&amp;gt;Dolle Hans&amp;lt;/title&amp;gt; (1916). Sommige stukken zijn vertaald &lt;br /&gt;
         in het Frans, Duits, Engels, Noors, Deens, Fries en Gronings. &lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;ref&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;&lt;br /&gt;
        &amp;lt;ptr ref=&amp;quot;http://www.dbnl.org/auteurs/borkv/Fabr004.htm&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This allows to group other types of information into other notes as well, distinguished by means of appropriate values for their @type attributes.&lt;br /&gt;
&lt;br /&gt;
==Traits, States, and Events==&lt;br /&gt;
The Guidelines use traits, states, and events as basic categories. Traits differ from states in being generally immutable. It may be that the distinction between states and traits is unnecessary. Almost every member of model.persTraitLike (age faith langKnowledge nationality s*x socecStatus trait) can change. Dropping &amp;quot;trait&amp;quot; leaves a simple yet expressive model where entities are described by states and state-transitions (i.e. events).&lt;br /&gt;
&lt;br /&gt;
==Relations==&lt;br /&gt;
At the moment, relations are defined by attributes such as name, active and passive:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation name=&amp;quot;parent&amp;quot; active=&amp;quot;#p1 #p2&amp;quot; passive=&amp;quot;#p3 #p4&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An alternative would be to use RDF-like subject, predicate, object triples:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation subject=&amp;quot;#p1&amp;quot; predicate=&amp;quot;child-of&amp;quot; object=&amp;quot;#p2&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the relation object was allowed inside a person element then the subject would be implicit.&lt;br /&gt;
&lt;br /&gt;
[[Category:Markup]]&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8905</id>
		<title>Prosopography</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8905"/>
		<updated>2011-03-09T08:12:39Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: /* Relations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERS 13.3 Prosopography] of the TEI Guidelines discusses how the elements and attributes from the TEI P5 [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#index-body.1_div.13_div.4 namesdates module] can be used to mark up prosopographical data.&lt;br /&gt;
&lt;br /&gt;
This wiki page attempts to summarise a number of issues in recording prosopographical data, and aims to provide a (sometimes personal) starting point for discussion and sharing of encoding experiences and insights. Rather than a documentation of best practice, it focuses on possible approaches for encoding some prosopographical phenomena, and tries to find sensible ones.&lt;br /&gt;
&lt;br /&gt;
==Dating==&lt;br /&gt;
===Unknown dates vs. lacking dates===&lt;br /&gt;
Birth and death dates can only be recorded if they are known. Yet, omitting the &amp;lt;death&amp;gt; element from a &amp;lt;person&amp;gt; description may lead to ambiguity. Consider following example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Does this indicate:&lt;br /&gt;
* that the person is still living?&lt;br /&gt;
* that the person has died but the date of death is unknown?&lt;br /&gt;
(Obviously, this ambiguity does not hold for birth dates, as can be assumed that all existing persons must have been born.)&lt;br /&gt;
&lt;br /&gt;
In order to resolve this ambiguity, it could be assumed that a description in a &amp;lt;person&amp;gt; element withouth &amp;lt;death&amp;gt; element would relate to a living person. When the person is known to have died, a &amp;lt;death&amp;gt; statement would then be required. If only the birth date is known, this can be used as a lower bound for the possible date of death:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;1935&amp;quot; precision=&amp;quot;low&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Note how the @notBefore attribute is used to specify this lower bound, in combination with the @precision attribute to indicate the precision of this statement. One could equally infer an upper bound by assuming that nobody lives longer than 120 years, and document this with the @notAfter attribute on the &amp;lt;death&amp;gt; element. The status of this conjecture and its certainty could be indicated by @evidence and @cert attributes, respectively:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Corey Adams&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1835&amp;quot;&amp;gt;1835&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;1955&amp;quot; precision=&amp;quot;low&amp;quot; cert=&amp;quot;high&amp;quot; evidence=&amp;quot;conjecture&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
The lacking data could be represented by e.g. a question mark as text content of the &amp;lt;death&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
When no birth nor death date is known for a dead person, no precise dates (or approximations) can be given in attributes. Still, it could make sense to have &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, whose text contents indicate this knowledge gap:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth&amp;gt;?&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Circa Dates===&lt;br /&gt;
This issue has been raised on the [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind0903&amp;amp;L=TEI-L&amp;amp;D=0&amp;amp;P=18661 TEI-L mailing list]. Currently, TEI P5 only offers implicit means to indicate that a date is only an approximation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Aischylos&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth precision=&amp;quot;low&amp;quot; when=&amp;quot;-0525&amp;quot;&amp;gt;ca. 525 b.C.&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death precision=&amp;quot;low&amp;quot; when=&amp;quot;-0456&amp;quot;&amp;gt;ca. 456 b.C.&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
...with the @precision attribute indicating the low precision of these statements.&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Yet, depending on the requirements of the encoding, an ideal representation of circa dates could get quite complex, and touches on broader issues concerning an accurate representation of uncertainty. See following resources:&lt;br /&gt;
* [http://www.tfinney.net/Uncertainty/ Tim Finney: 'Uncertainty in text, markup and beyond']&lt;br /&gt;
* [http://sourceforge.net/tracker/?func=detail&amp;amp;aid=3060909&amp;amp;group_id=106328&amp;amp;atid=644065 feature request by Tim Finney]&lt;br /&gt;
&lt;br /&gt;
===Alternative Dates===&lt;br /&gt;
Sometimes, multiple possibilities exist for determining the date of birth or death of a person. When both dates are successive, one could encode this as a date range, with @notBefore and @notAfter, as in this case with two possible birth dates:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Duncan, Isadora&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;1877&amp;quot; notAfter=&amp;quot;1878&amp;quot;&amp;gt;[1877 or] 1878&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1927&amp;quot;&amp;gt;1927&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
When, on the other hand, both dates are non-successive, multiple &amp;lt;birth&amp;gt; or &amp;lt;death&amp;gt; dates can be provided, with an @exclude attribute indicating their exclusive alternation:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Vanhautte, Delphien&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1869-09-02&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Ardooie&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;02.09.1869&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-02-03&amp;quot; xml:id=&amp;quot;d19440203&amp;quot; exclude=&amp;quot;#d19441203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-12-03&amp;quot; xml:id=&amp;quot;d19441203&amp;quot; exclude=&amp;quot;#d19440203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
===Only a period is known===&lt;br /&gt;
Sometimes no exact dates of birth or death are known, while the lifetime can be approximated in a period. As has been remarked by [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rathtz on TEI-L], the period can be approximated by @notBefore and @notAfter attributes on &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, while the ambiguity can be recorded in a &amp;lt;floruit&amp;gt; element:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In his response, [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L] makes a refinement. If the period mentioned does not literally apply to birth and death dates, and in the previous example rather conveys that this person lived the better part of her life in the 3rd century (while she might have been born or died before the start or after the end of that century), the most accurate way of representing this would imply an inversion of the @notBefore and @notAfter attributes on respectively &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Naming==&lt;br /&gt;
===Pseudonyms===&lt;br /&gt;
Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERSEps 13.3.2.2 Personal States] of the TEI Guidelines describes how multiple &amp;lt;persName&amp;gt;s are allowed for a person, possibly categorised with a @type attribute. For pseudonyms, the value 'pseudo' can be used. Hence, the guitarist commonly known as Slash could be described as follows:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This may raise an issue regarding the 'canonicity' of either name. In this case, a bibliographic entry would probably use the pseudonym 'Slash', whereas for less famous people the actual name may be preferred. This 'preference' could be recorded implicitly by the order of the &amp;lt;persNames&amp;gt;, or with the @sort attribute:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName sort=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot; sort=&amp;quot;1&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This could then mean that the pseudonym is the 'canonical' name for this person.&lt;br /&gt;
&lt;br /&gt;
Another question is whether the actual name should then be typed as @type='real'?&lt;br /&gt;
&lt;br /&gt;
===Alternative Names===&lt;br /&gt;
A related issue arises when people are commonly known by another name than their real name. For example, Joe English, a Belgian painter, is actually called Joseph English. I wonder whether a regularisation with &amp;lt;reg&amp;gt; would be the most suitable solution to encode this?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;English, Joe A.M.&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;English&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Joseph A.M.&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Mixing Prose and Structure==&lt;br /&gt;
The TEI P5 Guidelines define the contents &amp;lt;person&amp;gt; as either a collection of highly structured biographical 'fields' (using dedicated elements like &amp;lt;trait&amp;gt;, &amp;lt;occupation&amp;gt;, ...), or a collection of loose prose paragraphs (&amp;amp;lt;p&amp;gt;). Especially when transforming existing biographical records to TEI P5, this exclusive alternation can be unsatisfactory:&lt;br /&gt;
* splitting up all biographical prose into biographical fields may be too demanding&lt;br /&gt;
* OTOH, choosing to retain the description in prose paragraphs also prohibits the specification of basic biographical data in specific fields (&amp;lt;birth&amp;gt;, &amp;lt;death&amp;gt;, &amp;lt;persName&amp;gt;) inside &amp;lt;person&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One (tentative) solution could be to extract record-like information into biographical fields, while grouping the prose descriptions as paragraphs into a &amp;lt;note&amp;gt; element:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person xml:id=&amp;quot;FJ&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;Fabricius, Jan&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Fabricius&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Jan&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1871-09-30&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Assen&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;30.09.1871&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1964-11-23&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Wimborne, Dorset&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;23.11.1964&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;bio&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Journalist, Nederlands toneelschrijver.&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Vader van de schrijver Johan Fabricius. Hoofdredacteur van verschillende bladen, zowel in Nederlands-Indië als in Nederland. &lt;br /&gt;
         In 1938 vestigde hij zich in Engeland. Hoewel Fabricius op latere leeftijd ook enkele romans en drie delen memoires heeft &lt;br /&gt;
         gepubliceerd, ligt zijn betekenis in zijn toneelwerk. Zijn technische vaardigheid en meesterschap in het schrijven van een &lt;br /&gt;
         dialoog, maken zijn stukken goed speelbaar. Kind van een tijd die het realisme beoefende (Heijermans, Hauptmann), kon hij &lt;br /&gt;
         toch niet de romantiek geheel laten varen. Het handelingsverloop is vaak gewild; er wordt dan bewust aangestuurd op een &lt;br /&gt;
         aandoenlijke werking, zodat sommige van zijn stukken het predikaat 'melodramatisch' verdienen. Gedreven door een sterk gevoel &lt;br /&gt;
         voor rechtvaardigheid zocht hij zijn gegevens in de problematiek van milieus die hem vertrouwd waren: het boerenland van &lt;br /&gt;
         Groningen en Drente, de planterswereld van Indië. Fabricius' werk werd in Nederland en ook in het buitenland met succes opgevoerd. &lt;br /&gt;
         Tot zijn bekendste werken behoren &amp;lt;title&amp;gt;Eenzaam&amp;lt;/title&amp;gt; (1907) en &amp;lt;title&amp;gt;Dolle Hans&amp;lt;/title&amp;gt; (1916). Sommige stukken zijn vertaald &lt;br /&gt;
         in het Frans, Duits, Engels, Noors, Deens, Fries en Gronings. &lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;ref&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;&lt;br /&gt;
        &amp;lt;ptr ref=&amp;quot;http://www.dbnl.org/auteurs/borkv/Fabr004.htm&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This allows to group other types of information into other notes as well, distinguished by means of appropriate values for their @type attributes.&lt;br /&gt;
&lt;br /&gt;
==Traits, States, and Events==&lt;br /&gt;
The Guidelines use traits, states, and events as basic categories. Traits differ from states in being generally immutable. It may be that the distinction between states and traits is unnecessary. Almost every member of model.persTraitLike (age faith langKnowledge nationality s*x socecStatus trait) can change. Dropping &amp;quot;trait&amp;quot; leaves a simple yet expressive model where entities are defined by states and state-transitions (i.e. events).&lt;br /&gt;
&lt;br /&gt;
==Relations==&lt;br /&gt;
At the moment, relations are defined by attributes such as name, active and passive:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation name=&amp;quot;parent&amp;quot; active=&amp;quot;#p1 #p2&amp;quot; passive=&amp;quot;#p3 #p4&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An alternative would be to use RDF-like subject, predicate, object triples:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation subject=&amp;quot;#p1&amp;quot; predicate=&amp;quot;child-of&amp;quot; object=&amp;quot;#p2&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the relation object was allowed inside a person element then the subject would be implicit.&lt;br /&gt;
&lt;br /&gt;
[[Category:Markup]]&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8904</id>
		<title>Prosopography</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8904"/>
		<updated>2011-03-09T08:07:01Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: /* Traits, States, and Events */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERS 13.3 Prosopography] of the TEI Guidelines discusses how the elements and attributes from the TEI P5 [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#index-body.1_div.13_div.4 namesdates module] can be used to mark up prosopographical data.&lt;br /&gt;
&lt;br /&gt;
This wiki page attempts to summarise a number of issues in recording prosopographical data, and aims to provide a (sometimes personal) starting point for discussion and sharing of encoding experiences and insights. Rather than a documentation of best practice, it focuses on possible approaches for encoding some prosopographical phenomena, and tries to find sensible ones.&lt;br /&gt;
&lt;br /&gt;
==Dating==&lt;br /&gt;
===Unknown dates vs. lacking dates===&lt;br /&gt;
Birth and death dates can only be recorded if they are known. Yet, omitting the &amp;lt;death&amp;gt; element from a &amp;lt;person&amp;gt; description may lead to ambiguity. Consider following example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Does this indicate:&lt;br /&gt;
* that the person is still living?&lt;br /&gt;
* that the person has died but the date of death is unknown?&lt;br /&gt;
(Obviously, this ambiguity does not hold for birth dates, as can be assumed that all existing persons must have been born.)&lt;br /&gt;
&lt;br /&gt;
In order to resolve this ambiguity, it could be assumed that a description in a &amp;lt;person&amp;gt; element withouth &amp;lt;death&amp;gt; element would relate to a living person. When the person is known to have died, a &amp;lt;death&amp;gt; statement would then be required. If only the birth date is known, this can be used as a lower bound for the possible date of death:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;1935&amp;quot; precision=&amp;quot;low&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Note how the @notBefore attribute is used to specify this lower bound, in combination with the @precision attribute to indicate the precision of this statement. One could equally infer an upper bound by assuming that nobody lives longer than 120 years, and document this with the @notAfter attribute on the &amp;lt;death&amp;gt; element. The status of this conjecture and its certainty could be indicated by @evidence and @cert attributes, respectively:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Corey Adams&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1835&amp;quot;&amp;gt;1835&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;1955&amp;quot; precision=&amp;quot;low&amp;quot; cert=&amp;quot;high&amp;quot; evidence=&amp;quot;conjecture&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
The lacking data could be represented by e.g. a question mark as text content of the &amp;lt;death&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
When no birth nor death date is known for a dead person, no precise dates (or approximations) can be given in attributes. Still, it could make sense to have &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, whose text contents indicate this knowledge gap:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth&amp;gt;?&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Circa Dates===&lt;br /&gt;
This issue has been raised on the [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind0903&amp;amp;L=TEI-L&amp;amp;D=0&amp;amp;P=18661 TEI-L mailing list]. Currently, TEI P5 only offers implicit means to indicate that a date is only an approximation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Aischylos&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth precision=&amp;quot;low&amp;quot; when=&amp;quot;-0525&amp;quot;&amp;gt;ca. 525 b.C.&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death precision=&amp;quot;low&amp;quot; when=&amp;quot;-0456&amp;quot;&amp;gt;ca. 456 b.C.&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
...with the @precision attribute indicating the low precision of these statements.&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Yet, depending on the requirements of the encoding, an ideal representation of circa dates could get quite complex, and touches on broader issues concerning an accurate representation of uncertainty. See following resources:&lt;br /&gt;
* [http://www.tfinney.net/Uncertainty/ Tim Finney: 'Uncertainty in text, markup and beyond']&lt;br /&gt;
* [http://sourceforge.net/tracker/?func=detail&amp;amp;aid=3060909&amp;amp;group_id=106328&amp;amp;atid=644065 feature request by Tim Finney]&lt;br /&gt;
&lt;br /&gt;
===Alternative Dates===&lt;br /&gt;
Sometimes, multiple possibilities exist for determining the date of birth or death of a person. When both dates are successive, one could encode this as a date range, with @notBefore and @notAfter, as in this case with two possible birth dates:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Duncan, Isadora&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;1877&amp;quot; notAfter=&amp;quot;1878&amp;quot;&amp;gt;[1877 or] 1878&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1927&amp;quot;&amp;gt;1927&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
When, on the other hand, both dates are non-successive, multiple &amp;lt;birth&amp;gt; or &amp;lt;death&amp;gt; dates can be provided, with an @exclude attribute indicating their exclusive alternation:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Vanhautte, Delphien&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1869-09-02&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Ardooie&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;02.09.1869&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-02-03&amp;quot; xml:id=&amp;quot;d19440203&amp;quot; exclude=&amp;quot;#d19441203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-12-03&amp;quot; xml:id=&amp;quot;d19441203&amp;quot; exclude=&amp;quot;#d19440203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
===Only a period is known===&lt;br /&gt;
Sometimes no exact dates of birth or death are known, while the lifetime can be approximated in a period. As has been remarked by [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rathtz on TEI-L], the period can be approximated by @notBefore and @notAfter attributes on &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, while the ambiguity can be recorded in a &amp;lt;floruit&amp;gt; element:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In his response, [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L] makes a refinement. If the period mentioned does not literally apply to birth and death dates, and in the previous example rather conveys that this person lived the better part of her life in the 3rd century (while she might have been born or died before the start or after the end of that century), the most accurate way of representing this would imply an inversion of the @notBefore and @notAfter attributes on respectively &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Naming==&lt;br /&gt;
===Pseudonyms===&lt;br /&gt;
Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERSEps 13.3.2.2 Personal States] of the TEI Guidelines describes how multiple &amp;lt;persName&amp;gt;s are allowed for a person, possibly categorised with a @type attribute. For pseudonyms, the value 'pseudo' can be used. Hence, the guitarist commonly known as Slash could be described as follows:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This may raise an issue regarding the 'canonicity' of either name. In this case, a bibliographic entry would probably use the pseudonym 'Slash', whereas for less famous people the actual name may be preferred. This 'preference' could be recorded implicitly by the order of the &amp;lt;persNames&amp;gt;, or with the @sort attribute:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName sort=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot; sort=&amp;quot;1&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This could then mean that the pseudonym is the 'canonical' name for this person.&lt;br /&gt;
&lt;br /&gt;
Another question is whether the actual name should then be typed as @type='real'?&lt;br /&gt;
&lt;br /&gt;
===Alternative Names===&lt;br /&gt;
A related issue arises when people are commonly known by another name than their real name. For example, Joe English, a Belgian painter, is actually called Joseph English. I wonder whether a regularisation with &amp;lt;reg&amp;gt; would be the most suitable solution to encode this?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;English, Joe A.M.&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;English&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Joseph A.M.&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Mixing Prose and Structure==&lt;br /&gt;
The TEI P5 Guidelines define the contents &amp;lt;person&amp;gt; as either a collection of highly structured biographical 'fields' (using dedicated elements like &amp;lt;trait&amp;gt;, &amp;lt;occupation&amp;gt;, ...), or a collection of loose prose paragraphs (&amp;amp;lt;p&amp;gt;). Especially when transforming existing biographical records to TEI P5, this exclusive alternation can be unsatisfactory:&lt;br /&gt;
* splitting up all biographical prose into biographical fields may be too demanding&lt;br /&gt;
* OTOH, choosing to retain the description in prose paragraphs also prohibits the specification of basic biographical data in specific fields (&amp;lt;birth&amp;gt;, &amp;lt;death&amp;gt;, &amp;lt;persName&amp;gt;) inside &amp;lt;person&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One (tentative) solution could be to extract record-like information into biographical fields, while grouping the prose descriptions as paragraphs into a &amp;lt;note&amp;gt; element:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person xml:id=&amp;quot;FJ&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;Fabricius, Jan&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Fabricius&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Jan&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1871-09-30&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Assen&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;30.09.1871&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1964-11-23&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Wimborne, Dorset&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;23.11.1964&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;bio&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Journalist, Nederlands toneelschrijver.&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Vader van de schrijver Johan Fabricius. Hoofdredacteur van verschillende bladen, zowel in Nederlands-Indië als in Nederland. &lt;br /&gt;
         In 1938 vestigde hij zich in Engeland. Hoewel Fabricius op latere leeftijd ook enkele romans en drie delen memoires heeft &lt;br /&gt;
         gepubliceerd, ligt zijn betekenis in zijn toneelwerk. Zijn technische vaardigheid en meesterschap in het schrijven van een &lt;br /&gt;
         dialoog, maken zijn stukken goed speelbaar. Kind van een tijd die het realisme beoefende (Heijermans, Hauptmann), kon hij &lt;br /&gt;
         toch niet de romantiek geheel laten varen. Het handelingsverloop is vaak gewild; er wordt dan bewust aangestuurd op een &lt;br /&gt;
         aandoenlijke werking, zodat sommige van zijn stukken het predikaat 'melodramatisch' verdienen. Gedreven door een sterk gevoel &lt;br /&gt;
         voor rechtvaardigheid zocht hij zijn gegevens in de problematiek van milieus die hem vertrouwd waren: het boerenland van &lt;br /&gt;
         Groningen en Drente, de planterswereld van Indië. Fabricius' werk werd in Nederland en ook in het buitenland met succes opgevoerd. &lt;br /&gt;
         Tot zijn bekendste werken behoren &amp;lt;title&amp;gt;Eenzaam&amp;lt;/title&amp;gt; (1907) en &amp;lt;title&amp;gt;Dolle Hans&amp;lt;/title&amp;gt; (1916). Sommige stukken zijn vertaald &lt;br /&gt;
         in het Frans, Duits, Engels, Noors, Deens, Fries en Gronings. &lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;ref&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;&lt;br /&gt;
        &amp;lt;ptr ref=&amp;quot;http://www.dbnl.org/auteurs/borkv/Fabr004.htm&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This allows to group other types of information into other notes as well, distinguished by means of appropriate values for their @type attributes.&lt;br /&gt;
&lt;br /&gt;
==Traits, States, and Events==&lt;br /&gt;
The Guidelines use traits, states, and events as basic categories. Traits differ from states in being generally immutable. It may be that the distinction between states and traits is unnecessary. Almost every member of model.persTraitLike (age faith langKnowledge nationality s*x socecStatus trait) can change. Dropping &amp;quot;trait&amp;quot; leaves a simple yet expressive model where entities are defined by states and state-transitions (i.e. events).&lt;br /&gt;
&lt;br /&gt;
==Relations==&lt;br /&gt;
At the moment, relations are defined by attributes such as name, active and passive:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation name=&amp;quot;parent&amp;quot; active=&amp;quot;#p1 #p2&amp;quot; passive=&amp;quot;#p3 #p4&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Markup]]&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8903</id>
		<title>Prosopography</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Prosopography&amp;diff=8903"/>
		<updated>2011-03-09T08:02:32Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: Add my opinions concerning traits and relations.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERS 13.3 Prosopography] of the TEI Guidelines discusses how the elements and attributes from the TEI P5 [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#index-body.1_div.13_div.4 namesdates module] can be used to mark up prosopographical data.&lt;br /&gt;
&lt;br /&gt;
This wiki page attempts to summarise a number of issues in recording prosopographical data, and aims to provide a (sometimes personal) starting point for discussion and sharing of encoding experiences and insights. Rather than a documentation of best practice, it focuses on possible approaches for encoding some prosopographical phenomena, and tries to find sensible ones.&lt;br /&gt;
&lt;br /&gt;
==Dating==&lt;br /&gt;
===Unknown dates vs. lacking dates===&lt;br /&gt;
Birth and death dates can only be recorded if they are known. Yet, omitting the &amp;lt;death&amp;gt; element from a &amp;lt;person&amp;gt; description may lead to ambiguity. Consider following example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Does this indicate:&lt;br /&gt;
* that the person is still living?&lt;br /&gt;
* that the person has died but the date of death is unknown?&lt;br /&gt;
(Obviously, this ambiguity does not hold for birth dates, as can be assumed that all existing persons must have been born.)&lt;br /&gt;
&lt;br /&gt;
In order to resolve this ambiguity, it could be assumed that a description in a &amp;lt;person&amp;gt; element withouth &amp;lt;death&amp;gt; element would relate to a living person. When the person is known to have died, a &amp;lt;death&amp;gt; statement would then be required. If only the birth date is known, this can be used as a lower bound for the possible date of death:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1935&amp;quot;&amp;gt;1935&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;1935&amp;quot; precision=&amp;quot;low&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Note how the @notBefore attribute is used to specify this lower bound, in combination with the @precision attribute to indicate the precision of this statement. One could equally infer an upper bound by assuming that nobody lives longer than 120 years, and document this with the @notAfter attribute on the &amp;lt;death&amp;gt; element. The status of this conjecture and its certainty could be indicated by @evidence and @cert attributes, respectively:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Corey Adams&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1835&amp;quot;&amp;gt;1835&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;1955&amp;quot; precision=&amp;quot;low&amp;quot; cert=&amp;quot;high&amp;quot; evidence=&amp;quot;conjecture&amp;quot;&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
The lacking data could be represented by e.g. a question mark as text content of the &amp;lt;death&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
When no birth nor death date is known for a dead person, no precise dates (or approximations) can be given in attributes. Still, it could make sense to have &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, whose text contents indicate this knowledge gap:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Elvis Presley&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth&amp;gt;?&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death&amp;gt;?&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Circa Dates===&lt;br /&gt;
This issue has been raised on the [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind0903&amp;amp;L=TEI-L&amp;amp;D=0&amp;amp;P=18661 TEI-L mailing list]. Currently, TEI P5 only offers implicit means to indicate that a date is only an approximation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Aischylos&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth precision=&amp;quot;low&amp;quot; when=&amp;quot;-0525&amp;quot;&amp;gt;ca. 525 b.C.&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death precision=&amp;quot;low&amp;quot; when=&amp;quot;-0456&amp;quot;&amp;gt;ca. 456 b.C.&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
...with the @precision attribute indicating the low precision of these statements.&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L])&lt;br /&gt;
&lt;br /&gt;
Yet, depending on the requirements of the encoding, an ideal representation of circa dates could get quite complex, and touches on broader issues concerning an accurate representation of uncertainty. See following resources:&lt;br /&gt;
* [http://www.tfinney.net/Uncertainty/ Tim Finney: 'Uncertainty in text, markup and beyond']&lt;br /&gt;
* [http://sourceforge.net/tracker/?func=detail&amp;amp;aid=3060909&amp;amp;group_id=106328&amp;amp;atid=644065 feature request by Tim Finney]&lt;br /&gt;
&lt;br /&gt;
===Alternative Dates===&lt;br /&gt;
Sometimes, multiple possibilities exist for determining the date of birth or death of a person. When both dates are successive, one could encode this as a date range, with @notBefore and @notAfter, as in this case with two possible birth dates:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Duncan, Isadora&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;1877&amp;quot; notAfter=&amp;quot;1878&amp;quot;&amp;gt;[1877 or] 1878&amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1927&amp;quot;&amp;gt;1927&amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rahtz on TEI-L])&lt;br /&gt;
&lt;br /&gt;
When, on the other hand, both dates are non-successive, multiple &amp;lt;birth&amp;gt; or &amp;lt;death&amp;gt; dates can be provided, with an @exclude attribute indicating their exclusive alternation:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Vanhautte, Delphien&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1869-09-02&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Ardooie&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;02.09.1869&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-02-03&amp;quot; xml:id=&amp;quot;d19440203&amp;quot; exclude=&amp;quot;#d19441203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1944-12-03&amp;quot; xml:id=&amp;quot;d19441203&amp;quot; exclude=&amp;quot;#d19440203&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Edewalle (Handzame)&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;03.02/12(?).1944&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(source: [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2524 Syd Bauman on TEI-L])&lt;br /&gt;
&lt;br /&gt;
===Only a period is known===&lt;br /&gt;
Sometimes no exact dates of birth or death are known, while the lifetime can be approximated in a period. As has been remarked by [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=2337 Sebastian Rathtz on TEI-L], the period can be approximated by @notBefore and @notAfter attributes on &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt; elements, while the ambiguity can be recorded in a &amp;lt;floruit&amp;gt; element:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In his response, [http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind1010&amp;amp;L=TEI-L&amp;amp;P=3128 Gabriel Bodard on TEI-L] makes a refinement. If the period mentioned does not literally apply to birth and death dates, and in the previous example rather conveys that this person lived the better part of her life in the 3rd century (while she might have been born or died before the start or after the end of that century), the most accurate way of representing this would imply an inversion of the @notBefore and @notAfter attributes on respectively &amp;lt;birth&amp;gt; and &amp;lt;death&amp;gt;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;Regina van Alisa&amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth notAfter=&amp;quot;0300&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;death notBefore=&amp;quot;0201&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;floruit&amp;gt;3rd cent&amp;lt;/floruit&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Naming==&lt;br /&gt;
===Pseudonyms===&lt;br /&gt;
Section [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERSEps 13.3.2.2 Personal States] of the TEI Guidelines describes how multiple &amp;lt;persName&amp;gt;s are allowed for a person, possibly categorised with a @type attribute. For pseudonyms, the value 'pseudo' can be used. Hence, the guitarist commonly known as Slash could be described as follows:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This may raise an issue regarding the 'canonicity' of either name. In this case, a bibliographic entry would probably use the pseudonym 'Slash', whereas for less famous people the actual name may be preferred. This 'preference' could be recorded implicitly by the order of the &amp;lt;persNames&amp;gt;, or with the @sort attribute:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName sort=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Hudson&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Saul&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;persName type=&amp;quot;pseudo&amp;quot; sort=&amp;quot;1&amp;quot;&amp;gt;Slash&amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This could then mean that the pseudonym is the 'canonical' name for this person.&lt;br /&gt;
&lt;br /&gt;
Another question is whether the actual name should then be typed as @type='real'?&lt;br /&gt;
&lt;br /&gt;
===Alternative Names===&lt;br /&gt;
A related issue arises when people are commonly known by another name than their real name. For example, Joe English, a Belgian painter, is actually called Joseph English. I wonder whether a regularisation with &amp;lt;reg&amp;gt; would be the most suitable solution to encode this?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;English, Joe A.M.&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;English&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Joseph A.M.&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Mixing Prose and Structure==&lt;br /&gt;
The TEI P5 Guidelines define the contents &amp;lt;person&amp;gt; as either a collection of highly structured biographical 'fields' (using dedicated elements like &amp;lt;trait&amp;gt;, &amp;lt;occupation&amp;gt;, ...), or a collection of loose prose paragraphs (&amp;amp;lt;p&amp;gt;). Especially when transforming existing biographical records to TEI P5, this exclusive alternation can be unsatisfactory:&lt;br /&gt;
* splitting up all biographical prose into biographical fields may be too demanding&lt;br /&gt;
* OTOH, choosing to retain the description in prose paragraphs also prohibits the specification of basic biographical data in specific fields (&amp;lt;birth&amp;gt;, &amp;lt;death&amp;gt;, &amp;lt;persName&amp;gt;) inside &amp;lt;person&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One (tentative) solution could be to extract record-like information into biographical fields, while grouping the prose descriptions as paragraphs into a &amp;lt;note&amp;gt; element:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;person xml:id=&amp;quot;FJ&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;persName&amp;gt;&lt;br /&gt;
      &amp;lt;reg&amp;gt;Fabricius, Jan&amp;lt;/reg&amp;gt;&lt;br /&gt;
      &amp;lt;surname&amp;gt;Fabricius&amp;lt;/surname&amp;gt;&lt;br /&gt;
      &amp;lt;forename&amp;gt;Jan&amp;lt;/forename&amp;gt;&lt;br /&gt;
    &amp;lt;/persName&amp;gt;&lt;br /&gt;
    &amp;lt;birth when=&amp;quot;1871-09-30&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Assen&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;30.09.1871&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/birth&amp;gt;&lt;br /&gt;
    &amp;lt;death when=&amp;quot;1964-11-23&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;placeName&amp;gt;Wimborne, Dorset&amp;lt;/placeName&amp;gt;&lt;br /&gt;
      &amp;lt;date&amp;gt;23.11.1964&amp;lt;/date&amp;gt;&lt;br /&gt;
    &amp;lt;/death&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;bio&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Journalist, Nederlands toneelschrijver.&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Vader van de schrijver Johan Fabricius. Hoofdredacteur van verschillende bladen, zowel in Nederlands-Indië als in Nederland. &lt;br /&gt;
         In 1938 vestigde hij zich in Engeland. Hoewel Fabricius op latere leeftijd ook enkele romans en drie delen memoires heeft &lt;br /&gt;
         gepubliceerd, ligt zijn betekenis in zijn toneelwerk. Zijn technische vaardigheid en meesterschap in het schrijven van een &lt;br /&gt;
         dialoog, maken zijn stukken goed speelbaar. Kind van een tijd die het realisme beoefende (Heijermans, Hauptmann), kon hij &lt;br /&gt;
         toch niet de romantiek geheel laten varen. Het handelingsverloop is vaak gewild; er wordt dan bewust aangestuurd op een &lt;br /&gt;
         aandoenlijke werking, zodat sommige van zijn stukken het predikaat 'melodramatisch' verdienen. Gedreven door een sterk gevoel &lt;br /&gt;
         voor rechtvaardigheid zocht hij zijn gegevens in de problematiek van milieus die hem vertrouwd waren: het boerenland van &lt;br /&gt;
         Groningen en Drente, de planterswereld van Indië. Fabricius' werk werd in Nederland en ook in het buitenland met succes opgevoerd. &lt;br /&gt;
         Tot zijn bekendste werken behoren &amp;lt;title&amp;gt;Eenzaam&amp;lt;/title&amp;gt; (1907) en &amp;lt;title&amp;gt;Dolle Hans&amp;lt;/title&amp;gt; (1916). Sommige stukken zijn vertaald &lt;br /&gt;
         in het Frans, Duits, Engels, Noors, Deens, Fries en Gronings. &lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
    &amp;lt;note type=&amp;quot;ref&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;&lt;br /&gt;
        &amp;lt;ptr ref=&amp;quot;http://www.dbnl.org/auteurs/borkv/Fabr004.htm&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/note&amp;gt;&lt;br /&gt;
  &amp;lt;/person&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This allows to group other types of information into other notes as well, distinguished by means of appropriate values for their @type attributes.&lt;br /&gt;
&lt;br /&gt;
==Traits, States, and Events==&lt;br /&gt;
The Guidelines use traits, states, and events as basic categories. Traits differ from states in being generally immutable. It may be that the distinction between states and traits is unnecessary. Almost every member of model.persTraitLike (age faith langKnowledge nationality s*x socecStatus trait) can change. Why have traits when states will do? This would simply leave states and events for describing a person, organization, etc. Every change of state could have an associated event.&lt;br /&gt;
&lt;br /&gt;
==Relations==&lt;br /&gt;
At the moment, relations are defined by attributes such as name, active and passive:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;relation name=&amp;quot;parent&amp;quot; active=&amp;quot;#p1 #p2&amp;quot; passive=&amp;quot;#p3 #p4&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Markup]]&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Samples_of_TEI_texts&amp;diff=8256</id>
		<title>Samples of TEI texts</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Samples_of_TEI_texts&amp;diff=8256"/>
		<updated>2010-10-25T01:55:26Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: /* Texts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Markup]]&lt;br /&gt;
[[Category: TEI:P4]]&lt;br /&gt;
[[Category: TEI:P5]]&lt;br /&gt;
Please add links below to any TEI sample texts that are freely available for use by developers working on TEI-related software.  By listing the texts here you are allowing the developers the right to test their software with your texts, but are not necessarily licensing any other use of these texts.  Developers should ask permission of the text owners should they wish to make any more in-depth use of these materials.&lt;br /&gt;
&lt;br /&gt;
== Texts == &lt;br /&gt;
&lt;br /&gt;
* [http://insaph.kcl.ac.uk/ala2004/redist/inscriptions/inscriptions.zip ala2004] ([[EpiDoc]] XML) from the [http://insaph.kcl.ac.uk/ala2004 '''Aphrodisias in Late Antiquity'''] publication. The downloadable .zip archive contains 230 XML files, each containing an ancient Greek inscription, which validate to the version 4 of the [http://epidoc.sf.net/ EpiDoc] DTD (a TEI localization)--the DTD is also included in the archive. These files are licenced under [http://creativecommons.org/licenses/by/2.5/ Creative Commons Attribution], so please feel free to do whatever you like with them! (Format: TEI P4)&lt;br /&gt;
&lt;br /&gt;
* [http://archimedespalimpsest.net/ '''Archimedes Palimpsest'''], XML files containing the transcriptions of the Archimedes text, released (like all the Palimpsest data and metadata) under Creative Commons Attribution 3.0 Unported. Texts validate to TEI P5. One XML file per folio page (scroll down list of hi-res photographs in each directory). Format: TEI P5&lt;br /&gt;
&lt;br /&gt;
* [http://www.ota.ox.ac.uk/headers/2493.xml The '''Auchinleck Manuscript'''], made available by the [http://www.ota.ox.ac.uk/ Oxford Text Archive] contact [mailto:ota-info@rt.oucs.ox.ac.uk ota-info@rt.oucs.ox.ac.uk].  This text originates from the [http://www.nls.uk/auchinleck/ Auchinleck Manuscript Project] at the National Library of Scotland, please see their website for more contextual material. Format: TEI P5.&lt;br /&gt;
&lt;br /&gt;
* [http://papyri.info/idp_static/current/ '''Duke Databank'''/Heidelberg] ([[EpiDoc]] XML) aggregated data from the Duke Databank of Documentary Papyri (DDbDP: transcribed Greek texts) and the Heidelberger Gesamtverzeichnis der griechischen Papyrusurkunden Ägyptens (HGV: metadata). Approx 55,000 XML files released under Creative Commons Attribution license (CC-BY), by the [http://idp.atlantides.org/trac/idp/wiki Integrating Digital Papyrology] project. Format: TEI P5.&lt;br /&gt;
&lt;br /&gt;
* [http://epidoc.cch.kcl.ac.uk/inscriptions/index.html '''EpiDoc Demo''' Website], a growing collection of sample [[EpiDoc]] XML files, including examples from epigraphic, papyrological, and other ancient projects. XML downloadable from each transformed inscription. (Vintage 2007.) (Format: TEI P4)&lt;br /&gt;
&lt;br /&gt;
* A subset of [http://www.gutenberg.org/ Project '''Gutenberg'''] is available as TEI, go to [http://www.gutenberg.org/catalog/world/search http://www.gutenberg.org/catalog/world/search] and select &amp;quot;TEI Text Encoding Initiative (tei)&amp;quot; as the file type.&lt;br /&gt;
&lt;br /&gt;
* [http://insaph.kcl.ac.uk/iaph2007/inscriptions/xml-repo.html '''IAph2007''' ([[EpiDoc]] XML files)] from the [http://insaph.kcl.ac.uk/iaph2007/ Inscriptions of Aphrodisias (2007)] publication. There are approx 1500 XML files available (either in a single .zip or as individual files either downloadable or linkable directly for dynamic processing), each containing an ancient Greek or Latin inscription. All files validate to the [[EpiDoc]] DTD (version 5). These files are licensed under [http://creativecommons.org/licenses/by/2.0/uk/ Creative Commons Attribution (UK)], so please feel free to do exciting things with them. (Format: TEI P4)&lt;br /&gt;
&lt;br /&gt;
* [http://irt.kcl.ac.uk/irt2009/inscr/xmlrepo.html '''Inscriptions of Roman Tripolitania''' 2009] ([[EpiDoc]] XML), about 1000 Latin and Greek inscriptions available for download under Creative Commons Attribution (CC-BY) licence. Format: TEI P4.&lt;br /&gt;
&lt;br /&gt;
* [http://www.sbl-site.org/Resources/Resources_ManuscriptMarkup.aspx Files] referenced in Timothy J. Finney, &amp;quot;'''Manuscript Markup''',&amp;quot; in ''The Freer Biblical Manuscripts: Fresh Studies of an American Treasure Trove'' (ed. Larry W. Hurtado; SBLTCS 6; Atlanta: Society of Biblical Literature, 2006), 263-87. These include a partial [http://www.sbl-site.org/assets/U16/U16.xml transcription] of the Freer manuscript of Paul (Gregory-Aland I 016), a [http://www.sbl-site.org/assets/U16/U16.xsl transform], a [http://www.sbl-site.org/assets/U16/U16.css stylesheet] and a [http://www.sbl-site.org/assets/U16/U16.htm web page] produced from the transcription by the transform. (Format: TEI P5)&lt;br /&gt;
&lt;br /&gt;
* The [http://www.nzetc.org/ NZETC] has a range of '''New Zealand and Pacific-Islands''' texts. The texts are P5 encoded and the TEI is generally downloadable from the document table of contents. Features include:&lt;br /&gt;
** Use of &amp;lt;revisionDesc&amp;gt; and &amp;lt;change&amp;gt; tags to implement workflow&lt;br /&gt;
** &amp;lt;name&amp;gt; tag used extensively for personal, ship, place, organisation and work names (keyed to external authority at [http://authority.nzetc.org/])&lt;br /&gt;
** Use of  xml:lang=&amp;quot;en&amp;quot; and  xml:lang=&amp;quot;mi&amp;quot; for texts with English and Maori (plus small amounts of other languages)&lt;br /&gt;
** Page images, facsimile PDFs and typeset PDFs  (some texts only, for example [http://www.nzetc.org/tm/scholarly/tei-JCB-001.html this letter])&lt;br /&gt;
** Document-by-document licensing, some documents under a creative commons license (licensing info not currently stored in the TEI).&lt;br /&gt;
&lt;br /&gt;
* The [http://www.perseus.tufts.edu/hopper/opensource Perseus Project] makes its TEI P4 XML collections in Greek, Latin, and English available from http://www.perseus.tufts.edu/hopper/opensource under a Creative Commons Sharalike/Non-Commercial/Attribution license.&lt;br /&gt;
&lt;br /&gt;
* The [http://buddhistinformatics.chibs.edu.tw/BZA/bzaComCatWeb.html '''Samyukta Agama''' Project] at Dharma Drum Buddhist College provides access to its more than 1000 TEI source files. Click on any cluster and find the link to the TEI source at the bottom of each column. The files are in Chinese, Pali and Sanskrit. This is an ongoing project, planned to end in winter 2008. Once the project is concluded markup documentation, schemas and stylesheets will be made available at the website.&lt;br /&gt;
&lt;br /&gt;
* The [http://www.tei-c.org/Activities/MI/Samples/ '''Migration Samples'''] page on the main TEI website includes sample texts from (inter alia) the British National Corpus, the Thomas McGreevey Archive, Early English Books Online, Multext East, Documenting the American South, and the Women Writers Project which were prepared as part of the TEI P4 Migration Work Group, the purpose of which was to demonstrate how to migrate TEI P3 (SGML) to TEI P4 (XML). Most of the material here is therefore of a certain antiquity.&lt;br /&gt;
&lt;br /&gt;
* The [http://www.bvh.univ-tours.fr/ BVH] project ('''Virtual Humanistic Libraries''')  is a virtual library of high-quality digitised documents, offering a selection of Renaissance books located in the libraries of the Région Centre, Paris, Poitiers, Lyons, Troyes, etc. Three samples of TEI texts are proposed in html, pdf and xml/tei on [http://www.bvh.univ-tours.fr/Epistemon/index.htm Epistemon]. These files are licenced under Creative Commons Attribution.&lt;br /&gt;
&lt;br /&gt;
* Some work is ongoing about the possibility to use the TEI to edit and archive [http://www.iso.org ISO] documents. Relevant tips and documentation are provided under [[TEI for ISO]]&lt;br /&gt;
&lt;br /&gt;
* TEI in dspace example http://dspace.nitle.org/handle/10090/11695 (P4?)&lt;br /&gt;
&lt;br /&gt;
* The [[http://sarit.indology.info SARIT]] project has recently brought out an electronic TEI-encoded edition of a 2007 print publication.  It is a work on Buddhist tantric religion:   Christian K. Wedemeyer, ed., ''Āryadeva's Lamp that Integrates the Practices (Caryāmelāpakapradīpa): The Gradual Path of Vajrayāna Buddhism According to the Esoteric Community Noble Tradition - Part Three: Critically Edited Sanskrit Text of Āryadeva's Caryāmelāpakapradīpa,'' (New York: The American Institute of Buddhist Studies at Columbia University in New York with Columbia University's Center for Buddhist Studies and Tibet House US, 2007). E-details and full text can be seen [[http://sarit.indology.info/newphilo/navigate.pl?indologica.6 here]].  Clicking [[http://sarit.indology.info/downloads.shtml Downloads]] on the above screen offers downloadable TEI, PDF and HTML versions of this e-text, and several others. The interesting thing about this e-text from the TEI point of view is the encoding and display of the manuscript variants to the critical edition.  It was good of the publishers and editors to give their permission for the e-dissemination of this work just three years after print publication. Best, Dr Dominik Wujastyk.&lt;br /&gt;
&lt;br /&gt;
== Dictionaries ==&lt;br /&gt;
* [[FreeDict]] is a repository of various TEI P4-encoded bilingual translating dictionaries on free licenses (http://www.freedict.org/). Some are now in P5, for example http://freedict.svn.sourceforge.net/viewvc/freedict/trunk/swa-eng/swa-eng.tei&lt;br /&gt;
* [http://ducange.enc.sorbonne.fr/ Du Cange] is a medieval latin dictionary (mostly written during XVIIe XVIIIe). The printed text is encoded in TEI-P5, freely available at http://ducange.enc.sorbonne.fr/src/, the TEI choices are [http://ducange.enc.sorbonne.fr/src/schema.htm documented] (in french).&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[TEI by example]]&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Samples_of_TEI_texts&amp;diff=8255</id>
		<title>Samples of TEI texts</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Samples_of_TEI_texts&amp;diff=8255"/>
		<updated>2010-10-25T01:53:11Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: /* Texts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Markup]]&lt;br /&gt;
[[Category: TEI:P4]]&lt;br /&gt;
[[Category: TEI:P5]]&lt;br /&gt;
Please add links below to any TEI sample texts that are freely available for use by developers working on TEI-related software.  By listing the texts here you are allowing the developers the right to test their software with your texts, but are not necessarily licensing any other use of these texts.  Developers should ask permission of the text owners should they wish to make any more in-depth use of these materials.&lt;br /&gt;
&lt;br /&gt;
== Texts == &lt;br /&gt;
&lt;br /&gt;
* [http://insaph.kcl.ac.uk/ala2004/redist/inscriptions/inscriptions.zip ala2004] ([[EpiDoc]] XML) from the [http://insaph.kcl.ac.uk/ala2004 '''Aphrodisias in Late Antiquity'''] publication. The downloadable .zip archive contains 230 XML files, each containing an ancient Greek inscription, which validate to the version 4 of the [http://epidoc.sf.net/ EpiDoc] DTD (a TEI localization)--the DTD is also included in the archive. These files are licenced under [http://creativecommons.org/licenses/by/2.5/ Creative Commons Attribution], so please feel free to do whatever you like with them! (Format: TEI P4)&lt;br /&gt;
&lt;br /&gt;
* [http://archimedespalimpsest.net/ '''Archimedes Palimpsest'''], XML files containing the transcriptions of the Archimedes text, released (like all the Palimpsest data and metadata) under Creative Commons Attribution 3.0 Unported. Texts validate to TEI P5. One XML file per folio page (scroll down list of hi-res photographs in each directory). Format: TEI P5&lt;br /&gt;
&lt;br /&gt;
* [http://www.ota.ox.ac.uk/headers/2493.xml The '''Auchinleck Manuscript'''], made available by the [http://www.ota.ox.ac.uk/ Oxford Text Archive] contact [mailto:ota-info@rt.oucs.ox.ac.uk ota-info@rt.oucs.ox.ac.uk].  This text originates from the [http://www.nls.uk/auchinleck/ Auchinleck Manuscript Project] at the National Library of Scotland, please see their website for more contextual material. Format: TEI P5.&lt;br /&gt;
&lt;br /&gt;
* [http://papyri.info/idp_static/current/ '''Duke Databank'''/Heidelberg] ([[EpiDoc]] XML) aggregated data from the Duke Databank of Documentary Papyri (DDbDP: transcribed Greek texts) and the Heidelberger Gesamtverzeichnis der griechischen Papyrusurkunden Ägyptens (HGV: metadata). Approx 55,000 XML files released under Creative Commons Attribution license (CC-BY), by the [http://idp.atlantides.org/trac/idp/wiki Integrating Digital Papyrology] project. Format: TEI P5.&lt;br /&gt;
&lt;br /&gt;
* [http://epidoc.cch.kcl.ac.uk/inscriptions/index.html '''EpiDoc Demo''' Website], a growing collection of sample [[EpiDoc]] XML files, including examples from epigraphic, papyrological, and other ancient projects. XML downloadable from each transformed inscription. (Vintage 2007.) (Format: TEI P4)&lt;br /&gt;
&lt;br /&gt;
* A subset of [http://www.gutenberg.org/ Project '''Gutenberg'''] is available as TEI, go to [http://www.gutenberg.org/catalog/world/search http://www.gutenberg.org/catalog/world/search] and select &amp;quot;TEI Text Encoding Initiative (tei)&amp;quot; as the file type.&lt;br /&gt;
&lt;br /&gt;
* [http://insaph.kcl.ac.uk/iaph2007/inscriptions/xml-repo.html '''IAph2007''' ([[EpiDoc]] XML files)] from the [http://insaph.kcl.ac.uk/iaph2007/ Inscriptions of Aphrodisias (2007)] publication. There are approx 1500 XML files available (either in a single .zip or as individual files either downloadable or linkable directly for dynamic processing), each containing an ancient Greek or Latin inscription. All files validate to the [[EpiDoc]] DTD (version 5). These files are licensed under [http://creativecommons.org/licenses/by/2.0/uk/ Creative Commons Attribution (UK)], so please feel free to do exciting things with them. (Format: TEI P4)&lt;br /&gt;
&lt;br /&gt;
* [http://irt.kcl.ac.uk/irt2009/inscr/xmlrepo.html '''Inscriptions of Roman Tripolitania''' 2009] ([[EpiDoc]] XML), about 1000 Latin and Greek inscriptions available for download under Creative Commons Attribution (CC-BY) licence. Format: TEI P4.&lt;br /&gt;
&lt;br /&gt;
* [http://www.sbl-site.org/Resources/Resources_ManuscriptMarkup.aspx Files] referenced in Timothy J. Finney, &amp;quot;'''Manuscript Markup''',&amp;quot; in ''The Freer Biblical Manuscripts: Fresh Studies of an American Treasure Trove'' (ed. Larry W. Hurtado; SBLTCS 6; Atlanta: Society of Biblical Literature, 2006), 263-87. These include a partial [http://www.sbl-site.org/assets/U16/U16.xml transcription] of the Freer manuscript of Paul (Gregory-Aland I 016), a [http://www.sbl-site.org/assets/U16/U16.xsl transform], a [http://www.sbl-site.org/assets/U16/U16.css stylesheet] and a [http://www.sbl-site.org/assets/U16/U16.html web page] produced from the transcription by the transform. (Format: TEI P5)&lt;br /&gt;
&lt;br /&gt;
* The [http://www.nzetc.org/ NZETC] has a range of '''New Zealand and Pacific-Islands''' texts. The texts are P5 encoded and the TEI is generally downloadable from the document table of contents. Features include:&lt;br /&gt;
** Use of &amp;lt;revisionDesc&amp;gt; and &amp;lt;change&amp;gt; tags to implement workflow&lt;br /&gt;
** &amp;lt;name&amp;gt; tag used extensively for personal, ship, place, organisation and work names (keyed to external authority at [http://authority.nzetc.org/])&lt;br /&gt;
** Use of  xml:lang=&amp;quot;en&amp;quot; and  xml:lang=&amp;quot;mi&amp;quot; for texts with English and Maori (plus small amounts of other languages)&lt;br /&gt;
** Page images, facsimile PDFs and typeset PDFs  (some texts only, for example [http://www.nzetc.org/tm/scholarly/tei-JCB-001.html this letter])&lt;br /&gt;
** Document-by-document licensing, some documents under a creative commons license (licensing info not currently stored in the TEI).&lt;br /&gt;
&lt;br /&gt;
* The [http://www.perseus.tufts.edu/hopper/opensource Perseus Project] makes its TEI P4 XML collections in Greek, Latin, and English available from http://www.perseus.tufts.edu/hopper/opensource under a Creative Commons Sharalike/Non-Commercial/Attribution license.&lt;br /&gt;
&lt;br /&gt;
* The [http://buddhistinformatics.chibs.edu.tw/BZA/bzaComCatWeb.html '''Samyukta Agama''' Project] at Dharma Drum Buddhist College provides access to its more than 1000 TEI source files. Click on any cluster and find the link to the TEI source at the bottom of each column. The files are in Chinese, Pali and Sanskrit. This is an ongoing project, planned to end in winter 2008. Once the project is concluded markup documentation, schemas and stylesheets will be made available at the website.&lt;br /&gt;
&lt;br /&gt;
* The [http://www.tei-c.org/Activities/MI/Samples/ '''Migration Samples'''] page on the main TEI website includes sample texts from (inter alia) the British National Corpus, the Thomas McGreevey Archive, Early English Books Online, Multext East, Documenting the American South, and the Women Writers Project which were prepared as part of the TEI P4 Migration Work Group, the purpose of which was to demonstrate how to migrate TEI P3 (SGML) to TEI P4 (XML). Most of the material here is therefore of a certain antiquity.&lt;br /&gt;
&lt;br /&gt;
* The [http://www.bvh.univ-tours.fr/ BVH] project ('''Virtual Humanistic Libraries''')  is a virtual library of high-quality digitised documents, offering a selection of Renaissance books located in the libraries of the Région Centre, Paris, Poitiers, Lyons, Troyes, etc. Three samples of TEI texts are proposed in html, pdf and xml/tei on [http://www.bvh.univ-tours.fr/Epistemon/index.htm Epistemon]. These files are licenced under Creative Commons Attribution.&lt;br /&gt;
&lt;br /&gt;
* Some work is ongoing about the possibility to use the TEI to edit and archive [http://www.iso.org ISO] documents. Relevant tips and documentation are provided under [[TEI for ISO]]&lt;br /&gt;
&lt;br /&gt;
* TEI in dspace example http://dspace.nitle.org/handle/10090/11695 (P4?)&lt;br /&gt;
&lt;br /&gt;
* The [[http://sarit.indology.info SARIT]] project has recently brought out an electronic TEI-encoded edition of a 2007 print publication.  It is a work on Buddhist tantric religion:   Christian K. Wedemeyer, ed., ''Āryadeva's Lamp that Integrates the Practices (Caryāmelāpakapradīpa): The Gradual Path of Vajrayāna Buddhism According to the Esoteric Community Noble Tradition - Part Three: Critically Edited Sanskrit Text of Āryadeva's Caryāmelāpakapradīpa,'' (New York: The American Institute of Buddhist Studies at Columbia University in New York with Columbia University's Center for Buddhist Studies and Tibet House US, 2007). E-details and full text can be seen [[http://sarit.indology.info/newphilo/navigate.pl?indologica.6 here]].  Clicking [[http://sarit.indology.info/downloads.shtml Downloads]] on the above screen offers downloadable TEI, PDF and HTML versions of this e-text, and several others. The interesting thing about this e-text from the TEI point of view is the encoding and display of the manuscript variants to the critical edition.  It was good of the publishers and editors to give their permission for the e-dissemination of this work just three years after print publication. Best, Dr Dominik Wujastyk.&lt;br /&gt;
&lt;br /&gt;
== Dictionaries ==&lt;br /&gt;
* [[FreeDict]] is a repository of various TEI P4-encoded bilingual translating dictionaries on free licenses (http://www.freedict.org/). Some are now in P5, for example http://freedict.svn.sourceforge.net/viewvc/freedict/trunk/swa-eng/swa-eng.tei&lt;br /&gt;
* [http://ducange.enc.sorbonne.fr/ Du Cange] is a medieval latin dictionary (mostly written during XVIIe XVIIIe). The printed text is encoded in TEI-P5, freely available at http://ducange.enc.sorbonne.fr/src/, the TEI choices are [http://ducange.enc.sorbonne.fr/src/schema.htm documented] (in french).&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[TEI by example]]&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=U16.xsl&amp;diff=4412</id>
		<title>U16.xsl</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=U16.xsl&amp;diff=4412"/>
		<updated>2008-04-29T04:37:06Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
This converts a TEI P5 transcription of part of a biblical manuscript to HTML. It makes use of the msDescription element.&lt;br /&gt;
&lt;br /&gt;
== Required Input ==&lt;br /&gt;
&lt;br /&gt;
The input is a TEI P5 transcription of part of a biblical manuscript found [http://purl.org/tfinney/Freer/U16.xml here].&lt;br /&gt;
&lt;br /&gt;
== Expected Output ==&lt;br /&gt;
&lt;br /&gt;
An HTML version of the transcription.&lt;br /&gt;
&lt;br /&gt;
== Known Restrictions or Problems ==&lt;br /&gt;
&lt;br /&gt;
This is only known to work with the transcription linked above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Stylesheet ==&lt;br /&gt;
&lt;br /&gt;
The stylesheet is found [http://purl.org/tfinney/Freer/U16.xsl here].&lt;br /&gt;
&lt;br /&gt;
[[Category:XSLT]]&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=U16.xsl&amp;diff=4411</id>
		<title>U16.xsl</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=U16.xsl&amp;diff=4411"/>
		<updated>2008-04-29T04:25:21Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: New page: == Summary == This is a quick XSLT script for removing the namespaces from any document. It will remove the prefix as well.  I think I picked it up off the XSL-List  run by mulberry-tech. ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
This is a quick XSLT script for removing the namespaces from any document.&lt;br /&gt;
It will remove the prefix as well.  I think I picked it up off the XSL-List &lt;br /&gt;
run by mulberry-tech.  This is sometimes a good first step to remove namespaces &lt;br /&gt;
from a set of files some of which use namespaces and some of which don't. &lt;br /&gt;
&lt;br /&gt;
Add any comments to the 'discussion' tab.&lt;br /&gt;
&lt;br /&gt;
== Required Input ==&lt;br /&gt;
&lt;br /&gt;
This document will take any XML file, not just TEI XML, and remove a namespace from it if it exists. &lt;br /&gt;
 If there are entities in the document, these will naturally be expanded.&lt;br /&gt;
&lt;br /&gt;
== Expected Output ==&lt;br /&gt;
&lt;br /&gt;
Same document, but with the namespaces and namespace prefix removed.&lt;br /&gt;
&lt;br /&gt;
== Known Restrictions or Problems ==&lt;br /&gt;
 Obviously, if you need the namespaces then this might not be as useful to you.  For example, where &lt;br /&gt;
you have documents which use elements from different namespaces with the exact same local-name (for example,&lt;br /&gt;
 TEI's &amp;lt;title&amp;gt; and HTML's &amp;lt;title&amp;gt; then flattening the document to remove&lt;br /&gt;
 namespaces would be problematic.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Stylesheet ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;xsl:stylesheet version=&amp;quot;1.0&amp;quot; xmlns:xsl=&amp;quot;http://www.w3.org/1999/XSL/Transform&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;xsl:output method=&amp;quot;xml&amp;quot; indent=&amp;quot;no&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;xsl:template match=&amp;quot;/|comment()|processing-instruction()&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;xsl:copy&amp;gt;&lt;br /&gt;
      &amp;lt;xsl:apply-templates/&amp;gt;&lt;br /&gt;
    &amp;lt;/xsl:copy&amp;gt;&lt;br /&gt;
&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;xsl:template match=&amp;quot;*&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;xsl:element name=&amp;quot;{local-name()}&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;xsl:apply-templates select=&amp;quot;@*|node()&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;/xsl:element&amp;gt;&lt;br /&gt;
&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;xsl:template match=&amp;quot;@*&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;xsl:attribute name=&amp;quot;{local-name()}&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;xsl:value-of select=&amp;quot;.&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;/xsl:attribute&amp;gt;&lt;br /&gt;
&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&amp;lt;/xsl:stylesheet&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:XSLT]]&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Samples_of_TEI_texts&amp;diff=3545</id>
		<title>Samples of TEI texts</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Samples_of_TEI_texts&amp;diff=3545"/>
		<updated>2007-09-26T02:25:27Z</updated>

		<summary type="html">&lt;p&gt;Tfinney: /* Texts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Markup]]&lt;br /&gt;
[[Category: TEI:P4]]&lt;br /&gt;
[[Category: TEI:P5]]&lt;br /&gt;
= Samples of TEI Texts =&lt;br /&gt;
&lt;br /&gt;
Please add links below to any TEI sample texts that are freely available for use by developers working on TEI-related software.  By listing the texts here you are allowing the developers the right to test their software with your texts, but are not necessarily licensing any other use of these texts.  Developers should ask permission of the text owners should they wish to make any more in-depth use of these materials.&lt;br /&gt;
&lt;br /&gt;
== Texts == &lt;br /&gt;
&lt;br /&gt;
* [http://www.ota.ox.ac.uk/texts/2493.html The Auchinleck Manuscript], made available by the [http://www.ota.ox.ac.uk/ Oxford Text Archive] contact [mailto:ota-info@rt.oucs.ox.ac.uk ota-info@rt.oucs.ox.ac.uk].  This text originates from the [http://www.nls.uk/auchinleck/ Auchinleck Manuscript Project] at the National Library of Scotland, please see their website for more contextual material. Format: TEI P5.&lt;br /&gt;
&lt;br /&gt;
* The [http://www.tei-c.org/Activities/MI/Samples/ Migration Samples] page on the main TEI website includes sample texts from (inter alia) the British National Corpus, the Thomas McGreevey Archive, Early English Books Online, Multext East, Documenting the American South, and the Women Writers Project which were prepared as part of the TEI P4 Migration Work Group, the purpose of which was to demonstrate how to migrate TEI P3 (SGML) to TEI P4 (XML). Most of the material here is therefore of a certain antiquity.&lt;br /&gt;
&lt;br /&gt;
* [http://www.sbl-site.org/Resources/Resources_ManuscriptMarkup.aspx Files] referenced in Timothy J. Finney, &amp;quot;Manuscript Markup,&amp;quot; in ''The Freer Biblical Manuscripts: Fresh Studies of an American Treasure Trove'' (ed. Larry W. Hurtado; SBLTCS 6; Atlanta: Society of Biblical Literature, 2006), 263-87. These include a partial [http://www.sbl-site.org/Resources/U16.xml transcription] of the Freer manuscript of Paul (Gregory-Aland I 016), a [http://www.sbl-site.org/Resources/U16.xsl transform], a [http://www.sbl-site.org/Resources/U16.css stylesheet] and a [http://www.sbl-site.org/Resources/U16.html web page] produced from the transcription by the transform.&lt;/div&gt;</summary>
		<author><name>Tfinney</name></author>
		
	</entry>
</feed>