Last active
August 29, 2015 14:06
-
-
Save peterstadler/52388221b3b7a5774f4b to your computer and use it in GitHub Desktop.
A simple example for an alternative <ct:correspDesc> context and structure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<?xml-model href="https://raw.github.com/TEI-Correspondence-SIG/correspDesc/master/proposal_2.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?> | |
<TEI xmlns="http://www.tei-c.org/ns/1.0" | |
xmlns:ct="http://wiki.tei-c.org/index.php/SIG:Correspondence/task-force-correspDesc"> | |
<teiHeader> | |
<fileDesc> | |
<titleStmt> | |
<title>Letter from Adelbert von Chamisso to Louis de La Foye</title> | |
<title type="sub">Example TEI document with the inclusion of the proposed ct:correspDesc element for the encoding of correspondence specific meta data</title> | |
<respStmt> | |
<resp>example provided by</resp> | |
<name>Sabine Seifert</name> | |
</respStmt> | |
</titleStmt> | |
<publicationStmt> | |
<authority>TEI Correspondence SIG, correspDesc task force</authority> | |
<availability> | |
<licence> | |
<p>CC+BY and BSD-2 licences</p> | |
</licence> | |
</availability> | |
</publicationStmt> | |
<sourceDesc> | |
<bibl><ref target="http://tei.ibi.hu-berlin.de/berliner-intellektuelle/manuscript.pl?id=Brief024ChamissoandeLaFoye">Letter from Adelbert von Chamisso to Louis de La Foye (Vertus, 29 January 1807) [Digital Edition]</ref></bibl> | |
</sourceDesc> | |
</fileDesc> | |
<profileDesc> | |
<ct:correspDesc> | |
<ct:participant role="sender"> | |
<persName>Adelbert von Chamisso</persName> | |
<settlement>Vertus</settlement> | |
<date when="1807-01-29">29 January 1807</date> | |
</ct:participant> | |
<ct:participant role="recipient"> | |
<persName>Louis de La Foye</persName> | |
<settlement>Caen</settlement> | |
</ct:participant> | |
</ct:correspDesc> | |
</profileDesc> | |
</teiHeader> | |
<text> | |
<body> | |
<div></div> | |
</body> | |
</text> | |
</TEI> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment