forked from SAA-SDT/EAS-TagLibraries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTL_template.xml
122 lines (118 loc) · 4.99 KB
/
TL_template.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
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="../schema/TL-teiliteSchema.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0"
xmlns:exml="http://workaround for xml namespace restriction/namespace"
xmlns:xlink="http://www.w3c.org/1999/xlink"
xmlns:ead="http://ead3.archivists.org/schema/"
xmlns:eac="http://archivists.org/ns/eac/v2"
xmlns:xi="http://www.w3.org/2001/XInclude">
<teiHeader>
<fileDesc>
<titleStmt>
<title type="main">Title</title>
<title type="additional">Version</title>
<respStmt>
<resp>Prepared and maintained by the </resp>
<name>Name</name>
</respStmt>
</titleStmt>
<editionStmt>
<edition>Edition</edition>
</editionStmt>
<publicationStmt>
<publisher>Society of American Archivists</publisher>
<address>
<addrLine>17 North State Street, suite 1425</addrLine>
<addrLine>Chicago, IL 60602-3315</addrLine>
<addrLine>USA</addrLine>
<addrLine>312-606-0722</addrLine>
<addrLine>Fax: 312-606-0728</addrLine>
<addrLine>[email protected]</addrLine>
<addrLine>www.archivists.org</addrLine>
</address>
<date when="2024"/>
<idno>ISBN Number</idno>
<availability>
<licence>This work is licensed under a Creative Commons Attribution 4.0 International
License (CC BY 4.0). See <ref target="http://creativecommons.org/licenses/by/4.0/"
>http://creativecommons.org/licenses/by/4.0/</ref>. Some rights reserved. No
part of this publication may be reproduced, stored in a retrieval system or
transmitted in any form or by any means, electronic, mechanical or photocopying,
recording, or otherwise without attribution.</licence>
</availability>
</publicationStmt>
<sourceDesc>
<p>Born digital.</p>
</sourceDesc>
</fileDesc>
</teiHeader>
<text>
<front>
<titlePage>
<docTitle>
<titlePart type="main">Document full title</titlePart>
<titlePart type="additional">Version</titlePart>
</docTitle>
<docEdition>Edition</docEdition>
<byline>Prepared and maintained by the</byline>
<docAuthor>Writer</docAuthor>
<docAuthor>Writer</docAuthor>
<docImprint>
<docDate>Date of the document</docDate>
</docImprint>
</titlePage>
<div>
<!-- Descriptive chapters
Consists of a wrapper <div> with the elements:
<head> for the title
<p>'s for the text
<div> for creating next level titles
<egXML xmlns="http://www.tei-c.org/ns/Examples"> for examples
In text these elements are possible:
<ref> with @target for e-mail, webbpage and so on
<tag> with text to create anglebrakets
<att> with text to create attributes
Possible elements in each <p>:
<list type="ordered"> for ordered list
the list contains:
<head> for title
<item n="number"> for the text and where @number is the ordered number (same number cant occur twice)
<list type="simple"> for a simple list
the list contains:
<item> for the text
<note n="number"> for creating footnotes
-->
<div xml:id="front-example">
<head>Title</head>
<p>Text</p>
<egXML xmlns="http://www.tei-c.org/ns/Examples"/>
<list type="simple">
<item>Item 1</item>
<item>Item 2</item>
</list>
</div>
</div>
</front>
<body>
<div type="elements">
<!-- One include for each element href points to the element file -->
<xi:include href="./descriptions/elem-abbreviation.xml" parse="xml"/>
</div>
<div type="attributes">
<!-- One include for each attribute href points to the element file -->
<xi:include href="./descriptions/attr-accuracy.xml" parse="xml"/>
</div>
</body>
<back>
<!-- One div for each element same element available as for div in front
in the div:
@type is always appendix
@xml:id is a short name of the appendix
-->
<div type="appendix" xml:id="appendix1">
<head>Title</head>
<p>Contents of the appendix; this can also include lists</p>
</div>
</back>
</text>
</TEI>