-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCEI.dtd
1524 lines (1304 loc) · 61.4 KB
/
CEI.dtd
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!--
** Charter Encoding Initiative - Markup for medieval and early modern legal records: charters, deeds, acts, instruments etc.
** Version 1.0.1 - 2009-04-29
** A DTD including all names proposed by the CEI for use in charter markup as elements.
** no hierarchy and order of the elements
** This is the original main reference representing only the taglibrary with no further structure. A more structured version is continuously update in cei.xsd (and older versions up to 2017 in cei060222.xsd
** this version is mainly kept for documentation reasons. Current work on CEI is documented in cei.xsd and the proposal to align CEI with TEI P5 in htts://github.com/GVogeler/CEI2TEI
**
-->
<!-- all element names as entity -->
<!ENTITY % Elemente "issueDate | nota | pictRef | sigillant | testis | legend | archIdentifier | issued | pict | scope | notariusSub | notariusSign | watermark | charter | chDesc | idno | adressee | issuePlace | diplomaticAnalysis | sigil | recipient | abstract | chirograph | archFond | language | prints | remarks | arch | issuer | form | authDesc | studies | script | traditioForm | rubrum | provenance | dateOrig | scribe | facsimiles | sealDesc | regesta | class | elongata | datatio | sanctio | apprecatio | subscriptio | testes | invocatio | protocol | tenor | salutatio | petitio | corroboratio | setPhrase | dispositio | narratio | context | arenga | publicatio | inscriptio | intitulatio | eschatocol | sup | figure | hi | index | resp | ptr | link | availability | projectDesc | respStmt | anchor | span | sourceDesc | listBibl | monogr | head | figDesc | foreign | item | cit | dateRange | list | term | div | body | front | text | back | fileDesc | encodingDesc | profileDesc | ref | notesStmt | note | group | graphic | titleStmt | quote | editionStmt | publicationStmt | seriesStmt | revisionDesc | c | lb | p | pb | cb | app | space | unclear | damage | handShift | handList | hand | restore | delSpan | addSpan | gap | add | sic | rdg | supplied | lem | rdgGrp | witDetail | wit | witList | witness | witStart | witEnd | lacunaStart | lacunaEnd | corr | expan | abbr | del | genName | persName | surname | foreName | roleName | nameLink | name | orgName | orgTitle | orgType | orgDivn | nameSort | addName | date | time | dateStruct | timeStruct | day | week | month | year | second | minute | occasion | dateSort | hour | settlement | region | country | bloc | geogName | geog | offset | distance | placeName | author | bibl | pubPlace | edition | publisher | biblStruct | title | imprint | handDesc | support | extent | collation | layout | msWriting | decoration | bindingDesc | foliation | condition | seal | teiHeader | binding | material | dimensions | decoNote | physicalDesc | additions" >
<!-- root element -->
<!ELEMENT cei (#PCDATA | %Elemente;)*>
<!-- Contains: abstract root-element -->
<!--
############## Module: CEI ##############
Other CEI-elements
-->
<!ELEMENT issueDate (#PCDATA | %Elemente;)*>
<!-- Contains: contains the date when the charter ist issued in any format. -->
<!ATTLIST issueDate
id CDATA #IMPLIED
lang CDATA #IMPLIED
n CDATA #IMPLIED
calendar CDATA #IMPLIED
value CDATA #IMPLIED
certainty CDATA #IMPLIED
>
<!ELEMENT nota (#PCDATA | %Elemente;)*>
<!-- Contains: contains the extra sigillum notes on the document. (cfr. VID n. 180: Les mentions hors teneur (Lat.: extra tenorem, parfois extra sigillum), plac�es sur les originaux sur ou sous le repli des actes, dans les amrges, aupr�s du sceau ou au dos de la pi�ce, et comportant des indications sur l'�laboration de l'acte, sur les formalit�s ne�cessaires � sa validit� ou bien relatives � son entregsitrement ou � son ex�cution (mais distinctes des mentions ult�rieures, notamment d'archivage), ne paticipent pas stricto sensu � la nature m�me de l'acte. On les dit parfois 'mentions de chancellerie') -->
<!ATTLIST nota
type CDATA #IMPLIED
date CDATA #IMPLIED
resp CDATA #IMPLIED
place CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT pictRef (#PCDATA | %Elemente;)*>
<!-- Contains: Reference to an external picture ressource. -->
<!ELEMENT sigillant (#PCDATA | %Elemente;)*>
<!-- Contains: the person whose seal to authenticates the charter -->
<!ELEMENT testis (#PCDATA | %Elemente;)*>
<!-- Contains: a single witness of the legal action represented by the charter -->
<!ELEMENT legend (#PCDATA | %Elemente;)*>
<!-- Contains: text written on a seal -->
<!ELEMENT archIdentifier (#PCDATA | %Elemente;)*>
<!-- Contains: the identification of an archival object, usually build from the name of the archive, the archival fonds and the identification code of the record within the fonds. -->
<!ATTLIST archIdentifier
id CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT issued (#PCDATA | %Elemente;)*>
<!-- Contains: a container for date and place of issuing of the charter -->
<!ATTLIST issued
id CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT pict (#PCDATA | %Elemente;)*>
<!-- Contains: pictorial parts of a document, like monogrammatic invocations (Chrismon), crosses prefixed to subscriptions, symbols etc.
Notarial signs are marked as <notariusSign> -->
<!ATTLIST pict
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT scope (#PCDATA | %Elemente;)*>
<!-- Contains: marks a text giving the specific place of an information in an wider entity, like a page in a book or a document, or a range of pages. -->
<!ATTLIST scope
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT notariusSub (#PCDATA | %Elemente;)*>
<!-- Contains: contains the subscription of a notary. If the notarial sign is in graphical connection with the subscription it can be marked as a part of notariusSub -->
<!ATTLIST notariusSub
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT notariusSign (#PCDATA | %Elemente;)*>
<!-- Contains: Marks the place of the notarial sign. -->
<!ATTLIST notariusSign
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT watermark (#PCDATA | %Elemente;)*>
<!-- Contains: contains a detailed description of a watermark identified in the paper on which a document is written. -->
<!ATTLIST watermark
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT charter (#PCDATA | %Elemente;)*>
<!-- Contains: containing all informations on one single document -->
<!ATTLIST charter
id CDATA #IMPLIED
lang CDATA #IMPLIED
n CDATA #IMPLIED
>
<!--
############## Module: CEI-Meta ##############
Elements for the metadata of a charter
-->
<!ELEMENT chDesc (#PCDATA | %Elemente;)*>
<!-- Contains: marks a description of the document defined by the CID as follows:
"L'analyse diplomatique (ou simplement analyse) d'un acte est un résumé de celui-ci, rédigée sous forme concise, adéquate et dégageant l'essentiel de son contenu historique et juridique; elle est noamment dressée pour être publiée en tête d'une édition e l'acte."
For calendars/regesta with more detailed informations this element can contain detailed informations on the content, but should be augmented by elements describing the physical setting, annotating the content etc. -->
<!ATTLIST chDesc
picture CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT idno (#PCDATA | %Elemente;)*>
<!-- Contains: contains the unique identifier of a document in a body of documents or its locator in the holdings of an archives or a library -->
<!ATTLIST idno
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT adressee (#PCDATA | %Elemente;)*>
<!-- Contains: The person to who the document is adressed if different from the person who receives the document (<recipient>) -->
<!ATTLIST adressee
reg CDATA #IMPLIED
>
<!ELEMENT issuePlace (#PCDATA | %Elemente;)*>
<!-- Contains: contains the name of the place where the document was issued - usually as expressed in the date - with its modern name. -->
<!ATTLIST issuePlace
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT diplomaticAnalysis (#PCDATA | %Elemente;)*>
<!-- Contains: contains a diplomatic analysis of the document, the formal criticism of its form and content. -->
<!ATTLIST diplomaticAnalysis
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT sigil (#PCDATA | %Elemente;)*>
<!-- Contains: the abbreviation used for a document or textual witness defined in the witnesslist and refered to in the wit element in the apparatus -->
<!ELEMENT recipient (#PCDATA | %Elemente;)*>
<!-- Contains: The name of the person who is rmeant to eceives the document. -->
<!ATTLIST recipient
id CDATA #IMPLIED
lang CDATA #IMPLIED
reg CDATA #IMPLIED
>
<!ELEMENT abstract (#PCDATA | %Elemente;)*>
<!-- Contains: contains the text of the abstract/summary of the document as a head before an edited text or as a single part of calendar/regesta collection (like RI) -->
<!ATTLIST abstract
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT chirograph (#PCDATA | %Elemente;)*>
<!-- Contains: description of the text cut in two parts in a chirograph -->
<!ATTLIST chirograph
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT archFond (#PCDATA | %Elemente;)*>
<!-- Contains: the archival fonds in which the document belongs or is placed -->
<!ATTLIST archFond
expan CDATA #IMPLIED
abbr CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT language (#PCDATA | %Elemente;)*>
<!-- Contains: (main-)language of the document -->
<!ATTLIST language
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT prints (#PCDATA | %Elemente;)*>
<!-- Contains: lists existing prints of the document -->
<!ATTLIST prints
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT remarks (#PCDATA | %Elemente;)*>
<!-- Contains: contains any remark and comment not classified# in other elements. -->
<!ATTLIST remarks
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT arch (#PCDATA | %Elemente;)*>
<!-- Contains: Name of the institution (archives or library) holding the document or its copy -->
<!ATTLIST arch
expan CDATA #IMPLIED
abbr CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT issuer (#PCDATA | %Elemente;)*>
<!-- Contains: marks a person the CID describes as follows:
L'auteur d'un acte écrit est la personne au nom de qui cet acte est intitulé. -->
<!ATTLIST issuer
id CDATA #IMPLIED
lang CDATA #IMPLIED
reg CDATA #IMPLIED
>
<!ELEMENT form (#PCDATA | %Elemente;)*>
<!-- Contains: contains the physical form of the document, i.e. single sheet, libellum, rotulus ... -->
<!ELEMENT authDesc (#PCDATA | %Elemente;)*>
<!-- Contains: describes the type of authentification used on the document. -->
<!ATTLIST authDesc
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT studies (#PCDATA | %Elemente;)*>
<!-- Contains: lists scholarly studies using or dealing in any way with the document -->
<!ATTLIST studies
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT script (#PCDATA | %Elemente;)*>
<!-- Contains: gives the paleographic name for the script used in the document -->
<!ATTLIST script
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT traditioForm (#PCDATA | %Elemente;)*>
<!-- Contains: names the type of textual transmission, e.g. original, copy, extract etc.
contains the information on the textual 'tradition' of the document described by the CID as follows:
La tradition des actes est la chaîne des états d'un *document, entre le texte tel qu'il a été voulu par son auteur et mis par écrit pour la premiére fois d'une facon définitve, et celui qui nous est parvenu. -->
<!ATTLIST traditioForm
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT rubrum (#PCDATA | %Elemente;)*>
<!-- Contains: classification given on the document or as an endorsment by the recipient or the archive. -->
<!ATTLIST rubrum
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT provenance (#PCDATA | %Elemente;)*>
<!-- Contains: The agency, institution, organisation or individual that created, accumulated and maintained records -->
<!ATTLIST provenance
expan CDATA #IMPLIED
abbr CDATA #IMPLIED
id CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT dateOrig (#PCDATA | %Elemente;)*>
<!-- Contains: Date in the way given on the document. -->
<!ATTLIST dateOrig
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
value CDATA #IMPLIED
>
<!ELEMENT scribe (#PCDATA | %Elemente;)*>
<!-- Contains: identifcation (by name or by an abbreviation) of the scribe of the charter -->
<!ELEMENT facsimiles (#PCDATA | %Elemente;)*>
<!-- Contains: lists the facsimilia of the given document -->
<!ATTLIST facsimiles
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT sealDesc (#PCDATA | %Elemente;)*>
<!-- Contains: description of the seal -->
<!ATTLIST sealDesc
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT regesta (#PCDATA | %Elemente;)*>
<!-- Contains: names lists containing the document described by the element. -->
<!ATTLIST regesta
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT class (#PCDATA | %Elemente;)*>
<!-- Contains: a textual or formal classification of the document (e.g. breve, writ, preceptum, mandato, Bulle, recognitio feodorum, oblatio, transsumptum ...) -->
<!ATTLIST class
type CDATA #IMPLIED
subtype CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!--
############## Module: CEI-Text ##############
Elements for the charter text itself
-->
<!ELEMENT elongata (#PCDATA | %Elemente;)*>
<!-- Contains: marks parts of the text in the script the CID describes as follows:
Les lettres allongées (lat.: litterae elongatae), caractérisées par leur élongation par rapport aux autres lettres de l'acte par le resserrement général de l'écriture, sont utilisées pour certains éléments du texte (*invocation, *suscription, première ligne, *souscriptions ou *signa, date ...) dans certaines chancelleries (chancellerie pontificale et carolingienne notamment). Elles peuvent aussi être simplement décoratives dans certains actes de nature solennelle. -->
<!ATTLIST elongata
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT datatio (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of the text the CID describes as follows:
La formule de date est, dans le texte d'un acte, l'indication qui permet d'en connaître la date. Elle comporte souvent une *date de temps et une *date de lieu.
Elle peut être placée en tête de l'acte (date initiale) ou en fin (date finale) oub bient se trouver partagée entre le début et la fin de l'acte. Par exemple, dans les *privilèges pontificaux du IXe au XIIe si`cle, on trouve uine 'petite date' (data brevis) qui comporte une indication sommaire (mois et indiction) dans la formule 'scrptum per ... N.', et une 'grande date' (data longa) dnans la formule finale de *recognition au pied de la pièce ('datum per manum ... N.') (Noter que dans les suppliques pontificdales le terme de 'parva data' s'appliqaue à la date du dépôt de la supplique).
Introduite par les mots 'Datum, Actu, Factu, Scriptum, Confectum' etc. (parfois au féminin et, plur rarement, au masculin) ou par leurs équivalents en langue vulgaire, elle peut se dévelepper en mentionnant le nom du noaire ou du scribe qui a rédigé ou écrit l'acte ('Scriptum per manum ...') ou encore de l'officier de chancellerie qui entend donner ainsi une indication sur la responsabilité qu'il a prise dans l'expédition de l'acte ('Datum per manum ...') -->
<!ATTLIST datatio
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT sanctio (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of a document the CID describes as follows:
Les clauses pénales (lat.: sanctio negativa) sont des clauses destinées à assurer l'exécution de l'acte en prévoyant, contre ceux qui ne l'exécuteraient pas ou qui empêcheraient son exécution, des sanctions temporelles et en les menacant de ch�timents spirituels, ou de l'une autre de même valeur. -->
<!ATTLIST sanctio
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT apprecatio (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of the text definde by the CID as follows: L'apprecation (lat.: apprecatio) est une formule propitiatoire par laquelle, en pendant avec l'incovation initiale, l'acte s'achève. Elle prend souvent la forme 'In Dei nomine, feliciter. Amen' -->
<!ATTLIST apprecatio
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT subscriptio (#PCDATA | %Elemente;)*>
<!-- Contains: contains the text of any kind of subscription (autograph, non-autograph, notarial subscription including the signs as monograms etc. -->
<!ATTLIST subscriptio
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT testes (#PCDATA | %Elemente;)*>
<!-- Contains: the part of the text naming the witnesses, as described by the CID as follows:
La liste de témoins est l'élement de l'acte qui contient les noms des témoins de l'acte écriut ou de l'acte juridique, ou des deux, lesquels constatent l'existence de cet acte et y donnent leur assentiment. -->
<!ATTLIST testes
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT invocatio (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of the text the CID describes as follows:
L'invocation verbale ou simplement invocation (lat. invocatio) est la formule de dévotion par laquelle s'ouvre le protocole des actes pour que le contenu en soit placé sous la protection divine et éventuellement (ou secondairement) sous le patronage d'un saint, le tout pouvant s'achever par 'Amen'. Elle peut s'acompagner d'une corix ou d'un *invocation figurée. -->
<!ATTLIST invocatio
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT protocol (#PCDATA | %Elemente;)*>
<!-- Contains: marks the initial formal part of a document described by the CID as follows:
Le text s'insère dans un cadre formel initial (le protocole) et final (l'eschatocole), dont les éléments ne sont pas nécessairement formulés en fonction de l'acte en question, mais qui répondent aux régles en usage pour un même type de document, compte tenu de son contenu juridigque et de sa nature diplomatique. -->
<!ATTLIST protocol
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT tenor (#PCDATA | %Elemente;)*>
<!-- Contains: the text of the document -->
<!ATTLIST tenor
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT salutatio (#PCDATA | %Elemente;)*>
<!-- Contains: the greeting clause -->
<!ATTLIST salutatio
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT petitio (#PCDATA | %Elemente;)*>
<!-- Contains: marks a part of the document expressing the petition (cfr. the CID:
La trace de la requête peut apparître dans le texte même de l'acte qui en découle sous la forme ad instanciam, ad petitoinem N. (ou une formule analogue).) -->
<!ATTLIST petitio
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT corroboratio (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of the document the CID describes as follows:
Par la clause de corroboration, parfois assorie d'un ordre de mise par écrit ou d'expédition, (qui peut auusi en être ditinct: "hanc chartam scriebere jussimus ...") sont annoncés les signes de validatio (*souscripiotn: "manupropria subterfiramvimus"; * seings ou signatures: "manibus idoneorum testium signari ..."; sceaux: "de anulo nostro subter signari jussimus, "sigillum nostrum duximus appondendum ..."), en précisant qu'ils sont apposés pour donner validité à l'acte
- Soit à titre de preuve de l'existence de celui-ci (corroboration testimoniale ou probatoire: "In cujuis rei testimonium ..."- Soit pour lui conférer valeur perpétuelle (corroboration perpétuelle: "Quod ut ratum et stabile in perpetuum permaneat" -->
<!ATTLIST corroboratio
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT setPhrase (#PCDATA | %Elemente;)*>
<!-- Contains: any word sequence refering to a #specific# content. The type of the formula should be given in the TYPE-attribute using the semantics of the VID. -->
<!ATTLIST setPhrase
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT dispositio (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of the text described by the CID as follows:
Le dispositif (lat.: dispositio) est la partie fondamentale du texte, par laquelle l'auteur manifeste sa volonté et fait naître l'acte juridique ou en reconnaît l'existence, en déterminant sa nature, sa portée, ses modalités, - éventuellement l'origine de propriété.
Le verbe employé dans le dispositif oriente sur la nature juridique de l'acte ('concedimus' = 'concessio', 'vendidimus'='venditio' etc. -->
<!ATTLIST dispositio
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT narratio (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of the text the CID describes as follows:
L'exposé (lat. narratio) est la partie dur texte par laqwuelle sont expliquées les circonstances du *commandement de l'acte, ses raisons, éventuellement les antécédents de l'affaire (*requête, *intervention de tiers, production de pièces, enquêtes, litiges, arguments des parties en cause, etc.) -->
<!ATTLIST narratio
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT context (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of the document the CID describes as follows:
Le texte proprement dit est la partie de la teneur se rapportant directement à l'acte juridique qui s'y trouve mis par écrit: justification de cet acte, exposé des circonstances qui l'ont provoqué, dispositions, clauses destinées à en préciser la partée et à en assurer l'exécution. -->
<!ATTLIST context
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT arenga (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of the text definde by the CID as follows: Le préambule (lat. arenga, exordium, proemium) est la partie du texte par laquelle celui-ci est justifié de facon générale par des considérations juridiques , religiuese, morales ou simplemtn de convenance (telle qu 'quoniam labilis est memoria'). -->
<!ATTLIST arenga
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT publicatio (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of a document the CID describes as follows:
La notification (lat.: notificatio, publicatio, promulgatio) est une formule par laquelle ce qui suit es porté à la conaissance. -->
<!ATTLIST publicatio
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT inscriptio (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of a document containing the adresse, describe by the CID as follows:
L'adresse (Lat. inscription, persona salutata) est l'élément du protocole par lequel sont indiqués le nom et éventuellement les tritres et qualités de la personne (ou des personnes) à qui l'acte est adressé, qu ce soit comme bénéficiaire ou comme exécuteur ou pour simple information. -->
<!ATTLIST inscriptio
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT intitulatio (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of the text the CID describes as follows:
La suscription (lat. intitulatio, superscriptio, persona salutans) est l'élément du protocole qui fait connaître le nom de l'auteur de l'acte écrit et sa titulature. Elle peut prendre un aspect pesonnel et commencer par le pronom Ego, Nos. -->
<!ATTLIST intitulatio
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT eschatocol (#PCDATA | %Elemente;)*>
<!-- Contains: marks the part of the document described by the CID as the final part of some stereotypical clauses:
Le text s'insère dans un cadre formel initial (le protocole) et final (l'eschatocole), dont les éléments ne sont pas nécessairement formulés en fonction de l'acte en question, mais qui répondent aux régles en usage pour un même type de document, compte tenu de son contenu juridigque et de sa nature diplomatique. -->
<!ATTLIST eschatocol
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!--
############## Module: CEI-Layout ##############
-->
<!ELEMENT sup (#PCDATA | %Elemente;)*>
<!-- Contains: marks superscript text in the original -->
<!--
############## Module: TEI ##############
Other elements taken from the TEI
-->
<!ELEMENT figure (#PCDATA | %Elemente;)*>
<!-- Contains: the place of a figure -->
<!ATTLIST figure
type CDATA #IMPLIED
corresp CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT hi (#PCDATA | %Elemente;)*>
<!-- Contains: (highlighted) marks a word or phrase as graphically distinct from the surrounding text, for reasons concerning which no claim is made. -->
<!ATTLIST hi
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
>
<!ELEMENT index (#PCDATA | %Elemente;)*>
<!-- Contains: * <index> marks a location to be indexed for whatever purpose.
level1 (first-level index entry) gives the form under which the index entry is to be made.
level2 (second-level index entry) gives the second-level form, if any.
level3 (third-level index entry) gives the third-level form, if any.
level4 (fourth-level index entry) gives the fourth-level form, if any.
index (index number) indicates which index (of several) the index entry belongs to.
The tag <index> associates up to four levels of index terms with a specific point in the text. The index terms are supplied in attributes named level1, level2, level3, and level4. An index attribute associates the entry with a particular index, so multiple indices are possible.
All index terms must be supplied as attribute values; no part of the text itself is taken as a term. This may require words or phrases to be repeated, as illustrated below; it also allows spelling to be normalized, as the example show. -->
<!ATTLIST index
id CDATA #IMPLIED
lang CDATA #IMPLIED
level1 CDATA #IMPLIED
level2 CDATA #IMPLIED
level3 CDATA #IMPLIED
level4 CDATA #IMPLIED
indexName CDATA #IMPLIED
lemma CDATA #IMPLIED
>
<!ELEMENT resp (#PCDATA | %Elemente;)*>
<!-- Contains: contains a phrase describing the nature of a person's intellectual responsibility. (from teiHeader) -->
<!ELEMENT ptr (#PCDATA | %Elemente;)*>
<!-- Contains: defines a pointer to another location in the current document in terms of one or more identifiable elements.
Attribute: target=specifies the destination of the pointer by supplying the values used on the id attribute of one or more other elements in the current document -->
<!ATTLIST ptr
target CDATA #IMPLIED
>
<!ELEMENT link (#PCDATA | %Elemente;)*>
<!-- Contains: <link> defines an association or hypertextual link among elements or passages, of some type not more precisely specifiable by other elements.
Attribute targets=specifies the identifiers of the elements or passages to be linked or associated. -->
<!ATTLIST link
targets CDATA #IMPLIED
>
<!ELEMENT availability (#PCDATA | %Elemente;)*>
<!-- Contains: restrictions of availabilty of a text (esp. in the teiHeader) -->
<!ELEMENT projectDesc (#PCDATA | %Elemente;)*>
<!-- Contains: (project description) describes in detail the aim or purpose for which an electronic file was encoded, together with any other relevant information concerning the process by which it was assembled or collected. -->
<!ELEMENT respStmt (#PCDATA | %Elemente;)*>
<!-- Contains: from teiHeader -->
<!ELEMENT anchor (#PCDATA | %Elemente;)*>
<!-- Contains: -->
<!ATTLIST anchor
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
name CDATA #IMPLIED
>
<!ELEMENT span (#PCDATA | %Elemente;)*>
<!-- Contains: -->
<!ATTLIST span
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT sourceDesc (#PCDATA | %Elemente;)*>
<!-- Contains: supplies a bibliographic description of the copy text(s) from which an electronic text was derived or generated. -->
<!ELEMENT listBibl (#PCDATA | %Elemente;)*>
<!-- Contains: lists any kind of bibliography -->
<!ATTLIST listBibl
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT monogr (#PCDATA | %Elemente;)*>
<!-- Contains: -->
<!ELEMENT head (#PCDATA | %Elemente;)*>
<!-- Contains: (heading) contains any heading, for example, the title of a section, or the heading of a list or glossary. -->
<!ELEMENT figDesc (#PCDATA | %Elemente;)*>
<!-- Contains: (Description of Figure) contains a brief prose description of the appearance or content of a graphic figure, for use when documenting an image without displaying it. -->
<!ELEMENT foreign (#PCDATA | %Elemente;)*>
<!-- Contains: (foreign) identifies a word or phrase as belonging to some language other than that of the surrounding text. -->
<!ATTLIST foreign
id CDATA #IMPLIED
lang CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT item (#PCDATA | %Elemente;)*>
<!-- Contains: contains one component of a list. -->
<!ELEMENT cit (#PCDATA | %Elemente;)*>
<!-- Contains: A quotation from some other document, together with a bibliographic reference to its source. -->
<!ELEMENT dateRange (#PCDATA | %Elemente;)*>
<!-- Contains: from TEI -->
<!ATTLIST dateRange
to CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
from CDATA #IMPLIED
>
<!ELEMENT list (#PCDATA | %Elemente;)*>
<!-- Contains: contains any sequence of items organized as a list. -->
<!ELEMENT term (#PCDATA | %Elemente;)*>
<!-- Contains: a general element to mark any fixed term -->
<!ATTLIST term
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT div (#PCDATA | %Elemente;)*>
<!-- Contains: -->
<!ATTLIST div
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
>
<!ELEMENT body (#PCDATA | %Elemente;)*>
<!-- Contains: Main part of a text - after a front and back matter -->
<!ELEMENT front (#PCDATA | %Elemente;)*>
<!-- Contains: (front matter) contains any prefatory matter (headers, title page, prefaces, dedications, etc.) found at the start of a document, before the main body. -->
<!ELEMENT text (#PCDATA | %Elemente;)*>
<!-- Contains: contains a text or a corpus of texts -->
<!ATTLIST text
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
n CDATA #IMPLIED
decl CDATA #IMPLIED
>
<!ELEMENT back (#PCDATA | %Elemente;)*>
<!-- Contains: Parts of a text as appendices, indices, bibliography etc. -->
<!ELEMENT fileDesc (#PCDATA | %Elemente;)*>
<!-- Contains: a file description, tagged <fileDesc>, containing a full bibliographical description of the computer file itself, from which a user of the text could derive a proper bibliographic citation, or which a librarian or archivist could use in creating a catalogue entry recording its presence within a library or archive. The term computer file here is to be understood as referring to the whole entity or document described by the header, even when this is stored in several distinct operating system files. The file description also includes information about the source or sources from which the electronic document was derived. -->
<!ELEMENT encodingDesc (#PCDATA | %Elemente;)*>
<!-- Contains: an encoding description, tagged <encodingDesc>, which describes the relationship between an electronic text and its source or sources. It allows for detailed description of whether (or how) the text was normalized during transcription, how the encoder resolved ambiguities in the source, what levels of encoding or analysis were applied, and similar matters. -->
<!ELEMENT profileDesc (#PCDATA | %Elemente;)*>
<!-- Contains: a text profile, tagged <profileDesc>, containing classificatory and contextual information about the text, such as its subject matter, the situation in which it was produced, the individuals described by or participating in producing it, and so forth. Such a text profile is of particular use in highly structured composite texts such as corpora or language collections, where it is often highly desirable to enforce a controlled descriptive vocabulary or to perform retrievals from a body of text in terms of text type or origin. The text profile may however be of use in any form of automatic text processing. -->
<!ELEMENT ref (#PCDATA | %Elemente;)*>
<!-- Contains: defines a reference to another location in the current document, in terms of one or more identifiable elements, possibly modified by additional text or comment.
Attribute: target=specifies the destination of the reference by supplying the value of the id attribute on one or more other elements in the current document. -->
<!ATTLIST ref
type CDATA #IMPLIED
resp CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
target CDATA #IMPLIED
>
<!ELEMENT notesStmt (#PCDATA | %Elemente;)*>
<!-- Contains: (Notes statement) collects together any notes providing information about a text additional to that recorded in other parts of the bibliographic description. -->
<!ELEMENT note (#PCDATA | %Elemente;)*>
<!-- Contains: gives the text of a footnote.
* <note> contains a note or annotation.
type describes the type of note.
resp (responsible) indicates who is responsible for the annotation: author, editor, translator, etc.
place indicates where the note appears in the source text.
anchored indicates whether the copy text shows the exact place of reference for the note.
target indicates the point of attachment of a note, or the beginning of the span to which the note is attached.
targetEnd points to the end of the span to which the note is attached, if the note is not embedded in the text at that point.
A note is any additional comment found in a text, marked in some way as being out of the main textual stream. All notes should be marked using the same tag, <note>, whether they appear as block notes in the main text area, at the foot of the page, at the end of the chapter or volume, in the margin, or in some other place.
Notes may be in a different hand or typeface, may be authorial or editorial, and may have been added later. Attributes may be used to specify these and other characteristics of notes, as detailed below.
Where possible, the body of a note should be inserted in the text at the point at which its identifier or mark first appears. This may not be possible for example with marginal notes, which may not be anchored to an exact location. For simplicity, it may be adequate to position marginal notes before the relevant paragraph or other element. In some cases, however, it may be desirable to transcribe notes not at their point of attachment to the text but at their point of appearance (at the end of the volume, or the end of the chapter - not, in general, when the notes appear at the foot of the page); in this case the target and targetEnd attributes should be used to specify the point of attachment. In some cases, the note is explicitly attached not to a point but to a span of text; for a full discussion of pointing to points and spans in the text, see section 6.6 Simple Links and Cross References. -->
<!ATTLIST note
type CDATA #IMPLIED
resp CDATA #IMPLIED
place CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
n CDATA #IMPLIED
anchored CDATA #IMPLIED
target CDATA #IMPLIED
targetEnd CDATA #IMPLIED
>
<!ELEMENT group (#PCDATA | %Elemente;)*>
<!-- Contains: contains the body of a composite text, grouping together a sequence of distinct texts (or groups of such texts) which are regarded as a unit for some purpose, for example the collected works of an author, a sequence of prose essays, etc. -->
<!ELEMENT graphic (#PCDATA | %Elemente;)*>
<!-- Contains: -->
<!ATTLIST graphic
id CDATA #IMPLIED
n CDATA #IMPLIED
url CDATA #IMPLIED
>
<!ELEMENT titleStmt (#PCDATA | %Elemente;)*>
<!-- Contains: (title statement) groups information about the title of a work and those responsible for its intellectual content. -->
<!ELEMENT quote (#PCDATA | %Elemente;)*>
<!-- Contains: marks text passages containing text of a document inserted in another document (e.g. vidimus, transsumptum, "Vorurkunde") and other parts quoted from texts external zu the actual text. -->
<!ATTLIST quote
source CDATA #IMPLIED
>
<!ELEMENT editionStmt (#PCDATA | %Elemente;)*>
<!-- Contains: (edition statement) groups information relating to one edition of a text -->
<!ELEMENT publicationStmt (#PCDATA | %Elemente;)*>
<!-- Contains: (publication statement) groups information concerning the publication or distribution of an electronic or other text. -->
<!ELEMENT seriesStmt (#PCDATA | %Elemente;)*>
<!-- Contains: from teiHeader -->
<!ELEMENT revisionDesc (#PCDATA | %Elemente;)*>
<!-- Contains: a revision history, tagged <revisionDesc>, which allows the encoder to provide a history of changes made during the development of the electronic text. The revision history is important for version control and for resolving questions about the history of a file. -->
<!--
############## Module: TEI-Global ##############
The global TEI-elements for any kind of text
-->
<!ELEMENT c (#PCDATA | %Elemente;)*>
<!-- Contains: (character) represents a character. A single character like an punctuation mark should be given as an entity while the <c>-element might be used for marks in printed editions representing figures etc. (e.g. (C.), the three crosses in the MGH-edition) or different letter forms (e.g. long-s) -->
<!ATTLIST c
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
text CDATA #IMPLIED
function CDATA #IMPLIED
>
<!ELEMENT lb (#PCDATA | %Elemente;)*>
<!-- Contains: (line break) marks the start of a new line in the original as well as in an print -->
<!ATTLIST lb
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
ed CDATA #IMPLIED
>
<!ELEMENT p (#PCDATA | %Elemente;)*>
<!-- Contains: marks paragraphs -->
<!ATTLIST p
id CDATA #IMPLIED
lang CDATA #IMPLIED
rend CDATA #IMPLIED
n CDATA #IMPLIED
ed CDATA #IMPLIED
>
<!ELEMENT pb (#PCDATA | %Elemente;)*>
<!-- Contains: page break. marks the boundary between one page of a text and the next in a standard reference system. -->
<!ATTLIST pb
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
n CDATA #IMPLIED
ed CDATA #IMPLIED
>
<!ELEMENT cb (#PCDATA | %Elemente;)*>
<!-- Contains: (column break) marks the boundary between one column of a text and the next in a standard reference system. -->
<!ATTLIST cb
n CDATA #IMPLIED
ed CDATA #IMPLIED
>
<!--
############## Module: TEI-trans ##############
The TEI-elements for transcription of primary sources
-->
<!ELEMENT app (#PCDATA | %Elemente;)*>
<!-- Contains: contains one entry in a critical apparatus, with an optional lemma and at least one reading. -->
<!ATTLIST app
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT space (#PCDATA | %Elemente;)*>
<!-- Contains: indicates the location of a significant space in the copy text. -->
<!ATTLIST space
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT unclear (#PCDATA | %Elemente;)*>
<!-- Contains: contains a word, phrase, or passage which cannot be transcribed with certainty because it is illegible or inaudible in the source. -->
<!ATTLIST unclear
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT damage (#PCDATA | %Elemente;)*>
<!-- Contains: contains an area of damage to the text witness. -->
<!ATTLIST damage
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT handShift (#PCDATA | %Elemente;)*>
<!-- Contains: marks the beginning of a sequence of text written in a new hand, or of a change in the scribe, writing style, ink or character of the document hand. -->
<!ATTLIST handShift
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT handList (#PCDATA | %Elemente;)*>
<!-- Contains: contains a series of hand elements listing the different hands of the source. -->
<!ATTLIST handList
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT hand (#PCDATA | %Elemente;)*>
<!-- Contains: used in the header to define each distinct scribe or handwriting style. -->
<!ATTLIST hand
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT restore (#PCDATA | %Elemente;)*>
<!-- Contains: indicates restoration of text to an earlier state by cancellation of an editorial or authorial marking or instruction. -->
<!ATTLIST restore
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT delSpan (#PCDATA | %Elemente;)*>
<!-- Contains: marks the beginning of a longer sequence of text deleted, marked as deleted, or otherwise signaled as superfluous or spurious by an author, scribe, annotator, or corrector. -->
<!ATTLIST delSpan
type CDATA #IMPLIED
resp CDATA #IMPLIED
cert CDATA #IMPLIED
hand CDATA #IMPLIED
status CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT addSpan (#PCDATA | %Elemente;)*>
<!-- Contains: marks the beginning of a longer sequence of text added by an author, scribe, annotator or corrector (see also add) in the transcription of a primary source. -->
<!ATTLIST addSpan
resp CDATA #IMPLIED
place CDATA #IMPLIED
cert CDATA #IMPLIED
hand CDATA #IMPLIED
to CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT gap (#PCDATA | %Elemente;)*>
<!-- Contains: indicates a point where material has been omitted in a transcription, whether for editorial reasons described in the TEI header, as part of sampling practice, or because the material is illegible or inaudible. -->
<!ATTLIST gap
resp CDATA #IMPLIED
reason CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT add (#PCDATA | %Elemente;)*>
<!-- Contains: contains letters, words, or phrases inserted in the text by an author, scribe, annotator, or corrector in a transcription of a primary source. -->
<!ATTLIST add
resp CDATA #IMPLIED
place CDATA #IMPLIED
cert CDATA #IMPLIED
hand CDATA #IMPLIED
to CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT sic (#PCDATA | %Elemente;)*>
<!-- Contains: contains text reproduced although apparently incorrect or inaccurate. -->
<!ATTLIST sic
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT rdg (#PCDATA | %Elemente;)*>
<!-- Contains: contains a single reading within a textual variation -->
<!ATTLIST rdg
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT supplied (#PCDATA | %Elemente;)*>
<!-- Contains: signifies text supplied by the transcriber or editor in place of text which cannot be read, either because of physical damage or loss in the original or because it is illegible for any reason. -->
<!ATTLIST supplied
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT lem (#PCDATA | %Elemente;)*>
<!-- Contains: contains the lemma, or base text, of a textual variation. -->
<!ATTLIST lem
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT rdgGrp (#PCDATA | %Elemente;)*>
<!-- Contains: within a textual variation, groups two or more readings perceived to have a genetic relationship or other affinity. -->
<!ATTLIST rdgGrp
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT witDetail (#PCDATA | %Elemente;)*>
<!-- Contains: gives further information about a particular witness, or witnesses, to a particular reading. -->
<!ATTLIST witDetail
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT wit (#PCDATA | %Elemente;)*>
<!-- Contains: contains a list of one or more sigla of witnesses attesting a given reading, in a textual variation. -->
<!ATTLIST wit
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT witList (#PCDATA | %Elemente;)*>
<!-- Contains: contains a list of all the witnesses referred to in wit elements or wit attributes within the critical apparatus. -->
<!ATTLIST witList
id CDATA #IMPLIED
lang CDATA #IMPLIED
>
<!ELEMENT witness (#PCDATA | %Elemente;)*>
<!-- Contains: contains either a description of a single textual witness referred to within the critical apparatus, or a list of witnesses which is to be referred to by a single sigil. -->
<!ATTLIST witness
type CDATA #IMPLIED
id CDATA #IMPLIED
lang CDATA #IMPLIED
sigil CDATA #IMPLIED
>