-
Notifications
You must be signed in to change notification settings - Fork 1
/
sampleTEIHeader.xml
113 lines (109 loc) · 5.46 KB
/
sampleTEIHeader.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="ODD/out/graveyardODD.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<?xml-model href="ODD/out/graveyardODD.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt>
<title>Title of this document</title>
<!--You can include a respStmt to indicate various responsibilities, one for each name on your project team.-->
<respStmt>
<resp>Markup by</resp>
<persName xml:id="jmh">Madison Bredice</persName>
<persName></persName>
<persName></persName>
</respStmt>
</titleStmt>
<publicationStmt>
<authority>Prepared in TEI P5 by The Graveyard project team on newtFire.org. GitHub
repository: <ref target="https://github.com/jonhoranic/theGraveyard"/>. Date last
worked on: <date when="2016-11-10">10 November 2016</date></authority>
<availability>
<licence><!--Choose and identify a Creative Commons license for distribution. Look here: https://creativecommons.org/share-your-work/--></licence>
</availability>
</publicationStmt>
<sourceDesc>
<!--ebb: This is the part where you want to elaborate on your sources of information, the layout of the graveyard, your photography, the provenance of the documents you are working with. We're looking at EpiDoc as a model here. I'm drawing on EpiDoc as a model here.-->
<msDesc>
<msIdentifier>
<repository>museum/archive</repository>
<idno>inventory number</idno>
</msIdentifier>
<physDesc>
<objectDesc>
<supportDesc>
<support>description of information resources: documents and monuments (may
include <material>paper</material>, <material>concrete</material>,
<material>granite</material>, etc. and <objectType>burial
records</objectType> information. The following are optional, but you
can include <dimensions>
<height/>
<width/>
<depth/>
</dimensions> of particular objects here, or you may want to simply
<measureGrp><measure>measurements</measure></measureGrp>
etc.)</support>
</supportDesc>
<layoutDesc>
<layout>description of text field/campus. You can include as many measure
groups as you need to define the layout. <measureGrp><measure unit="yard"
>measurement</measure></measureGrp> here.</layout>
</layoutDesc>
</objectDesc>
</physDesc>
<history>
<origin>
<origPlace>Place of origin</origPlace>
<origDate>Date of origin</origDate>
</origin>
<provenance type="found"> Findspot and circumstances/context </provenance>
<provenance type="observed">Modern location(s) (if different from repository,
above) </provenance>
</history>
<additional>
<adminInfo>
<custodialHist>
<custEvent type="photography"/>
</custodialHist>
</adminInfo>
</additional>
</msDesc>
</sourceDesc>
</fileDesc>
</teiHeader>
<facsimile>
<graphic url="graveyard map photo URL"/>
<graphic url="another photo or diagram of the area etc"/>
</facsimile>
<text>
<body>
<div><!--ebb: The div sets the section level. This needs either an attribute or a child <head> element to define the section.-->
<listPerson xml:id="lot3"><!--Each listPerson represents a single "lot" of people. You want an attribute value to hold this info. Let's use an @xml:id.-->
<head>Lot 3 refers to a group of gravestones bordered on the southeastern side by a shrub.
<geo><!--Stick a pair of whitespace-separated geocoordinates here. Look up how to do this in the TEI.--></geo>
</head>
<person xml:id="who1" sex="f">
<persName><surname/>
<forename/>
<forename/>
<roleName/>
</persName>
<birth notBefore="2016-01-01" notAfter="2016-02-05"><placeName>Mount Pleasant,
PA</placeName></birth>
<death when="2016-09-09"><note type="cause">natural
causes</note><placeName>Greensburg, PA</placeName></death>
<event>
<desc>Stuff</desc>
</event>
<occupation/>
<trait type="racial">
<label>white</label>
</trait>
<graphic url="photo.jpg"/>
<geo><!--Look up how to properly set geocoordinates in here.--></geo>
</person>
</listPerson>
</div>
</body>
</text>
</TEI>