forked from distributed-text-services/MyDapytains
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_citeData_two_levels.xml
More file actions
50 lines (50 loc) · 2.24 KB
/
test_citeData_two_levels.xml
File metadata and controls
50 lines (50 loc) · 2.24 KB
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
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<encodingDesc>
<refsDecl n="nums" default="true">
<citeStructure unit="part" match="//body/div" use="@xml:id">
<citeData use="./@part" property="http://foo.bar/part"/>
<citeStructure unit="book" match="div" use="@n" delim=".">
<citeData use="./head/text()" property="http://purl.org/dc/terms/title"/>
<citeData use=".//persName[1]/text()" property="http://purl.org/dc/terms/creator"/>
</citeStructure>
</citeStructure>
</refsDecl>
</encodingDesc>
</teiHeader>
<text>
<body>
<div xml:id="part-1" part="1">
<div xml:id="div-001" n="1">
<head xml:lang="en">Introduction</head>
<head xml:lang="fr">Introduction</head>
<p>Lorem ipsum dolor sit amet, <persName>John Doe</persName>.</p>
</div>
<div xml:id="div-002" n="2">
<head xml:lang="en">Background</head>
<head xml:lang="fr">Contexte</head>
<p>Consectetur adipiscing elit</p>
</div>
</div>
<div xml:id="part-2" part="2">
<div xml:id="div-003" n="3">
<head xml:lang="en">Methodology</head>
<head xml:lang="fr">Méthodologie</head>
<p>Sed do eiusmod tempor incididunt, <persName>Albert Einstein</persName>.</p>
</div>
<div xml:id="div-004" n="4">
<head xml:lang="en">Results</head>
<head xml:lang="fr">Résultats</head>
<p>Ut labore et dolore magna aliqua, <persName>Isaac Newton</persName>.</p>
</div>
</div>
<div xml:id="part-3" part="3">
<div xml:id="div-005" n="5">
<head xml:lang="en">Conclusion</head>
<head xml:lang="fr">Conclusion</head>
<p>Ut enim ad minim veniam, <persName>Marie Curie</persName>.</p>
</div>
</div>
</body>
</text>
</TEI>