-
Notifications
You must be signed in to change notification settings - Fork 0
/
sro-transcription.html
2007 lines (2005 loc) · 831 KB
/
sro-transcription.html
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
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><!--THIS FILE IS GENERATED FROM AN XML MASTER. DO NOT EDIT (5)--><title>SRO Transcription Schema</title><meta name="author" content="" /><meta name="generator" content="Text Encoding Initiative Consortium XSLT stylesheets" /><meta name="DC.Title" content="SRO Transcription Schema" /><meta name="DC.Type" content="Text" /><meta name="DC.Format" content="text/html" /><link href="http://www.tei-c.org/release/xml/tei/stylesheet/tei.css" rel="stylesheet" type="text/css" /><link rel="stylesheet" media="print" type="text/css" href="http://www.tei-c.org/release/xml/tei/stylesheet/tei-print.css" /></head><body class="simple" id="TOP"><div class="stdheader autogenerated"><h2 class="institution">(unknown project)</h2><h1 lang="en" class="maintitle">SRO Transcription Schema</h1></div><!--TEI front--><h2>Table of contents</h2><ul class="toc toc_body"><li class="toc"><span class="headingNumber">1. </span><a class="toc toc_0" href="#index.xml-body.1_div.1">Encoding Guidelines for SRO Transcription schema</a></li><li class="toc"><span class="headingNumber">2. </span><a class="toc toc_0" href="#index.xml-body.1_div.2">Formal Schema Declarations</a><ul class="toc"><li class="toc"><span class="headingNumber">2.1. </span><a class="toc toc_1" href="#index.xml-body.1_div.2_div.1">Elements</a><ul class="toc"><li class="toc"><span class="headingNumber">2.1.1. </span><a class="toc toc_2" href="#TEI.TEI" title="<TEI>"><TEI></a></li><li class="toc"><span class="headingNumber">2.1.2. </span><a class="toc toc_2" href="#TEI.ab" title="<ab>"><ab></a></li><li class="toc"><span class="headingNumber">2.1.3. </span><a class="toc toc_2" href="#TEI.abbr" title="<abbr>"><abbr></a></li><li class="toc"><span class="headingNumber">2.1.4. </span><a class="toc toc_2" href="#TEI.add" title="<add>"><add></a></li><li class="toc"><span class="headingNumber">2.1.5. </span><a class="toc toc_2" href="#TEI.am" title="<am>"><am></a></li><li class="toc"><span class="headingNumber">2.1.6. </span><a class="toc toc_2" href="#TEI.anchor" title="<anchor>"><anchor></a></li><li class="toc"><span class="headingNumber">2.1.7. </span><a class="toc toc_2" href="#TEI.availability" title="<availability>"><availability></a></li><li class="toc"><span class="headingNumber">2.1.8. </span><a class="toc toc_2" href="#TEI.body" title="<body>"><body></a></li><li class="toc"><span class="headingNumber">2.1.9. </span><a class="toc toc_2" href="#TEI.change" title="<change>"><change></a></li><li class="toc"><span class="headingNumber">2.1.10. </span><a class="toc toc_2" href="#TEI.choice" title="<choice>"><choice></a></li><li class="toc"><span class="headingNumber">2.1.11. </span><a class="toc toc_2" href="#TEI.corr" title="<corr>"><corr></a></li><li class="toc"><span class="headingNumber">2.1.12. </span><a class="toc toc_2" href="#TEI.date" title="<date>"><date></a></li><li class="toc"><span class="headingNumber">2.1.13. </span><a class="toc toc_2" href="#TEI.desc" title="<desc>"><desc></a></li><li class="toc"><span class="headingNumber">2.1.14. </span><a class="toc toc_2" href="#TEI.distributor" title="<distributor>"><distributor></a></li><li class="toc"><span class="headingNumber">2.1.15. </span><a class="toc toc_2" href="#TEI.div" title="<div>"><div></a></li><li class="toc"><span class="headingNumber">2.1.16. </span><a class="toc toc_2" href="#TEI.encodingDesc" title="<encodingDesc>"><encodingDesc></a></li><li class="toc"><span class="headingNumber">2.1.17. </span><a class="toc toc_2" href="#TEI.ex" title="<ex>"><ex></a></li><li class="toc"><span class="headingNumber">2.1.18. </span><a class="toc toc_2" href="#TEI.expan" title="<expan>"><expan></a></li><li class="toc"><span class="headingNumber">2.1.19. </span><a class="toc toc_2" href="#TEI.fileDesc" title="<fileDesc>"><fileDesc></a></li><li class="toc"><span class="headingNumber">2.1.20. </span><a class="toc toc_2" href="#TEI.foreign" title="<foreign>"><foreign></a></li><li class="toc"><span class="headingNumber">2.1.21. </span><a class="toc toc_2" href="#TEI.forename" title="<forename>"><forename></a></li><li class="toc"><span class="headingNumber">2.1.22. </span><a class="toc toc_2" href="#TEI.funder" title="<funder>"><funder></a></li><li class="toc"><span class="headingNumber">2.1.23. </span><a class="toc toc_2" href="#TEI.fw" title="<fw>"><fw></a></li><li class="toc"><span class="headingNumber">2.1.24. </span><a class="toc toc_2" href="#TEI.gap" title="<gap>"><gap></a></li><li class="toc"><span class="headingNumber">2.1.25. </span><a class="toc toc_2" href="#TEI.head" title="<head>"><head></a></li><li class="toc"><span class="headingNumber">2.1.26. </span><a class="toc toc_2" href="#TEI.hi" title="<hi>"><hi></a></li><li class="toc"><span class="headingNumber">2.1.27. </span><a class="toc toc_2" href="#TEI.idno" title="<idno>"><idno></a></li><li class="toc"><span class="headingNumber">2.1.28. </span><a class="toc toc_2" href="#TEI.item" title="<item>"><item></a></li><li class="toc"><span class="headingNumber">2.1.29. </span><a class="toc toc_2" href="#TEI.lb" title="<lb>"><lb></a></li><li class="toc"><span class="headingNumber">2.1.30. </span><a class="toc toc_2" href="#TEI.licence" title="<licence>"><licence></a></li><li class="toc"><span class="headingNumber">2.1.31. </span><a class="toc toc_2" href="#TEI.list" title="<list>"><list></a></li><li class="toc"><span class="headingNumber">2.1.32. </span><a class="toc toc_2" href="#TEI.note" title="<note>"><note></a></li><li class="toc"><span class="headingNumber">2.1.33. </span><a class="toc toc_2" href="#TEI.num" title="<num>"><num></a></li><li class="toc"><span class="headingNumber">2.1.34. </span><a class="toc toc_2" href="#TEI.orgName" title="<orgName>"><orgName></a></li><li class="toc"><span class="headingNumber">2.1.35. </span><a class="toc toc_2" href="#TEI.orig" title="<orig>"><orig></a></li><li class="toc"><span class="headingNumber">2.1.36. </span><a class="toc toc_2" href="#TEI.p" title="<p>"><p></a></li><li class="toc"><span class="headingNumber">2.1.37. </span><a class="toc toc_2" href="#TEI.pb" title="<pb>"><pb></a></li><li class="toc"><span class="headingNumber">2.1.38. </span><a class="toc toc_2" href="#TEI.persName" title="<persName>"><persName></a></li><li class="toc"><span class="headingNumber">2.1.39. </span><a class="toc toc_2" href="#TEI.placeName" title="<placeName>"><placeName></a></li><li class="toc"><span class="headingNumber">2.1.40. </span><a class="toc toc_2" href="#TEI.principal" title="<principal>"><principal></a></li><li class="toc"><span class="headingNumber">2.1.41. </span><a class="toc toc_2" href="#TEI.projectDesc" title="<projectDesc>"><projectDesc></a></li><li class="toc"><span class="headingNumber">2.1.42. </span><a class="toc toc_2" href="#TEI.publicationStmt" title="<publicationStmt>"><publicationStmt></a></li><li class="toc"><span class="headingNumber">2.1.43. </span><a class="toc toc_2" href="#TEI.reg" title="<reg>"><reg></a></li><li class="toc"><span class="headingNumber">2.1.44. </span><a class="toc toc_2" href="#TEI.resp" title="<resp>"><resp></a></li><li class="toc"><span class="headingNumber">2.1.45. </span><a class="toc toc_2" href="#TEI.respStmt" title="<respStmt>"><respStmt></a></li><li class="toc"><span class="headingNumber">2.1.46. </span><a class="toc toc_2" href="#TEI.revisionDesc" title="<revisionDesc>"><revisionDesc></a></li><li class="toc"><span class="headingNumber">2.1.47. </span><a class="toc toc_2" href="#TEI.seg" title="<seg>"><seg></a></li><li class="toc"><span class="headingNumber">2.1.48. </span><a class="toc toc_2" href="#TEI.sic" title="<sic>"><sic></a></li><li class="toc"><span class="headingNumber">2.1.49. </span><a class="toc toc_2" href="#TEI.sourceDesc" title="<sourceDesc>"><sourceDesc></a></li><li class="toc"><span class="headingNumber">2.1.50. </span><a class="toc toc_2" href="#TEI.space" title="<space>"><space></a></li><li class="toc"><span class="headingNumber">2.1.51. </span><a class="toc toc_2" href="#TEI.supplied" title="<supplied>"><supplied></a></li><li class="toc"><span class="headingNumber">2.1.52. </span><a class="toc toc_2" href="#TEI.surname" title="<surname>"><surname></a></li><li class="toc"><span class="headingNumber">2.1.53. </span><a class="toc toc_2" href="#TEI.teiHeader" title="<teiHeader>"><teiHeader></a></li><li class="toc"><span class="headingNumber">2.1.54. </span><a class="toc toc_2" href="#TEI.text" title="<text>"><text></a></li><li class="toc"><span class="headingNumber">2.1.55. </span><a class="toc toc_2" href="#TEI.title" title="<title>"><title></a></li><li class="toc"><span class="headingNumber">2.1.56. </span><a class="toc toc_2" href="#TEI.titleStmt" title="<titleStmt>"><titleStmt></a></li><li class="toc"><span class="headingNumber">2.1.57. </span><a class="toc toc_2" href="#TEI.unclear" title="<unclear>"><unclear></a></li></ul></li><li class="toc"><span class="headingNumber">2.2. </span><a class="toc toc_1" href="#index.xml-body.1_div.2_div.2">Model classes</a><ul class="toc"><li class="toc"><span class="headingNumber">2.2.1. </span><a class="toc toc_2" href="#TEI.model.availabilityPart" title="model.availabilityPart">model.availabilityPart</a></li><li class="toc"><span class="headingNumber">2.2.2. </span><a class="toc toc_2" href="#TEI.model.choicePart" title="model.choicePart">model.choicePart</a></li><li class="toc"><span class="headingNumber">2.2.3. </span><a class="toc toc_2" href="#TEI.model.common" title="model.common">model.common</a></li><li class="toc"><span class="headingNumber">2.2.4. </span><a class="toc toc_2" href="#TEI.model.dateLike" title="model.dateLike">model.dateLike</a></li><li class="toc"><span class="headingNumber">2.2.5. </span><a class="toc toc_2" href="#TEI.model.descLike" title="model.descLike">model.descLike</a></li><li class="toc"><span class="headingNumber">2.2.6. </span><a class="toc toc_2" href="#TEI.model.divBottom" title="model.divBottom">model.divBottom</a></li><li class="toc"><span class="headingNumber">2.2.7. </span><a class="toc toc_2" href="#TEI.model.divLike" title="model.divLike">model.divLike</a></li><li class="toc"><span class="headingNumber">2.2.8. </span><a class="toc toc_2" href="#TEI.model.divPart" title="model.divPart">model.divPart</a></li><li class="toc"><span class="headingNumber">2.2.9. </span><a class="toc toc_2" href="#TEI.model.divTop" title="model.divTop">model.divTop</a></li><li class="toc"><span class="headingNumber">2.2.10. </span><a class="toc toc_2" href="#TEI.model.divTopPart" title="model.divTopPart">model.divTopPart</a></li><li class="toc"><span class="headingNumber">2.2.11. </span><a class="toc toc_2" href="#TEI.model.emphLike" title="model.emphLike">model.emphLike</a></li><li class="toc"><span class="headingNumber">2.2.12. </span><a class="toc toc_2" href="#TEI.model.encodingDescPart" title="model.encodingDescPart">model.encodingDescPart</a></li><li class="toc"><span class="headingNumber">2.2.13. </span><a class="toc toc_2" href="#TEI.model.global" title="model.global">model.global</a></li><li class="toc"><span class="headingNumber">2.2.14. </span><a class="toc toc_2" href="#TEI.model.global.edit" title="model.global.edit">model.global.edit</a></li><li class="toc"><span class="headingNumber">2.2.15. </span><a class="toc toc_2" href="#TEI.model.headLike" title="model.headLike">model.headLike</a></li><li class="toc"><span class="headingNumber">2.2.16. </span><a class="toc toc_2" href="#TEI.model.hiLike" title="model.hiLike">model.hiLike</a></li><li class="toc"><span class="headingNumber">2.2.17. </span><a class="toc toc_2" href="#TEI.model.highlighted" title="model.highlighted">model.highlighted</a></li><li class="toc"><span class="headingNumber">2.2.18. </span><a class="toc toc_2" href="#TEI.model.inter" title="model.inter">model.inter</a></li><li class="toc"><span class="headingNumber">2.2.19. </span><a class="toc toc_2" href="#TEI.model.labelLike" title="model.labelLike">model.labelLike</a></li><li class="toc"><span class="headingNumber">2.2.20. </span><a class="toc toc_2" href="#TEI.model.limitedPhrase" title="model.limitedPhrase">model.limitedPhrase</a></li><li class="toc"><span class="headingNumber">2.2.21. </span><a class="toc toc_2" href="#TEI.model.listLike" title="model.listLike">model.listLike</a></li><li class="toc"><span class="headingNumber">2.2.22. </span><a class="toc toc_2" href="#TEI.model.measureLike" title="model.measureLike">model.measureLike</a></li><li class="toc"><span class="headingNumber">2.2.23. </span><a class="toc toc_2" href="#TEI.model.milestoneLike" title="model.milestoneLike">model.milestoneLike</a></li><li class="toc"><span class="headingNumber">2.2.24. </span><a class="toc toc_2" href="#TEI.model.nameLike" title="model.nameLike">model.nameLike</a></li><li class="toc"><span class="headingNumber">2.2.25. </span><a class="toc toc_2" href="#TEI.model.nameLike.agent" title="model.nameLike.agent">model.nameLike.agent</a></li><li class="toc"><span class="headingNumber">2.2.26. </span><a class="toc toc_2" href="#TEI.model.noteLike" title="model.noteLike">model.noteLike</a></li><li class="toc"><span class="headingNumber">2.2.27. </span><a class="toc toc_2" href="#TEI.model.pLike" title="model.pLike">model.pLike</a></li><li class="toc"><span class="headingNumber">2.2.28. </span><a class="toc toc_2" href="#TEI.model.pPart.data" title="model.pPart.data">model.pPart.data</a></li><li class="toc"><span class="headingNumber">2.2.29. </span><a class="toc toc_2" href="#TEI.model.pPart.edit" title="model.pPart.edit">model.pPart.edit</a></li><li class="toc"><span class="headingNumber">2.2.30. </span><a class="toc toc_2" href="#TEI.model.pPart.editorial" title="model.pPart.editorial">model.pPart.editorial</a></li><li class="toc"><span class="headingNumber">2.2.31. </span><a class="toc toc_2" href="#TEI.model.pPart.transcriptional" title="model.pPart.transcriptional">model.pPart.transcriptional</a></li><li class="toc"><span class="headingNumber">2.2.32. </span><a class="toc toc_2" href="#TEI.model.persNamePart" title="model.persNamePart">model.persNamePart</a></li><li class="toc"><span class="headingNumber">2.2.33. </span><a class="toc toc_2" href="#TEI.model.phrase" title="model.phrase">model.phrase</a></li><li class="toc"><span class="headingNumber">2.2.34. </span><a class="toc toc_2" href="#TEI.model.placeNamePart" title="model.placeNamePart">model.placeNamePart</a></li><li class="toc"><span class="headingNumber">2.2.35. </span><a class="toc toc_2" href="#TEI.model.placeStateLike" title="model.placeStateLike">model.placeStateLike</a></li><li class="toc"><span class="headingNumber">2.2.36. </span><a class="toc toc_2" href="#TEI.model.publicationStmtPart.agency" title="model.publicationStmtPart.agency">model.publicationStmtPart.agency</a></li><li class="toc"><span class="headingNumber">2.2.37. </span><a class="toc toc_2" href="#TEI.model.publicationStmtPart.detail" title="model.publicationStmtPart.detail">model.publicationStmtPart.detail</a></li><li class="toc"><span class="headingNumber">2.2.38. </span><a class="toc toc_2" href="#TEI.model.qLike" title="model.qLike">model.qLike</a></li><li class="toc"><span class="headingNumber">2.2.39. </span><a class="toc toc_2" href="#TEI.model.resourceLike" title="model.resourceLike">model.resourceLike</a></li><li class="toc"><span class="headingNumber">2.2.40. </span><a class="toc toc_2" href="#TEI.model.respLike" title="model.respLike">model.respLike</a></li><li class="toc"><span class="headingNumber">2.2.41. </span><a class="toc toc_2" href="#TEI.model.segLike" title="model.segLike">model.segLike</a></li><li class="toc"><span class="headingNumber">2.2.42. </span><a class="toc toc_2" href="#TEI.model.teiHeaderPart" title="model.teiHeaderPart">model.teiHeaderPart</a></li></ul></li><li class="toc"><span class="headingNumber">2.3. </span><a class="toc toc_1" href="#index.xml-body.1_div.2_div.3">Attribute classes</a><ul class="toc"><li class="toc"><span class="headingNumber">2.3.1. </span><a class="toc toc_2" href="#TEI.att.ascribed" title="att.ascribed">att.ascribed</a></li><li class="toc"><span class="headingNumber">2.3.2. </span><a class="toc toc_2" href="#TEI.att.breaking" title="att.breaking">att.breaking</a></li><li class="toc"><span class="headingNumber">2.3.3. </span><a class="toc toc_2" href="#TEI.att.canonical" title="att.canonical">att.canonical</a></li><li class="toc"><span class="headingNumber">2.3.4. </span><a class="toc toc_2" href="#TEI.att.datable" title="att.datable">att.datable</a></li><li class="toc"><span class="headingNumber">2.3.5. </span><a class="toc toc_2" href="#TEI.att.datable.w3c" title="att.datable.w3c">att.datable.w3c</a></li><li class="toc"><span class="headingNumber">2.3.6. </span><a class="toc toc_2" href="#TEI.att.dimensions" title="att.dimensions">att.dimensions</a></li><li class="toc"><span class="headingNumber">2.3.7. </span><a class="toc toc_2" href="#TEI.att.docStatus" title="att.docStatus">att.docStatus</a></li><li class="toc"><span class="headingNumber">2.3.8. </span><a class="toc toc_2" href="#TEI.att.edition" title="att.edition">att.edition</a></li><li class="toc"><span class="headingNumber">2.3.9. </span><a class="toc toc_2" href="#TEI.att.global" title="att.global">att.global</a></li><li class="toc"><span class="headingNumber">2.3.10. </span><a class="toc toc_2" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a></li><li class="toc"><span class="headingNumber">2.3.11. </span><a class="toc toc_2" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a></li><li class="toc"><span class="headingNumber">2.3.12. </span><a class="toc toc_2" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a></li><li class="toc"><span class="headingNumber">2.3.13. </span><a class="toc toc_2" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a></li><li class="toc"><span class="headingNumber">2.3.14. </span><a class="toc toc_2" href="#TEI.att.naming" title="att.naming">att.naming</a></li><li class="toc"><span class="headingNumber">2.3.15. </span><a class="toc toc_2" href="#TEI.att.personal" title="att.personal">att.personal</a></li><li class="toc"><span class="headingNumber">2.3.16. </span><a class="toc toc_2" href="#TEI.att.placement" title="att.placement">att.placement</a></li><li class="toc"><span class="headingNumber">2.3.17. </span><a class="toc toc_2" href="#TEI.att.pointing" title="att.pointing">att.pointing</a></li><li class="toc"><span class="headingNumber">2.3.18. </span><a class="toc toc_2" href="#TEI.att.ranging" title="att.ranging">att.ranging</a></li><li class="toc"><span class="headingNumber">2.3.19. </span><a class="toc toc_2" href="#TEI.att.transcriptional" title="att.transcriptional">att.transcriptional</a></li><li class="toc"><span class="headingNumber">2.3.20. </span><a class="toc toc_2" href="#TEI.att.translatable" title="att.translatable">att.translatable</a></li><li class="toc"><span class="headingNumber">2.3.21. </span><a class="toc toc_2" href="#TEI.att.typed" title="att.typed">att.typed</a></li></ul></li><li class="toc"><span class="headingNumber">2.4. </span><a class="toc toc_1" href="#index.xml-body.1_div.2_div.4">Macros</a><ul class="toc"><li class="toc"><span class="headingNumber">2.4.1. </span><a class="toc toc_2" href="#TEI.macro.limitedContent" title="macro.limitedContent">macro.limitedContent</a></li><li class="toc"><span class="headingNumber">2.4.2. </span><a class="toc toc_2" href="#TEI.macro.paraContent" title="macro.paraContent">macro.paraContent</a></li><li class="toc"><span class="headingNumber">2.4.3. </span><a class="toc toc_2" href="#TEI.macro.phraseSeq" title="macro.phraseSeq">macro.phraseSeq</a></li><li class="toc"><span class="headingNumber">2.4.4. </span><a class="toc toc_2" href="#TEI.macro.phraseSeq.limited" title="macro.phraseSeq.limited">macro.phraseSeq.limited</a></li><li class="toc"><span class="headingNumber">2.4.5. </span><a class="toc toc_2" href="#TEI.macro.specialPara" title="macro.specialPara">macro.specialPara</a></li><li class="toc"><span class="headingNumber">2.4.6. </span><a class="toc toc_2" href="#TEI.macro.xtext" title="macro.xtext">macro.xtext</a></li></ul></li><li class="toc"><span class="headingNumber">2.5. </span><a class="toc toc_1" href="#index.xml-body.1_div.2_div.5">Datatypes</a><ul class="toc"><li class="toc"><span class="headingNumber">2.5.1. </span><a class="toc toc_2" href="#TEI.teidata.certainty" title="teidata.certainty">teidata.certainty</a></li><li class="toc"><span class="headingNumber">2.5.2. </span><a class="toc toc_2" href="#TEI.teidata.count" title="teidata.count">teidata.count</a></li><li class="toc"><span class="headingNumber">2.5.3. </span><a class="toc toc_2" href="#TEI.teidata.duration.iso" title="teidata.duration.iso">teidata.duration.iso</a></li><li class="toc"><span class="headingNumber">2.5.4. </span><a class="toc toc_2" href="#TEI.teidata.duration.w3c" title="teidata.duration.w3c">teidata.duration.w3c</a></li><li class="toc"><span class="headingNumber">2.5.5. </span><a class="toc toc_2" href="#TEI.teidata.enumerated" title="teidata.enumerated">teidata.enumerated</a></li><li class="toc"><span class="headingNumber">2.5.6. </span><a class="toc toc_2" href="#TEI.teidata.language" title="teidata.language">teidata.language</a></li><li class="toc"><span class="headingNumber">2.5.7. </span><a class="toc toc_2" href="#TEI.teidata.name" title="teidata.name">teidata.name</a></li><li class="toc"><span class="headingNumber">2.5.8. </span><a class="toc toc_2" href="#TEI.teidata.namespace" title="teidata.namespace">teidata.namespace</a></li><li class="toc"><span class="headingNumber">2.5.9. </span><a class="toc toc_2" href="#TEI.teidata.numeric" title="teidata.numeric">teidata.numeric</a></li><li class="toc"><span class="headingNumber">2.5.10. </span><a class="toc toc_2" href="#TEI.teidata.outputMeasurement" title="teidata.outputMeasurement">teidata.outputMeasurement</a></li><li class="toc"><span class="headingNumber">2.5.11. </span><a class="toc toc_2" href="#TEI.teidata.pattern" title="teidata.pattern">teidata.pattern</a></li><li class="toc"><span class="headingNumber">2.5.12. </span><a class="toc toc_2" href="#TEI.teidata.point" title="teidata.point">teidata.point</a></li><li class="toc"><span class="headingNumber">2.5.13. </span><a class="toc toc_2" href="#TEI.teidata.pointer" title="teidata.pointer">teidata.pointer</a></li><li class="toc"><span class="headingNumber">2.5.14. </span><a class="toc toc_2" href="#TEI.teidata.probCert" title="teidata.probCert">teidata.probCert</a></li><li class="toc"><span class="headingNumber">2.5.15. </span><a class="toc toc_2" href="#TEI.teidata.probability" title="teidata.probability">teidata.probability</a></li><li class="toc"><span class="headingNumber">2.5.16. </span><a class="toc toc_2" href="#TEI.teidata.replacement" title="teidata.replacement">teidata.replacement</a></li><li class="toc"><span class="headingNumber">2.5.17. </span><a class="toc toc_2" href="#TEI.teidata.temporal.w3c" title="teidata.temporal.w3c">teidata.temporal.w3c</a></li><li class="toc"><span class="headingNumber">2.5.18. </span><a class="toc toc_2" href="#TEI.teidata.text" title="teidata.text">teidata.text</a></li><li class="toc"><span class="headingNumber">2.5.19. </span><a class="toc toc_2" href="#TEI.teidata.versionNumber" title="teidata.versionNumber">teidata.versionNumber</a></li><li class="toc"><span class="headingNumber">2.5.20. </span><a class="toc toc_2" href="#TEI.teidata.word" title="teidata.word">teidata.word</a></li></ul></li></ul></li></ul><!--TEI body--><div class="teidiv0" id="index.xml-body.1_div.1"><h2><span class="headingNumber">1. </span><span class="head">Encoding Guidelines for SRO Transcription schema</span></h2><p>Encoding guidelines could be placed here</p></div><div class="teidiv0" id="index.xml-body.1_div.2"><h2><span class="headingNumber">2. </span><span class="head">Formal Schema Declarations</span></h2><div class="teidiv1" id="index.xml-body.1_div.2_div.1"><h3><span class="headingNumber">2.1. </span><span class="head">Elements</span></h3><div class="refdoc" id="TEI.TEI"><h4><span class="headingNumber">2.1.1. </span><span class="head"><TEI></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><TEI> </span>(<span lang="en">TEI document</span>) <span lang="en">contains a single TEI-conformant document, combining a single TEI header with one or more members of the <span class="ident-class">model.resourceLike</span> class. Multiple TEI elements may be combined to form a <span class="gi"><teiCorpus></span> element.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DS.html#DS">4. Default Text Structure</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html#CCDEF">15.1. Varieties of Composite Text</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">textstructure</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2">Attributes<a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (@xml:id, @n, @xml:lang) <a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (@corresp)</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent">—</div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.teiHeader" title="<teiHeader>">teiHeader</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.text" title="<text>">text</a></span></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>This element is required. It is customary to specify the TEI namespace <code>http://www.tei-c.org/ns/1.0</code> on it, using the <span class="att">xmlns</span> attribute.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e126" class="pre egXML_valid"><span class="element"><TEI <span class="attribute">version</span>="<span class="attributevalue">5.0</span>" xmlns="http://www.tei-c.org/ns/1.0"></span>
<span class="element"><teiHeader></span>
<span class="element"><fileDesc></span>
<span class="element"><titleStmt></span>
<span class="element"><title></span>The shortest TEI Document Imaginable<span class="element"></title></span>
<span class="element"></titleStmt></span>
<span class="element"><publicationStmt></span>
<span class="element"><p></span>First published as part of TEI P2, this is the P5
version using a name space.<span class="element"></p></span>
<span class="element"></publicationStmt></span>
<span class="element"><sourceDesc></span>
<span class="element"><p></span>No source: this is an original work.<span class="element"></p></span>
<span class="element"></sourceDesc></span>
<span class="element"></fileDesc></span>
<span class="element"></teiHeader></span>
<span class="element"><text></span>
<span class="element"><body></span>
<span class="element"><p></span>This is about the shortest TEI document imaginable.<span class="element"></p></span>
<span class="element"></body></span>
<span class="element"></text></span>
<span class="element"></TEI></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e148" class="pre egXML_valid"><span class="element"><TEI <span class="attribute">version</span>="<span class="attributevalue">5.0</span>" xmlns="http://www.tei-c.org/ns/1.0"></span>
<span class="element"><teiHeader></span>
<span class="element"><fileDesc></span>
<span class="element"><titleStmt></span>
<span class="element"><title></span>A TEI Document containing four page images <span class="element"></title></span>
<span class="element"></titleStmt></span>
<span class="element"><publicationStmt></span>
<span class="element"><p></span>Unpublished demonstration file.<span class="element"></p></span>
<span class="element"></publicationStmt></span>
<span class="element"><sourceDesc></span>
<span class="element"><p></span>No source: this is an original work.<span class="element"></p></span>
<span class="element"></sourceDesc></span>
<span class="element"></fileDesc></span>
<span class="element"></teiHeader></span>
<span class="element"><facsimile></span>
<span class="element"><graphic <span class="attribute">url</span>="<span class="attributevalue">page1.png</span>"/></span>
<span class="element"><graphic <span class="attribute">url</span>="<span class="attributevalue">page2.png</span>"/></span>
<span class="element"><graphic <span class="attribute">url</span>="<span class="attributevalue">page3.png</span>"/></span>
<span class="element"><graphic <span class="attribute">url</span>="<span class="attributevalue">page4.png</span>"/></span>
<span class="element"></facsimile></span>
<span class="element"></TEI></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:ns prefix="tei"
uri="http://www.tei-c.org/ns/1.0"/>
<s:ns prefix="xs"
uri="http://www.w3.org/2001/XMLSchema"/></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:ns prefix="rng"
uri="http://relaxng.org/ns/structure/1.0"/></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<sequence minOccurs="1" maxOccurs="1">
<elementRef key="teiHeader"/>
<classRef key="model.resourceLike"
minOccurs="1" maxOccurs="unbounded"/>
</sequence>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element TEI
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attribute.xmlid</a>,
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attribute.n</a>,
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attribute.xmllang</a>,
<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking.attribute.corresp</a>,
( <a class="link_ref" href="#TEI.teiHeader" title="<teiHeader>">teiHeader</a>, <a class="link_ref" href="#TEI.model.resourceLike" title="model.resourceLike">model.resourceLike</a>+ )
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.ab"><h4><span class="headingNumber">2.1.2. </span><span class="head"><ab></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><ab> </span>(<span lang="en">anonymous block</span>) <span lang="en">contains any arbitrary component-level unit of text, acting as an anonymous container for phrase or inter level elements analogous to, but without the semantic baggage of, a paragraph.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/SA.html#SASE">16.3. Blocks, Segments, and Anchors</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">linking</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="attribute">@type</span>, <span class="attribute">@subtype</span>) </td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.pLike" title="model.pLike">model.pLike</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.availability" title="<availability>">availability</a> <a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.encodingDesc" title="<encodingDesc>">encodingDesc</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.projectDesc" title="<projectDesc>">projectDesc</a> <a class="link_odd_elementSpec" href="#TEI.publicationStmt" title="<publicationStmt>">publicationStmt</a> <a class="link_odd_elementSpec" href="#TEI.sourceDesc" title="<sourceDesc>">sourceDesc</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.body" title="<body>">body</a> <a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>The <a class="link_ref" href="#TEI.ab" title="<ab>"><ab></a> element may be used at the encoder's discretion to mark any component-level elements in a text for which no other more specific appropriate markup is defined.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e539" class="pre egXML_valid"><span class="element"><div <span class="attribute">type</span>="<span class="attributevalue">book</span>" <span class="attribute">n</span>="<span class="attributevalue">Genesis</span>"></span>
<span class="element"><div <span class="attribute">type</span>="<span class="attributevalue">chapter</span>" <span class="attribute">n</span>="<span class="attributevalue">1</span>"></span>
<span class="element"><ab></span>In the beginning God created the heaven and the earth.<span class="element"></ab></span>
<span class="element"><ab></span>And the earth was without form, and void; and
darkness was upon the face of the deep. And the
spirit of God moved upon the face of the waters.<span class="element"></ab></span>
<span class="element"><ab></span>And God said, Let there be light: and there was light.<span class="element"></ab></span>
<span class="comment"><!-- ...--></span>
<span class="element"></div></span>
<span class="element"></div></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="not(@type='metadata') and ancestor::tei:div[@type='entry']">If 'ab' appears inside an entry div it must have a type attribute of 'metadata'.</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="@type='metadata' and not(ancestor::tei:div[@type='entry'])">If 'ab' has a metadata type attribute value it must appear inside an entry div.</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="@type='metadata' and ancestor::tei:div[@type='entry'] and not(tei:date)">Metadata block must contain a date.</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="@type='metadata' and ancestor::tei:div[@type='entry'] and not(tei:idno/@type='ArberRef')">Metadata block must contain a reference to Arber in an 'idno' of type 'ArberRef'.</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="@type='metadata' and ancestor::tei:div[@type='entry'] and not(tei:idno/@type='RegisterRef')">Metadata block must contain a reference to the Register in an 'idno' of type 'RegisterRef'.</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="@type='metadata' and ancestor::tei:div[@type='entry'] and not(tei:idno/@type='RegisterID')">Metadata block must contain a reference to the Register ID in an 'idno' of type 'RegisterID'.</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="(ancestor::tei:p or ancestor::tei:ab) and not(parent::tei:exemplum
|parent::tei:item |parent::tei:note |parent::tei:q |parent::tei:quote
|parent::tei:remarks |parent::tei:said |parent::tei:sp |parent::tei:stage
|parent::tei:cell |parent::tei:figure)"> Abstract model violation: ab may not contain paragraphs or other ab elements.
</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="ancestor::tei:l or ancestor::tei:lg"> Abstract model violation: Lines may not contain higher-level divisions such as p or ab.
</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.paraContent"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element ab { <a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>, <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attributes</a>, <a class="link_ref" href="#TEI.macro.paraContent" title="macro.paraContent">macro.paraContent</a> }</pre></td></tr></table></div></div><div class="refdoc" id="TEI.abbr"><h4><span class="headingNumber">2.1.3. </span><span class="head"><abbr></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><abbr> </span>(<span lang="en">abbreviation</span>) <span lang="en">contains an abbreviation of any sort.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#CONAAB">3.5.5. Abbreviations and Their Expansions</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="unusedattribute">type</span>, @subtype) <div class="table"><table class="attList"><tr><td class="odd_label">type</td><td class="odd_value"><span lang="en">allows the encoder to classify the abbreviation according to some convenient typology.</span><div class="table"><table class="attDef"><tr><td class="odd_label"><span lang="en" class="label">Derived from</span></td><td class="odd_value"><a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Status</span></td><td class="odd_value"><span lang="en">Optional</span></td></tr><tr><td class="odd_label"><span lang="en" class="label">Datatype</span></td><td class="odd_value"><a class="link_ref" href="#TEI.teidata.enumerated" title="teidata.enumerated">teidata.enumerated</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Sample values include:</span></td><td class="odd_value"><dl class="valList"><dt><span class="odd_label">suspension</span></dt><dd><span lang="en">the abbreviation provides the first letter(s) of the word or phrase, omitting the remainder.</span></dd><dt><span class="odd_label">contraction</span></dt><dd><span lang="en">the abbreviation omits some letter(s) in the middle.</span></dd><dt><span class="odd_label">brevigraph</span></dt><dd><span lang="en">the abbreviation comprises a special symbol or mark.</span></dd><dt><span class="odd_label">superscription</span></dt><dd><span lang="en">the abbreviation includes writing above the line.</span></dd><dt><span class="odd_label">acronym</span></dt><dd><span lang="en">the abbreviation comprises the initial letters of the words of a phrase.</span></dd><dt><span class="odd_label">title</span></dt><dd><span lang="en">the abbreviation is for a title of address (Dr, Ms, Mr, …)</span></dd><dt><span class="odd_label">organization</span></dt><dd><span lang="en">the abbreviation is for the name of an organization.</span></dd><dt><span class="odd_label">geographic</span></dt><dd><span lang="en">the abbreviation is for a geographic name.</span></dd></dl></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>The <span class="att">type</span> attribute is provided for the sake of those who wish to classify abbreviations at their point of occurrence; this may be useful in some circumstances, though usually the same abbreviation will have the same type in all occurrences. As the sample values make clear, abbreviations may be classified by the method used to construct them, the method of writing them, or the referent of the term abbreviated; the typology used is up to the encoder and should be carefully planned to meet the needs of the expected use. For a typology of Middle English abbreviations, see [[undefined PETTY]]</p></td></tr></table></div></td></tr></table></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.choicePart" title="model.choicePart">model.choicePart</a> <a class="link_odd_classSpec" href="#TEI.model.pPart.editorial" title="model.pPart.editorial">model.pPart.editorial</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>The <a class="link_ref" href="#TEI.abbr" title="<abbr>"><abbr></a> tag is not required; if appropriate, the encoder may transcribe abbreviations in the source text silently, without tagging them. If abbreviations are not transcribed directly but <em>expanded</em> silently, then the TEI header should so indicate.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e1140" class="pre egXML_valid"><span class="element"><choice></span>
<span class="element"><expan></span>North Atlantic Treaty Organization<span class="element"></expan></span>
<span class="element"><abbr <span class="attribute">cert</span>="<span class="attributevalue">low</span>"></span>NorATO<span class="element"></abbr></span>
<span class="element"><abbr <span class="attribute">cert</span>="<span class="attributevalue">high</span>"></span>NATO<span class="element"></abbr></span>
<span class="element"><abbr <span class="attribute">cert</span>="<span class="attributevalue">high</span>" <span class="attribute">xml:lang</span>="<span class="attributevalue">fr</span>"></span>OTAN<span class="element"></abbr></span>
<span class="element"></choice></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e1155" class="pre egXML_valid"><span class="element"><choice></span>
<span class="element"><abbr></span>SPQR<span class="element"></abbr></span>
<span class="element"><expan></span>senatus populusque romanorum<span class="element"></expan></span>
<span class="element"></choice></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.phraseSeq"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element abbr
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attribute.subtype</a>,
attribute type { text }?,
<a class="link_ref" href="#TEI.macro.phraseSeq" title="macro.phraseSeq">macro.phraseSeq</a>
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.add"><h4><span class="headingNumber">2.1.4. </span><span class="head"><add></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><add> </span>(<span lang="en">addition</span>) <span lang="en">contains letters, words, or phrases inserted in the source text by an author, scribe, or a previous annotator or corrector.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COEDADD">3.4.3. Additions, Deletions, and Omissions</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.transcriptional" title="att.transcriptional">att.transcriptional</a> (<span class="attribute">@status</span>, <span class="attribute">@cause</span>, <span class="attribute">@seq</span>) <a class="link_ref" href="#TEI.att.placement" title="att.placement">att.placement</a> (<span class="attribute">@place</span>) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="attribute">@type</span>, <span class="attribute">@subtype</span>) </td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.pPart.transcriptional" title="model.pPart.transcriptional">model.pPart.transcriptional</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>In a diplomatic edition attempting to represent an original source, the <a class="link_ref" href="#TEI.add" title="<add>"><add></a> element should not be used for additions to the current TEI electronic edition made by editors or encoders. In these cases, either the <a class="link_ref" href="#TEI.corr" title="<corr>"><corr></a> or <a class="link_ref" href="#TEI.supplied" title="<supplied>"><supplied></a> element are recommended.</p><p>In a TEI edition of a historical text with previous editorial emendations in which such additions or reconstructions are considered part of the source text, the use of <a class="link_ref" href="#TEI.add" title="<add>"><add></a> may be appropriate, dependent on the editorial philosophy of the project.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e1624" class="pre egXML_valid">The story I am
going to relate is true as to its main facts, and as to the
consequences <span class="element"><add <span class="attribute">place</span>="<span class="attributevalue">above</span>"></span>of these facts<span class="element"></add></span> from which
this tale takes its title.</div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.paraContent"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element add
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.transcriptional" title="att.transcriptional">att.transcriptional.attributes</a>,
<a class="link_ref" href="#TEI.att.placement" title="att.placement">att.placement.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attributes</a>,
<a class="link_ref" href="#TEI.macro.paraContent" title="macro.paraContent">macro.paraContent</a>
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.am"><h4><span class="headingNumber">2.1.5. </span><span class="head"><am></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><am> </span>(<span lang="en">abbreviation marker</span>) <span lang="en">contains a sequence of letters or signs present in an abbreviation which are omitted or replaced in the expanded form of the abbreviation.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/PH.html#PHAB">11.3.1.2. Abbreviation and Expansion</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">transcr</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="attribute">@type</span>, <span class="attribute">@subtype</span>) </td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.choicePart" title="model.choicePart">model.choicePart</a> <a class="link_odd_classSpec" href="#TEI.model.pPart.editorial" title="model.pPart.editorial">model.pPart.editorial</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e1961" class="pre egXML_valid"> do you <span class="element"><abbr></span>Mr<span class="element"><am></span>.<span class="element"></am></span>
<span class="element"></abbr></span> Jones?
</div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e1973" class="pre egXML_valid"><span class="element"><choice></span>
<span class="element"><abbr></span>Aug<span class="element"><am></span>g<span class="element"></am></span>
<span class="element"></abbr></span>
<span class="element"><expan></span>Aug<span class="element"><ex></span>ustorum duo<span class="element"></ex></span>
<span class="element"></expan></span>
<span class="element"></choice></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e1988" class="pre egXML_valid"><span class="element"><abbr></span>eu<span class="element"><am></span>
<span class="element"><g <span class="attribute">ref</span>="<span class="attributevalue">#b-er</span>"/></span>
<span class="element"></am></span>y<span class="element"></abbr></span>
<span class="element"><abbr></span>
<span class="element"><am></span>
<span class="element"><g <span class="attribute">ref</span>="<span class="attributevalue">#b-per</span>"/></span>
<span class="element"></am></span>sone
<span class="element"></abbr></span> ...
</div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<alternate minOccurs="0"
maxOccurs="unbounded">
<textNode/>
<classRef key="model.gLike"/>
<classRef key="model.pPart.transcriptional"/>
</alternate>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element am
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attributes</a>,
( text | model.gLike | <a class="link_ref" href="#TEI.model.pPart.transcriptional" title="model.pPart.transcriptional">model.pPart.transcriptional</a> )*
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.anchor"><h4><span class="headingNumber">2.1.6. </span><span class="head"><anchor></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><anchor> </span>(<span lang="en">anchor point</span>) <span lang="en">attaches an identifier to a point within a text, whether or not it corresponds with a textual element.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TS.html#TSSAPA">8.4.2. Synchronization and Overlap</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/SA.html#SACS">16.5. Correspondence and Alignment</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">linking</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="unusedattribute">type</span>, @subtype) <div class="table"><table class="attList"><tr><td class="odd_label">type</td><td class="odd_value"><span lang="en">characterizes the element in some sense, using any convenient classification scheme or typology.</span><div class="table"><table class="attDef"><tr><td class="odd_label"><span lang="en" class="label">Derived from</span></td><td class="odd_value"><a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Status</span></td><td class="odd_value"><span lang="en">Optional</span></td></tr><tr><td class="odd_label"><span lang="en" class="label">Datatype</span></td><td class="odd_value"><a class="link_ref" href="#TEI.teidata.enumerated" title="teidata.enumerated">teidata.enumerated</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Suggested values include:</span></td><td class="odd_value"><dl class="valList"><dt><span class="odd_label">noteStart</span></dt><dd><span>This is the startpoint of a note marked by anchor elements</span></dd><dt><span class="odd_label">noteEnd</span></dt><dd><span>This is the endpoint of a note marked by anchor elements</span></dd></dl></td></tr></table></div></td></tr></table></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.milestoneLike" title="model.milestoneLike">model.milestoneLike</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.body" title="<body>">body</a> <a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a> <a class="link_odd_elementSpec" href="#TEI.text" title="<text>">text</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><span lang="en">Empty element</span></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>On this element, the global <span class="att">xml:id</span> attribute must be supplied to specify an identifier for the point at which this element occurs within a document. The value used may be chosen freely provided that it is unique within the document and is a syntactically valid name. There is no requirement for values containing numbers to be in sequence.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e2361" class="pre egXML_valid"><span class="element"><s></span>The anchor is he<span class="element"><anchor <span class="attribute">xml:id</span>="<span class="attributevalue">A234</span>"/></span>re somewhere.<span class="element"></s></span>
<span class="element"><s></span>Help me find it.<span class="element"><ptr <span class="attribute">target</span>="<span class="attributevalue">#A234</span>"/></span>
<span class="element"></s></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content/>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element anchor
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attribute.subtype</a>,
attribute type { "noteStart" | "noteEnd" }?,
empty
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.availability"><h4><span class="headingNumber">2.1.7. </span><span class="head"><availability></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><availability> </span><span lang="en">supplies information about the availability of a text, for example any restrictions on its use or distribution, its copyright status, any licence applying to it, etc.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD24">2.2.4. Publication, Distribution, Licensing, etc.</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">header</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <div class="table"><table class="attList"><tr><td class="odd_label">status</td><td class="odd_value"><span lang="en">supplies a code identifying the current availability of the text.</span><div class="table"><table class="attDef"><tr><td class="odd_label"><span lang="en" class="label">Status</span></td><td class="odd_value"><span lang="en">Optional</span></td></tr><tr><td class="odd_label"><span lang="en" class="label">Datatype</span></td><td class="odd_value"><a class="link_ref" href="#TEI.teidata.enumerated" title="teidata.enumerated">teidata.enumerated</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Legal values are:</span></td><td class="odd_value"><dl class="valList"><dt><span class="odd_label">free</span></dt><dd><span lang="en">the text is freely available.</span></dd><dt><span class="odd_label">unknown</span></dt><dd><span lang="en">the status of the text is unknown.</span><span lang="en" class="defaultVal deprecated">[Default] <a class="link_ref" href="http://www.tei-c.org/Activities/Council/Working/tcw27.xml"><span>Deprecated</span></a>. The value will no longer be a default after 2017-09-05.</span></dd><dt><span class="odd_label">restricted</span></dt><dd><span lang="en">the text is not freely available.</span></dd></dl></td></tr></table></div></td></tr></table></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.publicationStmtPart.detail" title="model.publicationStmtPart.detail">model.publicationStmtPart.detail</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.publicationStmt" title="<publicationStmt>">publicationStmt</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a></span></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>A consistent format should be adopted</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e2576" class="pre egXML_valid"><span class="element"><availability <span class="attribute">status</span>="<span class="attributevalue">restricted</span>"></span>
<span class="element"><p></span>Available for academic research purposes only.<span class="element"></p></span>
<span class="element"></availability></span>
<span class="element"><availability <span class="attribute">status</span>="<span class="attributevalue">free</span>"></span>
<span class="element"><p></span>In the public domain<span class="element"></p></span>
<span class="element"></availability></span>
<span class="element"><availability <span class="attribute">status</span>="<span class="attributevalue">restricted</span>"></span>
<span class="element"><p></span>Available under licence from the publishers.<span class="element"></p></span>
<span class="element"></availability></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e2591" class="pre egXML_valid"><span class="element"><availability></span>
<span class="element"><licence <span class="attribute">target</span>="<span class="attributevalue">http://opensource.org/licenses/MIT</span>"></span>
<span class="element"><p></span>The MIT License
applies to this document.<span class="element"></p></span>
<span class="element"><p></span>Copyright (C) 2011 by The University of Victoria<span class="element"></p></span>
<span class="element"><p></span>Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:<span class="element"></p></span>
<span class="element"><p></span>The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.<span class="element"></p></span>
<span class="element"><p></span>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.<span class="element"></p></span>
<span class="element"></licence></span>
<span class="element"></availability></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<alternate minOccurs="1"
maxOccurs="unbounded">
<classRef key="model.availabilityPart"/>
<classRef key="model.pLike"/>
</alternate>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element availability
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
attribute status { "free" | "unknown" | "restricted" }?,
( <a class="link_ref" href="#TEI.model.availabilityPart" title="model.availabilityPart">model.availabilityPart</a> | <a class="link_ref" href="#TEI.model.pLike" title="model.pLike">model.pLike</a> )+
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.body"><h4><span class="headingNumber">2.1.8. </span><span class="head"><body></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><body> </span>(<span lang="en">text body</span>) <span lang="en">contains the whole body of a single unitary text, excluding any front or back matter.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DS.html#DS">4. Default Text Structure</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">textstructure</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2">Attributes<a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (@xml:id, @n, @xml:lang) <a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (@rend) <a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (@corresp) <a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (@facs) <a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="unusedattribute">resp</span>, @cert)</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.text" title="<text>">text</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a></span></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e2764" class="pre egXML_valid"><span class="element"><body></span>
<span class="element"><l></span>Nu scylun hergan hefaenricaes uard<span class="element"></l></span>
<span class="element"><l></span>metudæs maecti end his modgidanc<span class="element"></l></span>
<span class="element"><l></span>uerc uuldurfadur sue he uundra gihuaes<span class="element"></l></span>
<span class="element"><l></span>eci dryctin or astelidæ<span class="element"></l></span>
<span class="element"><l></span>he aerist scop aelda barnum<span class="element"></l></span>
<span class="element"><l></span>heben til hrofe haleg scepen.<span class="element"></l></span>
<span class="element"><l></span>tha middungeard moncynnæs uard<span class="element"></l></span>
<span class="element"><l></span>eci dryctin æfter tiadæ<span class="element"></l></span>
<span class="element"><l></span>firum foldu frea allmectig<span class="element"></l></span>
<span class="element"><trailer></span>primo cantauit Cædmon istud carmen.<span class="element"></trailer></span>
<span class="element"></body></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<sequence minOccurs="1" maxOccurs="1">
<classRef key="model.global"
minOccurs="0" maxOccurs="unbounded"/>
<sequence minOccurs="0" maxOccurs="1">
<classRef key="model.divTop"/>
<alternate minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.global"/>
<classRef key="model.divTop"/>
</alternate>
</sequence>
<sequence minOccurs="0" maxOccurs="1">
<classRef key="model.divGenLike"/>
<alternate minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.global"/>
<classRef key="model.divGenLike"/>
</alternate>
</sequence>
<alternate minOccurs="1" maxOccurs="1">
<sequence minOccurs="1"
maxOccurs="unbounded">
<classRef key="model.divLike"/>
<alternate minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.global"/>
<classRef key="model.divGenLike"/>
</alternate>
</sequence>
<sequence minOccurs="1"
maxOccurs="unbounded">
<classRef key="model.div1Like"/>
<alternate minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.global"/>
<classRef key="model.divGenLike"/>
</alternate>
</sequence>
<sequence minOccurs="1" maxOccurs="1">
<sequence minOccurs="1"
maxOccurs="unbounded">
<classRef key="model.common"/>
<classRef key="model.global"
minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<alternate minOccurs="0" maxOccurs="1">
<sequence minOccurs="1"
maxOccurs="unbounded">
<classRef key="model.divLike"/>
<alternate minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.global"/>
<classRef key="model.divGenLike"/>
</alternate>
</sequence>
<sequence minOccurs="1"
maxOccurs="unbounded">
<classRef key="model.div1Like"/>
<alternate minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.global"/>
<classRef key="model.divGenLike"/>
</alternate>
</sequence>
</alternate>
</sequence>
</alternate>
<sequence minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.divBottom"/>
<classRef key="model.global"
minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</sequence>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element body
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attribute.xmlid</a>,
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attribute.n</a>,
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attribute.xmllang</a>,
<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition.attribute.rend</a>,
<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking.attribute.corresp</a>,
<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs.attribute.facs</a>,
<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility.attribute.cert</a>,
(
<a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>*,
( <a class="link_ref" href="#TEI.model.divTop" title="model.divTop">model.divTop</a>, ( <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a> | <a class="link_ref" href="#TEI.model.divTop" title="model.divTop">model.divTop</a> )* )?,
( model.divGenLike, ( <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a> | model.divGenLike )* )?,
(
( <a class="link_ref" href="#TEI.model.divLike" title="model.divLike">model.divLike</a>, ( <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a> | model.divGenLike )* )+
| ( model.div1Like, ( <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a> | model.divGenLike )* )+
| (
( <a class="link_ref" href="#TEI.model.common" title="model.common">model.common</a>, <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>* )+,
(
( <a class="link_ref" href="#TEI.model.divLike" title="model.divLike">model.divLike</a>, ( <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a> | model.divGenLike )* )+
| ( model.div1Like, ( <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a> | model.divGenLike )* )+
)?
)
),
( <a class="link_ref" href="#TEI.model.divBottom" title="model.divBottom">model.divBottom</a>, <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>* )*
)
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.change"><h4><span class="headingNumber">2.1.9. </span><span class="head"><change></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><change> </span><span lang="en">documents a change or set of changes made during the production of a source document, or during the revision of an electronic file.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD6">2.6. The Revision Description</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD4C">2.4.1. Creation</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/PH.html#PH-changes">11.7. Identifying Changes and Revisions</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">header</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.ascribed" title="att.ascribed">att.ascribed</a> (<span class="attribute">@who</span>) <a class="link_ref" href="#TEI.att.datable" title="att.datable">att.datable</a> (<a class="link_ref" href="#TEI.att.datable.w3c" title="att.datable.w3c">att.datable.w3c</a> (<span class="attribute">@when</span>, <span class="attribute">@notBefore</span>, <span class="attribute">@notAfter</span>, <span class="attribute">@from</span>, <span class="attribute">@to</span>)) <a class="link_ref" href="#TEI.att.docStatus" title="att.docStatus">att.docStatus</a> (<span class="attribute">@status</span>) <a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="attribute">@type</span>, <span class="attribute">@subtype</span>) <div class="table"><table class="attList"><tr><td class="odd_label">target</td><td class="odd_value"><span lang="en">points to one or more elements that belong to this change.</span><div class="table"><table class="attDef"><tr><td class="odd_label"><span lang="en" class="label">Status</span></td><td class="odd_value"><span lang="en">Optional</span></td></tr><tr><td class="odd_label"><span lang="en" class="label">Datatype</span></td><td class="odd_value">1–∞ <span lang="en">occurrences of</span> <a class="link_ref" href="#TEI.teidata.pointer" title="teidata.pointer">teidata.pointer</a> <span lang="en">separated by whitespace</span></td></tr></table></div></td></tr></table></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.revisionDesc" title="<revisionDesc>">revisionDesc</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>The <span class="att">who</span> attribute may be used to point to any other element, but will typically specify a <a class="link_ref" href="#TEI.respStmt" title="<respStmt>"><respStmt></a> or <span class="gi"><person></span> element elsewhere in the header, identifying the person responsible for the change and their role in making it.</p><p>It is recommended that changes be recorded with the most recent first. The <span class="att">status</span> attribute may be used to indicate the status of a document following the change documented.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e3266" class="pre egXML_valid"><span class="element"><titleStmt></span>
<span class="element"><title></span> ... <span class="element"></title></span>
<span class="element"><editor <span class="attribute">xml:id</span>="<span class="attributevalue">LDB</span>"></span>Lou Burnard<span class="element"></editor></span>
<span class="element"><respStmt <span class="attribute">xml:id</span>="<span class="attributevalue">BZ</span>"></span>
<span class="element"><resp></span>copy editing<span class="element"></resp></span>
<span class="element"><name></span>Brett Zamir<span class="element"></name></span>
<span class="element"></respStmt></span>
<span class="element"></titleStmt></span>
<span class="comment"><!-- ... --></span>
<span class="element"><revisionDesc <span class="attribute">status</span>="<span class="attributevalue">published</span>"></span>
<span class="element"><change <span class="attribute">who</span>="<span class="attributevalue">#BZ</span>" <span class="attribute">when</span>="<span class="attributevalue">2008-02-02</span>"
<span class="attribute">status</span>="<span class="attributevalue">public</span>"></span>Finished chapter 23<span class="element"></change></span>
<span class="element"><change <span class="attribute">who</span>="<span class="attributevalue">#BZ</span>" <span class="attribute">when</span>="<span class="attributevalue">2008-01-02</span>"
<span class="attribute">status</span>="<span class="attributevalue">draft</span>"></span>Finished chapter 2<span class="element"></change></span>
<span class="element"><change <span class="attribute">n</span>="<span class="attributevalue">P2.2</span>" <span class="attribute">when</span>="<span class="attributevalue">1991-12-21</span>"
<span class="attribute">who</span>="<span class="attributevalue">#LDB</span>"></span>Added examples to section 3<span class="element"></change></span>
<span class="element"><change <span class="attribute">when</span>="<span class="attributevalue">1991-11-11</span>" <span class="attribute">who</span>="<span class="attributevalue">#MSM</span>"></span>Deleted chapter 10<span class="element"></change></span>
<span class="element"></revisionDesc></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e3292" class="pre egXML_valid"><span class="element"><profileDesc></span>
<span class="element"><creation></span>
<span class="element"><listChange></span>
<span class="element"><change <span class="attribute">xml:id</span>="<span class="attributevalue">DRAFT1</span>"></span>First draft in pencil<span class="element"></change></span>
<span class="element"><change <span class="attribute">xml:id</span>="<span class="attributevalue">DRAFT2</span>"
<span class="attribute">notBefore</span>="<span class="attributevalue">1880-12-09</span>"></span>First revision, mostly
using green ink<span class="element"></change></span>
<span class="element"><change <span class="attribute">xml:id</span>="<span class="attributevalue">DRAFT3</span>"
<span class="attribute">notBefore</span>="<span class="attributevalue">1881-02-13</span>"></span>Final corrections as
supplied to printer.<span class="element"></change></span>
<span class="element"></listChange></span>
<span class="element"></creation></span>
<span class="element"></profileDesc></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.specialPara"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element change
{
<a class="link_ref" href="#TEI.att.ascribed" title="att.ascribed">att.ascribed.attributes</a>,
<a class="link_ref" href="#TEI.att.datable" title="att.datable">att.datable.attributes</a>,
<a class="link_ref" href="#TEI.att.docStatus" title="att.docStatus">att.docStatus.attributes</a>,
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attributes</a>,
attribute target { list { + } }?,
<a class="link_ref" href="#TEI.macro.specialPara" title="macro.specialPara">macro.specialPara</a>
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.choice"><h4><span class="headingNumber">2.1.10. </span><span class="head"><choice></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><choice> </span><span lang="en">groups a number of alternative encodings for the same point in a text.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COED">3.4. Simple Editorial Changes</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>))</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.pPart.editorial" title="model.pPart.editorial">model.pPart.editorial</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>Because the children of a <a class="link_ref" href="#TEI.choice" title="<choice>"><choice></a> element all represent alternative ways of encoding the same sequence, it is natural to think of them as mutually exclusive. However, there may be cases where a full representation of a text requires the alternative encodings to be considered as parallel.</p><p>Note also that <a class="link_ref" href="#TEI.choice" title="<choice>"><choice></a> elements may self-nest.</p><p>Where the purpose of an encoding is to record multiple witnesses of a single work, rather than to identify multiple possible encoding decisions at a given point, the <span class="gi"><app></span> element and associated elements discussed in section <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TC.html#TCAPLL">12.1. The Apparatus Entry, Readings, and Witnesses</a> should be preferred.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2">An American encoding of <span class="titlem">Gulliver's Travels</span> which retains the British spelling but also provides a version regularized to American spelling might be encoded as follows.<div id="index.xml-egXML-d30e3667" class="pre egXML_valid"><span class="element"><p></span>Lastly, That, upon his solemn oath to observe all the above
articles, the said man-mountain shall have a daily allowance of
meat and drink sufficient for the support of <span class="element"><choice></span>
<span class="element"><sic></span>1724<span class="element"></sic></span>
<span class="element"><corr></span>1728<span class="element"></corr></span>
<span class="element"></choice></span> of our subjects,
with free access to our royal person, and other marks of our
<span class="element"><choice></span>
<span class="element"><orig></span>favour<span class="element"></orig></span>
<span class="element"><reg></span>favor<span class="element"></reg></span>
<span class="element"></choice></span>.<span class="element"></p></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<alternate minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.choicePart"/>
<elementRef key="choice"/>
</alternate>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element choice { <a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>, ( <a class="link_ref" href="#TEI.model.choicePart" title="model.choicePart">model.choicePart</a> | <a class="link_ref" href="#TEI.choice" title="<choice>">choice</a> )* }</pre></td></tr></table></div></div><div class="refdoc" id="TEI.corr"><h4><span class="headingNumber">2.1.11. </span><span class="head"><corr></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><corr> </span>(<span lang="en">correction</span>) <span lang="en">contains the correct form of a passage apparently erroneous in the copy text.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COEDCOR">3.4.1. Apparent Errors</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="attribute">@type</span>, <span class="attribute">@subtype</span>) </td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.choicePart" title="model.choicePart">model.choicePart</a> <a class="link_odd_classSpec" href="#TEI.model.pPart.transcriptional" title="model.pPart.transcriptional">model.pPart.transcriptional</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2">If all that is desired is to call attention to the fact that the copy text has been corrected, <a class="link_ref" href="#TEI.corr" title="<corr>"><corr></a> may be used alone:<div id="index.xml-egXML-d30e4114" class="pre egXML_valid">I don't know,
Juan. It's so far in the past now — how <span class="element"><corr></span>can we<span class="element"></corr></span> prove
or disprove anyone's theories?</div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2">It is also possible, using the <a class="link_ref" href="#TEI.choice" title="<choice>"><choice></a> and <a class="link_ref" href="#TEI.sic" title="<sic>"><sic></a> elements, to provide an uncorrected reading:<div id="index.xml-egXML-d30e4131" class="pre egXML_valid">I don't know, Juan. It's so far in the past now —
how <span class="element"><choice></span>
<span class="element"><sic></span>we can<span class="element"></sic></span>
<span class="element"><corr></span>can we<span class="element"></corr></span>
<span class="element"></choice></span> prove or
disprove anyone's theories?</div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.paraContent"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element corr { <a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>, <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attributes</a>, <a class="link_ref" href="#TEI.macro.paraContent" title="macro.paraContent">macro.paraContent</a> }</pre></td></tr></table></div></div><div class="refdoc" id="TEI.date"><h4><span class="headingNumber">2.1.12. </span><span class="head"><date></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><date> </span><span lang="en">contains a date in any format.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#CONADA">3.5.4. Dates and Times</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD24">2.2.4. Publication, Distribution, Licensing, etc.</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD6">2.6. The Revision Description</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOI">3.11.2.4. Imprint, Size of a Document, and Reprint Information</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html#CCAHSE">15.2.3. The Setting Description</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDDATE">13.3.6. Dates and Times</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.datable" title="att.datable">att.datable</a> (<a class="link_ref" href="#TEI.att.datable.w3c" title="att.datable.w3c">att.datable.w3c</a> (<span class="attribute">@when</span>, <span class="attribute">@notBefore</span>, <span class="attribute">@notAfter</span>, <span class="attribute">@from</span>, <span class="attribute">@to</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="attribute">@type</span>, <span class="attribute">@subtype</span>) </td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.dateLike" title="model.dateLike">model.dateLike</a> <a class="link_odd_classSpec" href="#TEI.model.publicationStmtPart.detail" title="model.publicationStmtPart.detail">model.publicationStmtPart.detail</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a> <a class="link_odd_elementSpec" href="#TEI.publicationStmt" title="<publicationStmt>">publicationStmt</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e4604" class="pre egXML_valid"><span class="element"><date <span class="attribute">when</span>="<span class="attributevalue">1980-02</span>"></span>early February 1980<span class="element"></date></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e4612" class="pre egXML_valid">Given on the <span class="element"><date <span class="attribute">when</span>="<span class="attributevalue">1977-06-12</span>"></span>Twelfth Day
of June in the Year of Our Lord One Thousand Nine Hundred and Seventy-seven of the Republic
the Two Hundredth and first and of the University the Eighty-Sixth.<span class="element"></date></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e4621" class="pre egXML_valid"><span class="element"><date <span class="attribute">when</span>="<span class="attributevalue">1990-09</span>"></span>September 1990<span class="element"></date></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<alternate minOccurs="0"
maxOccurs="unbounded">
<textNode/>
<classRef key="model.gLike"/>
<classRef key="model.phrase"/>
<classRef key="model.global"/>
</alternate>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element date
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.datable" title="att.datable">att.datable.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attributes</a>,
( text | model.gLike | <a class="link_ref" href="#TEI.model.phrase" title="model.phrase">model.phrase</a> | <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a> )*
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.desc"><h4><span class="headingNumber">2.1.13. </span><span class="head"><desc></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><desc> </span>(<span lang="en">description</span>) <span lang="en">contains a brief description of the object documented by its parent element, typically a documentation element or an entity.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TD.html#TDcrystalsCEdc">22.4.1. Description of Components</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.translatable" title="att.translatable">att.translatable</a> (<span class="attribute">@versionDate</span>) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="attribute">@type</span>, <span class="attribute">@subtype</span>) </td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.descLike" title="model.descLike">model.descLike</a> <a class="link_odd_classSpec" href="#TEI.model.labelLike" title="model.labelLike">model.labelLike</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.body" title="<body>">body</a> <a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>When used in a specification element such as <span class="gi"><elementSpec></span>, TEI convention requires that this be expressed as a finite clause, begining with an active verb.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e4979" class="pre egXML_valid"><span class="element"><desc></span>contains a brief description of the purpose and intended use of a documentation element, or a brief characterisation of a parent entity <span class="element"></desc></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.limitedContent"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element desc
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.translatable" title="att.translatable">att.translatable.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attributes</a>,
<a class="link_ref" href="#TEI.macro.limitedContent" title="macro.limitedContent">macro.limitedContent</a>
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.distributor"><h4><span class="headingNumber">2.1.14. </span><span class="head"><distributor></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><distributor> </span><span lang="en">supplies the name of a person or other agency responsible for the distribution of a text.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD24">2.2.4. Publication, Distribution, Licensing, etc.</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">header</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>))</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.publicationStmtPart.agency" title="model.publicationStmtPart.agency">model.publicationStmtPart.agency</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.publicationStmt" title="<publicationStmt>">publicationStmt</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e5253" class="pre egXML_valid"><span class="element"><distributor></span>Oxford Text Archive<span class="element"></distributor></span>
<span class="element"><distributor></span>Redwood and Burn Ltd<span class="element"></distributor></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.phraseSeq"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element distributor { <a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>, <a class="link_ref" href="#TEI.macro.phraseSeq" title="macro.phraseSeq">macro.phraseSeq</a> }</pre></td></tr></table></div></div><div class="refdoc" id="TEI.div"><h4><span class="headingNumber">2.1.15. </span><span class="head"><div></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><div> </span>(<span lang="en">text division</span>) <span lang="en">contains a subdivision of the front, body, or back of a text.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DS.html#DSDIV">4.1. Divisions of the Body</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">textstructure</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="unusedattribute">type</span>, @subtype) <div class="table"><table class="attList"><tr><td class="odd_label">type</td><td class="odd_value"><span lang="en">characterizes the element in some sense, using any convenient classification scheme or typology.</span><div class="table"><table class="attDef"><tr><td class="odd_label"><span lang="en" class="label">Derived from</span></td><td class="odd_value"><a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Status</span></td><td class="odd_value"><span lang="en"><span class="required">Required</span></span></td></tr><tr><td class="odd_label"><span lang="en" class="label">Datatype</span></td><td class="odd_value"><a class="link_ref" href="#TEI.teidata.enumerated" title="teidata.enumerated">teidata.enumerated</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Legal values are:</span></td><td class="odd_value"><dl class="valList"><dt><span class="odd_label">accounts</span></dt><dd><span>The division contains accounts</span></dd><dt><span class="odd_label">apprentices</span></dt><dd><span>The division contains information about apprenticies</span></dd><dt><span class="odd_label">charges</span></dt><dd><span>The division contains charges</span></dd><dt><span class="odd_label">dinners</span></dt><dd><span>The division contains information about dinners</span></dd><dt><span class="odd_label">entries</span></dt><dd><span>The division contains registration entries</span></dd><dt><span class="odd_label">entry</span></dt><dd><span>The division contains a single registration entry</span></dd><dt><span class="odd_label">entryGrp</span></dt><dd><span>The division contains a group of registration entries</span></dd><dt><span class="odd_label">fines</span></dt><dd><span>The division contains a information about fines</span></dd><dt><span class="odd_label">freemen</span></dt><dd><span>The division contains information about freemen</span></dd><dt><span class="odd_label">notEntries</span></dt><dd><span>The division contains a group of material that is not an entry</span></dd><dt><span class="odd_label">notEntry</span></dt><dd><span>The division contains material that is not an entry</span></dd><dt><span class="odd_label">other</span></dt><dd><span>The division contains other material</span></dd><dt><span class="odd_label">payments</span></dt><dd><span>The division contains payments</span></dd><dt><span class="odd_label">receipts</span></dt><dd><span>The division contains receipts</span></dd><dt><span class="odd_label">folio</span></dt><dd><span>The division contains entries on a folio</span></dd></dl></td></tr></table></div></td></tr></table></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.divLike" title="model.divLike">model.divLike</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.body" title="<body>">body</a> <a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a></span></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e5579" class="pre egXML_valid"><span class="element"><body></span>
<span class="element"><div <span class="attribute">type</span>="<span class="attributevalue">part</span>"></span>
<span class="element"><head></span>Fallacies of Authority<span class="element"></head></span>
<span class="element"><p></span>The subject of which is Authority in various shapes, and the object, to repress all
exercise of the reasoning faculty.<span class="element"></p></span>
<span class="element"><div <span class="attribute">n</span>="<span class="attributevalue">1</span>" <span class="attribute">type</span>="<span class="attributevalue">chapter</span>"></span>
<span class="element"><head></span>The Nature of Authority<span class="element"></head></span>
<span class="element"><p></span>With reference to any proposed measures having for their object the greatest
happiness of the greatest number [...]<span class="element"></p></span>
<span class="element"><div <span class="attribute">n</span>="<span class="attributevalue">1.1</span>" <span class="attribute">type</span>="<span class="attributevalue">section</span>"></span>
<span class="element"><head></span>Analysis of Authority<span class="element"></head></span>
<span class="element"><p></span>What on any given occasion is the legitimate weight or influence to be attached to
authority [...] <span class="element"></p></span>
<span class="element"></div></span>
<span class="element"><div <span class="attribute">n</span>="<span class="attributevalue">1.2</span>" <span class="attribute">type</span>="<span class="attributevalue">section</span>"></span>
<span class="element"><head></span>Appeal to Authority, in What Cases Fallacious.<span class="element"></head></span>
<span class="element"><p></span>Reference to authority is open to the charge of fallacy when [...] <span class="element"></p></span>
<span class="element"></div></span>
<span class="element"></div></span>
<span class="element"></div></span>
<span class="element"></body></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="@type='entry' and .//tei:div[@type='entry']">You may not hve an entry inside another entry</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="ancestor::tei:l"> Abstract model violation: Lines may not contain higher-level structural elements such as div.
</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="ancestor::tei:p or ancestor::tei:ab and not(ancestor::tei:floatingText)"> Abstract model violation: p and ab may not contain higher-level structural elements such as div.
</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<sequence minOccurs="1" maxOccurs="1">
<alternate minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.divTop"/>
<classRef key="model.global"/>
</alternate>
<sequence minOccurs="0" maxOccurs="1">
<alternate minOccurs="1" maxOccurs="1">
<sequence minOccurs="1"
maxOccurs="unbounded">
<alternate minOccurs="1" maxOccurs="1">
<classRef key="model.divLike"/>
<classRef key="model.divGenLike"/>
</alternate>
<classRef key="model.global"
minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<sequence minOccurs="1" maxOccurs="1">
<sequence minOccurs="1"
maxOccurs="unbounded">
<classRef key="model.common"/>
<classRef key="model.global"
minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<sequence minOccurs="0"
maxOccurs="unbounded">
<alternate minOccurs="1"
maxOccurs="1">
<classRef key="model.divLike"/>
<classRef key="model.divGenLike"/>
</alternate>
<classRef key="model.global"
minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</sequence>
</alternate>
<sequence minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.divBottom"/>
<classRef key="model.global"
minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</sequence>
</sequence>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element div
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attribute.subtype</a>,
attribute type
{
"accounts"
| "apprentices"
| "charges"
| "dinners"
| "entries"
| "entry"
| "entryGrp"
| "fines"
| "freemen"
| "notEntries"
| "notEntry"
| "other"
| "payments"
| "receipts"
| "folio"
},
(
( <a class="link_ref" href="#TEI.model.divTop" title="model.divTop">model.divTop</a> | <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a> )*,
(
(
( ( <a class="link_ref" href="#TEI.model.divLike" title="model.divLike">model.divLike</a> | model.divGenLike ), <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>* )+
| (
( <a class="link_ref" href="#TEI.model.common" title="model.common">model.common</a>, <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>* )+,
( ( <a class="link_ref" href="#TEI.model.divLike" title="model.divLike">model.divLike</a> | model.divGenLike ), <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>* )*
)
),
( <a class="link_ref" href="#TEI.model.divBottom" title="model.divBottom">model.divBottom</a>, <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>* )*
)?
)
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.encodingDesc"><h4><span class="headingNumber">2.1.16. </span><span class="head"><encodingDesc></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><encodingDesc> </span>(<span lang="en">encoding description</span>) <span lang="en">documents the relationship between an electronic text and the source or sources from which it was derived.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD5">2.3. The Encoding Description</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD11">2.1.1. The TEI Header and Its Components</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">header</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>))</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.teiHeaderPart" title="model.teiHeaderPart">model.teiHeaderPart</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.teiHeader" title="<teiHeader>">teiHeader</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.projectDesc" title="<projectDesc>">projectDesc</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a></span></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e5812" class="pre egXML_valid"><span class="element"><encodingDesc></span>
<span class="element"><p></span>Basic encoding, capturing lexical information only. All
hyphenation, punctuation, and variant spellings normalized. No
formatting or layout information preserved.<span class="element"></p></span>
<span class="element"></encodingDesc></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<alternate minOccurs="1"
maxOccurs="unbounded">
<classRef key="model.encodingDescPart"/>
<classRef key="model.pLike"/>
</alternate>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element encodingDesc
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
( <a class="link_ref" href="#TEI.model.encodingDescPart" title="model.encodingDescPart">model.encodingDescPart</a> | <a class="link_ref" href="#TEI.model.pLike" title="model.pLike">model.pLike</a> )+
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.ex"><h4><span class="headingNumber">2.1.17. </span><span class="head"><ex></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><ex> </span>(<span lang="en">editorial expansion</span>) <span lang="en">contains a sequence of letters added by an editor or transcriber when expanding an abbreviation.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/PH.html#PHAB">11.3.1.2. Abbreviation and Expansion</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">transcr</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>))</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.choicePart" title="model.choicePart">model.choicePart</a> <a class="link_odd_classSpec" href="#TEI.model.pPart.editorial" title="model.pPart.editorial">model.pPart.editorial</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><span lang="en">Character data only</span></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e6097" class="pre egXML_valid">The address is Southmoor <span class="element"><choice></span>
<span class="element"><expan></span>R<span class="element"><ex></span>oa<span class="element"></ex></span>d<span class="element"></expan></span>
<span class="element"><abbr></span>Rd<span class="element"></abbr></span>
<span class="element"></choice></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.xtext"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element ex { <a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>, <a class="link_ref" href="#TEI.macro.xtext" title="macro.xtext">macro.xtext</a> }</pre></td></tr></table></div></div><div class="refdoc" id="TEI.expan"><h4><span class="headingNumber">2.1.18. </span><span class="head"><expan></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><expan> </span>(<span lang="en">expansion</span>) <span lang="en">contains the expansion of an abbreviation.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#CONAAB">3.5.5. Abbreviations and Their Expansions</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>))</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.choicePart" title="model.choicePart">model.choicePart</a> <a class="link_odd_classSpec" href="#TEI.model.pPart.editorial" title="model.pPart.editorial">model.pPart.editorial</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>The content of this element should be the expanded abbreviation, usually (but not always) a complete word or phrase. The <a class="link_ref" href="#TEI.ex" title="<ex>"><ex></a> element provided by the <span class="ident-module">transcr</span> module may be used to mark up sequences of letters supplied within such an expansion.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e6537" class="pre egXML_valid">The address is Southmoor
<span class="element"><choice></span>
<span class="element"><expan></span>Road<span class="element"></expan></span>
<span class="element"><abbr></span>Rd<span class="element"></abbr></span>
<span class="element"></choice></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e6549" class="pre egXML_valid"><span class="element"><choice <span class="attribute">xml:lang</span>="<span class="attributevalue">la</span>"></span>
<span class="element"><abbr></span>Imp<span class="element"></abbr></span>
<span class="element"><expan></span>Imp<span class="element"><ex></span>erator<span class="element"></ex></span>
<span class="element"></expan></span>
<span class="element"></choice></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.phraseSeq"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element expan { <a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>, <a class="link_ref" href="#TEI.macro.phraseSeq" title="macro.phraseSeq">macro.phraseSeq</a> }</pre></td></tr></table></div></div><div class="refdoc" id="TEI.fileDesc"><h4><span class="headingNumber">2.1.19. </span><span class="head"><fileDesc></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><fileDesc> </span>(<span lang="en">file description</span>) <span lang="en">contains a full bibliographic description of an electronic file.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD2">2.2. The File Description</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD11">2.1.1. The TEI Header and Its Components</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">header</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>))</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.teiHeader" title="<teiHeader>">teiHeader</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.publicationStmt" title="<publicationStmt>">publicationStmt</a> <a class="link_odd_elementSpec" href="#TEI.sourceDesc" title="<sourceDesc>">sourceDesc</a> <a class="link_odd_elementSpec" href="#TEI.titleStmt" title="<titleStmt>">titleStmt</a></span></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>The major source of information for those seeking to create a catalogue entry or bibliographic citation for an electronic file. As such, it provides a title and statements of responsibility together with details of the publication or distribution of the file, of any series to which it belongs, and detailed bibliographic notes for matters not addressed elsewhere in the header. It also contains a full bibliographic description for the source or sources from which the electronic text was derived.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e6704" class="pre egXML_valid"><span class="element"><fileDesc></span>
<span class="element"><titleStmt></span>
<span class="element"><title></span>The shortest possible TEI document<span class="element"></title></span>
<span class="element"></titleStmt></span>
<span class="element"><publicationStmt></span>
<span class="element"><p></span>Distributed as part of TEI P5<span class="element"></p></span>
<span class="element"></publicationStmt></span>
<span class="element"><sourceDesc></span>
<span class="element"><p></span>No print source exists: this is an original digital text<span class="element"></p></span>
<span class="element"></sourceDesc></span>
<span class="element"></fileDesc></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<sequence>
<sequence>
<elementRef key="titleStmt"/>
<elementRef key="editionStmt"
minOccurs="0"/>
<elementRef key="extent" minOccurs="0"/>
<elementRef key="publicationStmt"/>
<elementRef key="seriesStmt"
minOccurs="0"/>
<elementRef key="notesStmt"
minOccurs="0"/>
</sequence>
<elementRef key="sourceDesc"
minOccurs="1" maxOccurs="unbounded"/>
</sequence>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element fileDesc
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
(
(
<a class="link_ref" href="#TEI.titleStmt" title="<titleStmt>">titleStmt</a>,
editionStmt?,
extent?,
<a class="link_ref" href="#TEI.publicationStmt" title="<publicationStmt>">publicationStmt</a>,
seriesStmt?,
notesStmt?
),
<a class="link_ref" href="#TEI.sourceDesc" title="<sourceDesc>">sourceDesc</a>+
)
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.foreign"><h4><span class="headingNumber">2.1.20. </span><span class="head"><foreign></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><foreign> </span><span lang="en">identifies a word or phrase as belonging to some language other than that of the surrounding text.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COHQHF">3.3.2.1. Foreign Words or Expressions</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>))</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.emphLike" title="model.emphLike">model.emphLike</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>The global <span class="att">xml:lang</span> attribute should be supplied for this element to identify the language of the word or phrase marked. As elsewhere, its value should be a language tag as defined in <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CH.html#CHSH">6.1. Language Identification</a>.</p><p>This element is intended for use only where no other element is available to mark the phrase or words concerned. The global <span class="att">xml:lang</span> attribute should be used in preference to this element where it is intended to mark the language of the whole of some text element.</p><p>The <span class="gi"><distinct></span> element may be used to identify phrases belonging to sublanguages or registers not generally regarded as true languages.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e7162" class="pre egXML_valid">This is
heathen Greek to you still? Your <span class="element"><foreign <span class="attribute">xml:lang</span>="<span class="attributevalue">la</span>"></span>lapis
philosophicus<span class="element"></foreign></span>?</div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.phraseSeq"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element foreign { <a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>, <a class="link_ref" href="#TEI.macro.phraseSeq" title="macro.phraseSeq">macro.phraseSeq</a> }</pre></td></tr></table></div></div><div class="refdoc" id="TEI.forename"><h4><span class="headingNumber">2.1.21. </span><span class="head"><forename></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><forename> </span><span lang="en">contains a forename, given or baptismal name.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPER">13.2.1. Personal Names</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">namesdates</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.personal" title="att.personal">att.personal</a> (<a class="link_ref" href="#TEI.att.naming" title="att.naming">att.naming</a> (<span class="attribute">@role</span>) (<a class="link_ref" href="#TEI.att.canonical" title="att.canonical">att.canonical</a> (<span class="attribute">@ref</span>)) ) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="attribute">@type</span>, <span class="attribute">@subtype</span>) </td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.persNamePart" title="model.persNamePart">model.persNamePart</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e7598" class="pre egXML_valid"><span class="element"><persName></span>
<span class="element"><roleName></span>Ex-President<span class="element"></roleName></span>
<span class="element"><forename></span>George<span class="element"></forename></span>
<span class="element"><surname></span>Bush<span class="element"></surname></span>
<span class="element"></persName></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.phraseSeq"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element forename
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.personal" title="att.personal">att.personal.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attributes</a>,
<a class="link_ref" href="#TEI.macro.phraseSeq" title="macro.phraseSeq">macro.phraseSeq</a>
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.funder"><h4><span class="headingNumber">2.1.22. </span><span class="head"><funder></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><funder> </span>(<span lang="en">funding body</span>) <span lang="en">specifies the name of an individual, institution, or organization responsible for the funding of a project or text.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD21">2.2.1. The Title Statement</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">header</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.canonical" title="att.canonical">att.canonical</a> (<span class="attribute">@ref</span>) </td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.respLike" title="model.respLike">model.respLike</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.titleStmt" title="<titleStmt>">titleStmt</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>Funders provide financial support for a project; they are distinct from <span class="term">sponsors</span> (see element <span class="gi"><sponsor></span>), who provide intellectual support and authority.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e7871" class="pre egXML_valid"><span class="element"><funder></span>The National Endowment for the Humanities, an independent federal agency<span class="element"></funder></span>
<span class="element"><funder></span>Directorate General XIII of the Commission of the European Communities<span class="element"></funder></span>
<span class="element"><funder></span>The Andrew W. Mellon Foundation<span class="element"></funder></span>
<span class="element"><funder></span>The Social Sciences and Humanities Research Council of Canada<span class="element"></funder></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.phraseSeq.limited"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element funder
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.canonical" title="att.canonical">att.canonical.attributes</a>,
<a class="link_ref" href="#TEI.macro.phraseSeq.limited" title="macro.phraseSeq.limited">macro.phraseSeq.limited</a>
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.fw"><h4><span class="headingNumber">2.1.23. </span><span class="head"><fw></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><fw> </span>(<span lang="en">forme work</span>) <span lang="en">contains a running head (e.g. a header, footer), catchword, or similar material appearing on the current page.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/PH.html#PHSK">11.6. Headers, Footers, and Similar Matter</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">transcr</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.placement" title="att.placement">att.placement</a> (<span class="attribute">@place</span>) <div class="table"><table class="attList"><tr><td class="odd_label">type</td><td class="odd_value"><span lang="en">classifies the material encoded according to some useful typology.</span><div class="table"><table class="attDef"><tr><td class="odd_label"><span lang="en" class="label">Status</span></td><td class="odd_value"><span lang="en">Recommended</span></td></tr><tr><td class="odd_label"><span lang="en" class="label">Datatype</span></td><td class="odd_value"><a class="link_ref" href="#TEI.teidata.enumerated" title="teidata.enumerated">teidata.enumerated</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Sample values include:</span></td><td class="odd_value"><dl class="valList"><dt><span class="odd_label">header</span></dt><dd><span lang="en">a running title at the top of the page</span></dd><dt><span class="odd_label">footer</span></dt><dd><span lang="en">a running title at the bottom of the page</span></dd><dt><span class="odd_label">pageNum</span></dt><dd>(<span lang="en">page number</span>) <span lang="en">a page number or foliation symbol</span></dd><dt><span class="odd_label">lineNum</span></dt><dd>(<span lang="en">line number</span>) <span lang="en">a line number, either of prose or poetry</span></dd><dt><span class="odd_label">sig</span></dt><dd>(<span lang="en">signature</span>) <span lang="en">a signature or gathering symbol</span></dd><dt><span class="odd_label">catch</span></dt><dd>(<span lang="en">catchword</span>) <span lang="en">a catch-word</span></dd></dl></td></tr></table></div></td></tr></table></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.milestoneLike" title="model.milestoneLike">model.milestoneLike</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.body" title="<body>">body</a> <a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a> <a class="link_odd_elementSpec" href="#TEI.text" title="<text>">text</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>Where running heads are consistent throughout a chapter or section, it is usually more convenient to relate them to the chapter or section, e.g. by use of the <span class="att">rend</span> attribute. The <a class="link_ref" href="#TEI.fw" title="<fw>"><fw></a> element is intended for cases where the running head changes from page to page, or where details of page layout and the internal structure of the running heads are of paramount importance.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e8410" class="pre egXML_valid"><span class="element"><fw <span class="attribute">type</span>="<span class="attributevalue">sig</span>" <span class="attribute">place</span>="<span class="attributevalue">bottom</span>"></span>C3<span class="element"></fw></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.phraseSeq"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element fw
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.placement" title="att.placement">att.placement.attributes</a>,
attribute type { text }?,
<a class="link_ref" href="#TEI.macro.phraseSeq" title="macro.phraseSeq">macro.phraseSeq</a>
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.gap"><h4><span class="headingNumber">2.1.24. </span><span class="head"><gap></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><gap> </span><span lang="en">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, invisible, or inaudible.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COEDADD">3.4.3. Additions, Deletions, and Omissions</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <div class="table"><table class="attList"><tr><td class="odd_label">reason</td><td class="odd_value"><span lang="en">gives the reason for omission. Sample values include <span class="val">sampling</span>, <span class="val">inaudible</span>, <span class="val">irrelevant</span>, <span class="val">cancelled</span>.</span><div class="table"><table class="attDef"><tr><td class="odd_label"><span lang="en" class="label">Status</span></td><td class="odd_value"><span lang="en">Optional</span></td></tr><tr><td class="odd_label"><span lang="en" class="label">Datatype</span></td><td class="odd_value">1–∞ <span lang="en">occurrences of</span> <a class="link_ref" href="#TEI.teidata.word" title="teidata.word">teidata.word</a> <span lang="en">separated by whitespace</span></td></tr></table></div></td></tr><tr><td class="odd_label">agent</td><td class="odd_value"><span lang="en">in the case of text omitted because of damage, categorizes the cause of the damage, if it can be identified.</span><div class="table"><table class="attDef"><tr><td class="odd_label"><span lang="en" class="label">Status</span></td><td class="odd_value"><span lang="en">Optional</span></td></tr><tr><td class="odd_label"><span lang="en" class="label">Datatype</span></td><td class="odd_value"><a class="link_ref" href="#TEI.teidata.enumerated" title="teidata.enumerated">teidata.enumerated</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Sample values include:</span></td><td class="odd_value"><dl class="valList"><dt><span class="odd_label">rubbing</span></dt><dd><span lang="en">damage results from rubbing of the leaf edges</span></dd><dt><span class="odd_label">mildew</span></dt><dd><span lang="en">damage results from mildew on the leaf surface</span></dd><dt><span class="odd_label">smoke</span></dt><dd><span lang="en">damage results from smoke</span></dd></dl></td></tr></table></div></td></tr></table></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.global.edit" title="model.global.edit">model.global.edit</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.body" title="<body>">body</a> <a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a> <a class="link_odd_elementSpec" href="#TEI.text" title="<text>">text</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a></span></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>The <a class="link_ref" href="#TEI.gap" title="<gap>"><gap></a>, <a class="link_ref" href="#TEI.unclear" title="<unclear>"><unclear></a>, and <span class="gi"><del></span> core tag elements may be closely allied in use with the <span class="gi"><damage></span> and <a class="link_ref" href="#TEI.supplied" title="<supplied>"><supplied></a> elements, available when using the additional tagset for transcription of primary sources. See section <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/PH.html#PHCOMB">11.3.3.2. Use of the gap, del, damage, unclear, and supplied Elements in Combination</a> for discussion of which element is appropriate for which circumstance.</p><p>The <a class="link_ref" href="#TEI.gap" title="<gap>"><gap></a> tag simply signals the editors decision to omit or inability to transcribe a span of text. Other information, such as the interpretation that text was deliberately erased or covered, should be indicated using the relevant tags, such as <span class="gi"><del></span> in the case of deliberate deletion.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e8830" class="pre egXML_valid"><span class="element"><gap <span class="attribute">quantity</span>="<span class="attributevalue">4</span>" <span class="attribute">unit</span>="<span class="attributevalue">chars</span>"
<span class="attribute">reason</span>="<span class="attributevalue">illegible</span>"/></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e8837" class="pre egXML_valid"><span class="element"><gap <span class="attribute">quantity</span>="<span class="attributevalue">1</span>" <span class="attribute">unit</span>="<span class="attributevalue">essay</span>"
<span class="attribute">reason</span>="<span class="attributevalue">sampling</span>"/></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e8844" class="pre egXML_valid"><span class="element"><del></span>
<span class="element"><gap <span class="attribute">atLeast</span>="<span class="attributevalue">4</span>" <span class="attribute">atMost</span>="<span class="attributevalue">8</span>" <span class="attribute">unit</span>="<span class="attributevalue">chars</span>"
<span class="attribute">reason</span>="<span class="attributevalue">illegible</span>"/></span>
<span class="element"></del></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e8852" class="pre egXML_valid"><span class="element"><gap <span class="attribute">extent</span>="<span class="attributevalue">several lines</span>" <span class="attribute">reason</span>="<span class="attributevalue">lost</span>"/></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<alternate minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.descLike"/>
<classRef key="model.certLike"/>
</alternate>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element gap
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
attribute reason { list { + } }?,
attribute agent { text }?,
( <a class="link_ref" href="#TEI.model.descLike" title="model.descLike">model.descLike</a> | model.certLike )*
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.head"><h4><span class="headingNumber">2.1.25. </span><span class="head"><head></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><head> </span>(<span lang="en">heading</span>) <span lang="en">contains any type of heading, for example the title of a section, or the heading of a list, glossary, manuscript description, etc.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DS.html#DSHD">4.2.1. Headings and Trailers</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="attribute">@type</span>, <span class="attribute">@subtype</span>) </td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.headLike" title="model.headLike">model.headLike</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.body" title="<body>">body</a> <a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>The <a class="link_ref" href="#TEI.head" title="<head>"><head></a> element is used for headings at all levels; software which treats (e.g.) chapter headings, section headings, and list titles differently must determine the proper processing of a <a class="link_ref" href="#TEI.head" title="<head>"><head></a> element based on its structural position. A <a class="link_ref" href="#TEI.head" title="<head>"><head></a> occurring as the first element of a list is the title of that list; one occurring as the first element of a <span class="gi"><div1></span> is the title of that chapter or section.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2">The most common use for the <a class="link_ref" href="#TEI.head" title="<head>"><head></a> element is to mark the headings of sections. In older writings, the headings or <span class="term">incipits</span> may be rather longer than usual in modern works. If a section has an explicit ending as well as a heading, it should be marked as a <span class="gi"><trailer></span>, as in this example:<div id="index.xml-egXML-d30e9187" class="pre egXML_valid"><span class="element"><div1 <span class="attribute">n</span>="<span class="attributevalue">I</span>" <span class="attribute">type</span>="<span class="attributevalue">book</span>"></span>
<span class="element"><head></span>In the name of Christ here begins the first book of the ecclesiastical history of
Georgius Florentinus, known as Gregory, Bishop of Tours.<span class="element"></head></span>
<span class="element"><div2 <span class="attribute">type</span>="<span class="attributevalue">section</span>"></span>
<span class="element"><head></span>In the name of Christ here begins Book I of the history.<span class="element"></head></span>
<span class="element"><p></span>Proposing as I do ...<span class="element"></p></span>
<span class="element"><p></span>From the Passion of our Lord until the death of Saint Martin four hundred and twelve
years passed.<span class="element"></p></span>
<span class="element"><trailer></span>Here ends the first Book, which covers five thousand, five hundred and ninety-six
years from the beginning of the world down to the death of Saint Martin.<span class="element"></trailer></span>
<span class="element"></div2></span>
<span class="element"></div1></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2">The <a class="link_ref" href="#TEI.head" title="<head>"><head></a> element is also used to mark headings of other units, such as lists:<div id="index.xml-egXML-d30e9209" class="pre egXML_valid">With a few exceptions, connectives are equally
useful in all kinds of discourse: description, narration, exposition, argument. <span class="element"><list <span class="attribute">rend</span>="<span class="attributevalue">bulleted</span>"></span>
<span class="element"><head></span>Connectives<span class="element"></head></span>
<span class="element"><item></span>above<span class="element"></item></span>
<span class="element"><item></span>accordingly<span class="element"></item></span>
<span class="element"><item></span>across from<span class="element"></item></span>
<span class="element"><item></span>adjacent to<span class="element"></item></span>
<span class="element"><item></span>again<span class="element"></item></span>
<span class="element"><item></span>
<span class="comment"><!-- ... --></span>
<span class="element"></item></span>
<span class="element"></list></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<alternate minOccurs="0"
maxOccurs="unbounded">
<textNode/>
<elementRef key="lg"/>
<classRef key="model.gLike"/>
<classRef key="model.phrase"/>
<classRef key="model.inter"/>
<classRef key="model.lLike"/>
<classRef key="model.global"/>
</alternate>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element head
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attributes</a>,
(
text
| lg
| model.gLike
| <a class="link_ref" href="#TEI.model.phrase" title="model.phrase">model.phrase</a>
| <a class="link_ref" href="#TEI.model.inter" title="model.inter">model.inter</a>
| model.lLike
| <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>
)*
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.hi"><h4><span class="headingNumber">2.1.26. </span><span class="head"><hi></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><hi> </span>(<span lang="en">highlighted</span>) <span lang="en">marks a word or phrase as graphically distinct from the surrounding text, for reasons concerning which no claim is made.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COHQHE">3.3.2.2. Emphatic Words and Phrases</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COHQH">3.3.2. Emphasis, Foreign Words, and Unusual Language</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>))</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.hiLike" title="model.hiLike">model.hiLike</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e9664" class="pre egXML_valid"><span class="element"><hi <span class="attribute">rend</span>="<span class="attributevalue">gothic</span>"></span>And this Indenture further witnesseth<span class="element"></hi></span>
that the said <span class="element"><hi <span class="attribute">rend</span>="<span class="attributevalue">italic</span>"></span>Walter Shandy<span class="element"></hi></span>, merchant,
in consideration of the said intended marriage ...</div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.paraContent"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element hi { <a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>, <a class="link_ref" href="#TEI.macro.paraContent" title="macro.paraContent">macro.paraContent</a> }</pre></td></tr></table></div></div><div class="refdoc" id="TEI.idno"><h4><span class="headingNumber">2.1.27. </span><span class="head"><idno></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><idno> </span>(<span lang="en">identifier</span>) <span lang="en">supplies any form of identifier used to identify some object, such as a bibliographic item, a person, a title, an organization, etc. in a standardized way.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD24">2.2.4. Publication, Distribution, Licensing, etc.</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD26">2.2.5. The Series Statement</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOI">3.11.2.4. Imprint, Size of a Document, and Reprint Information</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">header</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.datable" title="att.datable">att.datable</a> (<a class="link_ref" href="#TEI.att.datable.w3c" title="att.datable.w3c">att.datable.w3c</a> (<span class="attribute">@when</span>, <span class="attribute">@notBefore</span>, <span class="attribute">@notAfter</span>, <span class="attribute">@from</span>, <span class="attribute">@to</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="unusedattribute">type</span>, @subtype) <div class="table"><table class="attList"><tr><td class="odd_label">type</td><td class="odd_value"><span lang="en">categorizes the identifier, for example as an ISBN, Social Security number, etc.</span><div class="table"><table class="attDef"><tr><td class="odd_label"><span lang="en" class="label">Derived from</span></td><td class="odd_value"><a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Status</span></td><td class="odd_value"><span lang="en">Optional</span></td></tr><tr><td class="odd_label"><span lang="en" class="label">Datatype</span></td><td class="odd_value"><a class="link_ref" href="#TEI.teidata.enumerated" title="teidata.enumerated">teidata.enumerated</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Suggested values include:</span></td><td class="odd_value"><dl class="valList"><dt><span class="odd_label">ArberRef</span></dt><dd><span>The idno is a reference to Arber</span></dd><dt><span class="odd_label">RegisterRef</span></dt><dd><span>The idno is a reference to the Register</span></dd><dt><span class="odd_label">RegisterID</span></dt><dd><span>The idno is an ID of the Register page</span></dd><dt><span class="odd_label">other</span></dt><dd><span>The idno is some other type of reference</span></dd></dl></td></tr></table></div></td></tr></table></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.nameLike" title="model.nameLike">model.nameLike</a> <a class="link_odd_classSpec" href="#TEI.model.publicationStmtPart.detail" title="model.publicationStmtPart.detail">model.publicationStmtPart.detail</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a> <a class="link_odd_elementSpec" href="#TEI.publicationStmt" title="<publicationStmt>">publicationStmt</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p><a class="link_ref" href="#TEI.idno" title="<idno>"><idno></a> should be used for labels which identify an object or concept in a formal cataloguing system such as a database or an RDF store, or in a distributed system such as the World Wide Web. Some suggested values for <span class="att">type</span> on <a class="link_ref" href="#TEI.idno" title="<idno>"><idno></a> are <code>ISBN</code>, <code>ISSN</code>, <code>DOI</code>, and <code>URI</code>.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e10088" class="pre egXML_valid"><span class="element"><idno <span class="attribute">type</span>="<span class="attributevalue">ISBN</span>"></span>978-1-906964-22-1<span class="element"></idno></span>
<span class="element"><idno <span class="attribute">type</span>="<span class="attributevalue">ISSN</span>"></span>0143-3385<span class="element"></idno></span>
<span class="element"><idno <span class="attribute">type</span>="<span class="attributevalue">DOI</span>"></span>10.1000/123<span class="element"></idno></span>
<span class="element"><idno <span class="attribute">type</span>="<span class="attributevalue">URI</span>"></span>http://www.worldcat.org/oclc/185922478<span class="element"></idno></span>
<span class="element"><idno <span class="attribute">type</span>="<span class="attributevalue">URI</span>"></span>http://authority.nzetc.org/463/<span class="element"></idno></span>
<span class="element"><idno <span class="attribute">type</span>="<span class="attributevalue">LT</span>"></span>Thomason Tract E.537(17)<span class="element"></idno></span>
<span class="element"><idno <span class="attribute">type</span>="<span class="attributevalue">Wing</span>"></span>C695<span class="element"></idno></span>
<span class="element"><idno <span class="attribute">type</span>="<span class="attributevalue">oldCat</span>"></span>
<span class="element"><g <span class="attribute">ref</span>="<span class="attributevalue">#sym</span>"/></span>345
<span class="element"></idno></span></div>In the last case, the identifier includes a non-Unicode character which is defined elsewhere by means of a <span class="gi"><glyph></span> or <span class="gi"><char></span> element referenced here as <code>#sym</code>.</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<alternate minOccurs="0"
maxOccurs="unbounded">
<textNode/>
<classRef key="model.gLike"/>
<elementRef key="idno"/>
</alternate>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element idno
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.datable" title="att.datable">att.datable.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attribute.subtype</a>,
attribute type { "ArberRef" | "RegisterRef" | "RegisterID" | "other" }?,
( text | model.gLike | <a class="link_ref" href="#TEI.idno" title="<idno>">idno</a> )*
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.item"><h4><span class="headingNumber">2.1.28. </span><span class="head"><item></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><item> </span><span lang="en">contains one component of a list.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COLI">3.7. Lists</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD6">2.6. The Revision Description</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>))</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>May contain simple prose or a sequence of chunks.</p><p>Whatever string of characters is used to label a list item in the copy text may be used as the value of the global <span class="att">n</span> attribute, but it is not required that numbering be recorded explicitly. In ordered lists, the <span class="att">n</span> attribute on the <a class="link_ref" href="#TEI.item" title="<item>"><item></a> element is by definition synonymous with the use of the <span class="gi"><label></span> element to record the enumerator of the list item. In glossary lists, however, the term being defined should be given with the <span class="gi"><label></span> element, not <span class="att">n</span>.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e10430" class="pre egXML_valid"><span class="element"><list <span class="attribute">rend</span>="<span class="attributevalue">numbered</span>"></span>
<span class="element"><head></span>Here begin the chapter headings of Book IV<span class="element"></head></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">4.1</span>"></span>The death of Queen Clotild.<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">4.2</span>"></span>How King Lothar wanted to appropriate one third of the Church revenues.<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">4.3</span>"></span>The wives and children of Lothar.<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">4.4</span>"></span>The Counts of the Bretons.<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">4.5</span>"></span>Saint Gall the Bishop.<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">4.6</span>"></span>The priest Cato.<span class="element"></item></span>
<span class="element"><item></span> ...<span class="element"></item></span>
<span class="element"></list></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.specialPara"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element item { <a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>, <a class="link_ref" href="#TEI.macro.specialPara" title="macro.specialPara">macro.specialPara</a> }</pre></td></tr></table></div></div><div class="refdoc" id="TEI.lb"><h4><span class="headingNumber">2.1.29. </span><span class="head"><lb></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><lb> </span>(<span lang="en">line break</span>) <span lang="en">marks the start of a new (typographic) line in some edition or version of a text.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#CORS5">3.10.3. Milestone Elements</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DR.html#DRPAL">7.2.5. Speech Contents</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="attribute">@type</span>, <span class="attribute">@subtype</span>) <a class="link_ref" href="#TEI.att.edition" title="att.edition">att.edition</a> (<span class="attribute">@ed</span>, <span class="attribute">@edRef</span>) <a class="link_ref" href="#TEI.att.breaking" title="att.breaking">att.breaking</a> (<span class="attribute">@break</span>) </td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.milestoneLike" title="model.milestoneLike">model.milestoneLike</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.body" title="<body>">body</a> <a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a> <a class="link_odd_elementSpec" href="#TEI.text" title="<text>">text</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><span lang="en">Empty element</span></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>By convention, <a class="link_ref" href="#TEI.lb" title="<lb>"><lb></a> elements should appear at the point in the text where a new line starts. The <span class="att">n</span> attribute, if used, indicates the number or other value associated with the text between this point and the next <a class="link_ref" href="#TEI.lb" title="<lb>"><lb></a> element, typically the sequence number of the line within the page, or other appropriate unit. This element is intended to be used for marking actual line breaks on a manuscript or printed page, at the point where they occur; it should not be used to tag structural units such as lines of verse (for which the <span class="gi"><l></span> element is available) except in circumstances where structural units cannot otherwise be marked.</p><p>The <span class="att">type</span> attribute may be used to characterize the line break in any respect. The more specialized attributes <span class="att">break</span>, <span class="att">ed</span>, or <span class="att">edRef</span> should be preferred when the intent is to indicate whether or not the line break is word-breaking, or to note the source from which it derives.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2">This example shows typographical line breaks within metrical lines, where they occur at different places in different editions:<div id="index.xml-egXML-d30e10802" class="pre egXML_valid"><span class="element"><l></span>Of Mans First Disobedience,<span class="element"><lb <span class="attribute">ed</span>="<span class="attributevalue">1674</span>"/></span> and<span class="element"><lb <span class="attribute">ed</span>="<span class="attributevalue">1667</span>"/></span> the Fruit<span class="element"></l></span>
<span class="element"><l></span>Of that Forbidden Tree, whose<span class="element"><lb <span class="attribute">ed</span>="<span class="attributevalue">1667 1674</span>"/></span> mortal tast<span class="element"></l></span>
<span class="element"><l></span>Brought Death into the World,<span class="element"><lb <span class="attribute">ed</span>="<span class="attributevalue">1667</span>"/></span> and all<span class="element"><lb <span class="attribute">ed</span>="<span class="attributevalue">1674</span>"/></span> our woe,<span class="element"></l></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2">This example encodes typographical line breaks as a means of preserving the visual appearance of a title page. The <span class="att">break</span> attribute is used to show that the line break does not (as elsewhere) mark the start of a new word.<div id="index.xml-egXML-d30e10828" class="pre egXML_valid"><span class="element"><titlePart></span>
<span class="element"><lb/></span>With Additions, ne-<span class="element"><lb <span class="attribute">break</span>="<span class="attributevalue">no</span>"/></span>ver before Printed.
<span class="element"></titlePart></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element lb
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attributes</a>,
<a class="link_ref" href="#TEI.att.edition" title="att.edition">att.edition.attributes</a>,
<a class="link_ref" href="#TEI.att.breaking" title="att.breaking">att.breaking.attributes</a>,
empty
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.licence"><h4><span class="headingNumber">2.1.30. </span><span class="head"><licence></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><licence> </span><span lang="en">contains information about a licence or other legal agreement applicable to the text.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD24">2.2.4. Publication, Distribution, Licensing, etc.</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">header</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.pointing" title="att.pointing">att.pointing</a> (<span class="attribute">@target</span>) <a class="link_ref" href="#TEI.att.datable" title="att.datable">att.datable</a> (<a class="link_ref" href="#TEI.att.datable.w3c" title="att.datable.w3c">att.datable.w3c</a> (<span class="attribute">@when</span>, <span class="attribute">@notBefore</span>, <span class="attribute">@notAfter</span>, <span class="attribute">@from</span>, <span class="attribute">@to</span>))</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.availabilityPart" title="model.availabilityPart">model.availabilityPart</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.availability" title="<availability>">availability</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>A <a class="link_ref" href="#TEI.licence" title="<licence>"><licence></a> element should be supplied for each licence agreement applicable to the text in question. The <span class="att">target</span> attribute may be used to reference a full version of the licence. The <span class="att">when</span>, <span class="att">notBefore</span>, <span class="att">notAfter</span>, <span class="att">from</span> or <span class="att">to</span> attributes may be used in combination to indicate the date or dates of applicability of the licence.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e11182" class="pre egXML_valid"><span class="element"><licence <span class="attribute">target</span>="<span class="attributevalue">http://www.nzetc.org/tm/scholarly/tei-NZETC-Help.html#licensing</span>"></span> Licence: Creative Commons Attribution-Share Alike 3.0 New Zealand Licence
<span class="element"></licence></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e11190" class="pre egXML_valid"><span class="element"><availability></span>
<span class="element"><licence <span class="attribute">target</span>="<span class="attributevalue">http://creativecommons.org/licenses/by/3.0/</span>"
<span class="attribute">notBefore</span>="<span class="attributevalue">2013-01-01</span>"></span>
<span class="element"><p></span>The Creative Commons Attribution 3.0 Unported (CC BY 3.0) Licence
applies to this document.<span class="element"></p></span>
<span class="element"><p></span>The licence was added on January 1, 2013.<span class="element"></p></span>
<span class="element"></licence></span>
<span class="element"></availability></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.specialPara"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element licence
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.pointing" title="att.pointing">att.pointing.attributes</a>,
<a class="link_ref" href="#TEI.att.datable" title="att.datable">att.datable.attributes</a>,
<a class="link_ref" href="#TEI.macro.specialPara" title="macro.specialPara">macro.specialPara</a>
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.list"><h4><span class="headingNumber">2.1.31. </span><span class="head"><list></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><list> </span><span lang="en">contains any sequence of items organized as a list.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COLI">3.7. Lists</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="unusedattribute">type</span>, @subtype) <div class="table"><table class="attList"><tr><td class="odd_label">type</td><td class="odd_value"><span lang="en">describes the nature of the items in the list.</span><div class="table"><table class="attDef"><tr><td class="odd_label"><span lang="en" class="label">Derived from</span></td><td class="odd_value"><a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Status</span></td><td class="odd_value"><span lang="en">Optional</span></td></tr><tr><td class="odd_label"><span lang="en" class="label">Datatype</span></td><td class="odd_value"><a class="link_ref" href="#TEI.teidata.enumerated" title="teidata.enumerated">teidata.enumerated</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Suggested values include:</span></td><td class="odd_value"><dl class="valList"><dt><span class="odd_label">gloss</span></dt><dd><span lang="en">each list item glosses some term or concept, which is given by a <span class="gi"><label></span> element preceding the list item.</span></dd><dt><span class="odd_label">index</span></dt><dd><span lang="en">each list item is an entry in an index such as the alphabetical topical index at the back of a print volume.</span></dd><dt><span class="odd_label">instructions</span></dt><dd><span lang="en">each list item is a step in a sequence of instructions, as in a recipe.</span></dd><dt><span class="odd_label">litany</span></dt><dd><span lang="en">each list item is one of a sequence of petitions, supplications or invocations, typically in a religious ritual.</span></dd><dt><span class="odd_label">syllogism</span></dt><dd><span lang="en">each list item is part of an argument consisting of two or more propositions and a final conclusion derived from them.</span></dd></dl></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>Previous versions of these Guidelines recommended the use of <span class="att">type</span> on <a class="link_ref" href="#TEI.list" title="<list>"><list></a> to encode the rendering or appearance of a list (whether it was bulleted, numbered, etc.). The current recommendation is to use the <span class="att">rend</span> or <span class="att">style</span> attributes for these aspects of a list, while using <span class="att">type</span> for the more appropriate task of characterizing the nature of the content of a list.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>The formal syntax of the element declarations allows <span class="gi"><label></span> tags to be omitted from lists tagged <span class="tag"><list type="gloss"></span>; this is however a semantic error.</p></td></tr></table></div></td></tr></table></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.listLike" title="model.listLike">model.listLike</a> </div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.revisionDesc" title="<revisionDesc>">revisionDesc</a> <a class="link_odd_elementSpec" href="#TEI.sourceDesc" title="<sourceDesc>">sourceDesc</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.body" title="<body>">body</a> <a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a></span></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Note</span></td><td class="wovenodd-col2"><p>May contain an optional heading followed by a series of items, or a series of label and item pairs, the latter being optionally preceded by one or two specialized headings.</p></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e11588" class="pre egXML_valid"><span class="element"><list <span class="attribute">rend</span>="<span class="attributevalue">numbered</span>"></span>
<span class="element"><item></span>a butcher<span class="element"></item></span>
<span class="element"><item></span>a baker<span class="element"></item></span>
<span class="element"><item></span>a candlestick maker, with
<span class="element"><list <span class="attribute">rend</span>="<span class="attributevalue">bulleted</span>"></span>
<span class="element"><item></span>rings on his fingers<span class="element"></item></span>
<span class="element"><item></span>bells on his toes<span class="element"></item></span>
<span class="element"></list></span>
<span class="element"></item></span>
<span class="element"></list></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e11606" class="pre egXML_valid"><span class="element"><list <span class="attribute">type</span>="<span class="attributevalue">syllogism</span>" <span class="attribute">rend</span>="<span class="attributevalue">bulleted</span>"></span>
<span class="element"><item></span>All Cretans are liars.<span class="element"></item></span>
<span class="element"><item></span>Epimenides is a Cretan.<span class="element"></item></span>
<span class="element"><item></span>ERGO Epimenides is a liar.<span class="element"></item></span>
<span class="element"></list></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e11619" class="pre egXML_valid"><span class="element"><list <span class="attribute">type</span>="<span class="attributevalue">litany</span>" <span class="attribute">rend</span>="<span class="attributevalue">simple</span>"></span>
<span class="element"><item></span>God save us from drought.<span class="element"></item></span>
<span class="element"><item></span>God save us from pestilence.<span class="element"></item></span>
<span class="element"><item></span>God save us from wickedness in high places.<span class="element"></item></span>
<span class="element"><item></span>Praise be to God.<span class="element"></item></span>
<span class="element"></list></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2">The following example treats the short numbered clauses of Anglo-Saxon legal codes as lists of items. The text is from an ordinance of King Athelstan (924–939):<div id="index.xml-egXML-d30e11635" class="pre egXML_valid"><span class="element"><div1 <span class="attribute">type</span>="<span class="attributevalue">section</span>"></span>
<span class="element"><head></span>Athelstan's Ordinance<span class="element"></head></span>
<span class="element"><list <span class="attribute">rend</span>="<span class="attributevalue">numbered</span>"></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">1</span>"></span>Concerning thieves. First, that no thief is to be spared who is caught with
the stolen goods, [if he is] over twelve years and [if the value of the goods is] over
eightpence.
<span class="element"><list <span class="attribute">rend</span>="<span class="attributevalue">numbered</span>"></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">1.1</span>"></span>And if anyone does spare one, he is to pay for the thief with his
wergild — and the thief is to be no nearer a settlement on that account — or to
clear himself by an oath of that amount.<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">1.2</span>"></span>If, however, he [the thief] wishes to defend himself or to escape, he is
not to be spared [whether younger or older than twelve].<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">1.3</span>"></span>If a thief is put into prison, he is to be in prison 40 days, and he may
then be redeemed with 120 shillings; and the kindred are to stand surety for him
that he will desist for ever.<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">1.4</span>"></span>And if he steals after that, they are to pay for him with his wergild,
or to bring him back there.<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">1.5</span>"></span>And if he steals after that, they are to pay for him with his wergild,
whether to the king or to him to whom it rightly belongs; and everyone of those who
supported him is to pay 120 shillings to the king as a fine.<span class="element"></item></span>
<span class="element"></list></span>
<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">2</span>"></span>Concerning lordless men. And we pronounced about these lordless men, from whom
no justice can be obtained, that one should order their kindred to fetch back such a
person to justice and to find him a lord in public meeting.
<span class="element"><list <span class="attribute">rend</span>="<span class="attributevalue">numbered</span>"></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">2.1</span>"></span>And if they then will not, or cannot, produce him on that appointed day,
he is then to be a fugitive afterwards, and he who encounters him is to strike him
down as a thief.<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">2.2</span>"></span>And he who harbours him after that, is to pay for him with his wergild
or to clear himself by an oath of that amount.<span class="element"></item></span>
<span class="element"></list></span>
<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">3</span>"></span>Concerning the refusal of justice. The lord who refuses justice and upholds
his guilty man, so that the king is appealed to, is to repay the value of the goods and
120 shillings to the king; and he who appeals to the king before he demands justice as
often as he ought, is to pay the same fine as the other would have done, if he had
refused him justice.
<span class="element"><list <span class="attribute">rend</span>="<span class="attributevalue">numbered</span>"></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">3.1</span>"></span>And the lord who is an accessory to a theft by his slave, and it becomes
known about him, is to forfeit the slave and be liable to his wergild on the first
occasionp if he does it more often, he is to be liable to pay all that he owns.<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">3.2</span>"></span>And likewise any of the king's treasurers or of our reeves, who has been
an accessory of thieves who have committed theft, is to liable to the same.<span class="element"></item></span>
<span class="element"></list></span>
<span class="element"></item></span>
<span class="element"><item <span class="attribute">n</span>="<span class="attributevalue">4</span>"></span>Concerning treachery to a lord. And we have pronounced concerning treachery to
a lord, that he [who is accused] is to forfeit his life if he cannot deny it or is
afterwards convicted at the three-fold ordeal.<span class="element"></item></span>
<span class="element"></list></span>
<span class="element"></div1></span></div>Note that nested lists have been used so the tagging mirrors the structure indicated by the two-level numbering of the clauses. The clauses could have been treated as a one-level list with irregular numbering, if desired.</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2"><div id="index.xml-egXML-d30e11676" class="pre egXML_valid"><span class="element"><p></span>These decrees, most blessed Pope Hadrian, we propounded in the public council ... and they
confirmed them in our hand in your stead with the sign of the Holy Cross, and afterwards
inscribed with a careful pen on the paper of this page, affixing thus the sign of the Holy
Cross.
<span class="element"><list <span class="attribute">rend</span>="<span class="attributevalue">simple</span>"></span>
<span class="element"><item></span>I, Eanbald, by the grace of God archbishop of the holy church of York, have
subscribed to the pious and catholic validity of this document with the sign of the Holy
Cross.<span class="element"></item></span>
<span class="element"><item></span>I, Ælfwold, king of the people across the Humber, consenting have subscribed with
the sign of the Holy Cross.<span class="element"></item></span>
<span class="element"><item></span>I, Tilberht, prelate of the church of Hexham, rejoicing have subscribed with the
sign of the Holy Cross.<span class="element"></item></span>
<span class="element"><item></span>I, Higbald, bishop of the church of Lindisfarne, obeying have subscribed with the
sign of the Holy Cross.<span class="element"></item></span>
<span class="element"><item></span>I, Ethelbert, bishop of Candida Casa, suppliant, have subscribed with thef sign of
the Holy Cross.<span class="element"></item></span>
<span class="element"><item></span>I, Ealdwulf, bishop of the church of Mayo, have subscribed with devout will.<span class="element"></item></span>
<span class="element"><item></span>I, Æthelwine, bishop, have subscribed through delegates.<span class="element"></item></span>
<span class="element"><item></span>I, Sicga, patrician, have subscribed with serene mind with the sign of the Holy
Cross.<span class="element"></item></span>
<span class="element"></list></span>
<span class="element"></p></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<sch:rule context="tei:list[@type='gloss']">
<sch:assert test="tei:label">The content of a "gloss" list should include a sequence of one or more pairs of a label element followed by an item element</sch:assert>
</sch:rule></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<sequence>
<alternate minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.divTop"/>
<classRef key="model.global"/>
</alternate>
<alternate>
<sequence minOccurs="1"
maxOccurs="unbounded">
<elementRef key="item"/>
<classRef key="model.global"
minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<sequence>
<elementRef key="headLabel"
minOccurs="0"/>
<elementRef key="headItem"
minOccurs="0"/>
<sequence minOccurs="1"
maxOccurs="unbounded">
<elementRef key="label"/>
<classRef key="model.global"
minOccurs="0" maxOccurs="unbounded"/>
<elementRef key="item"/>
<classRef key="model.global"
minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</sequence>
</alternate>
<sequence minOccurs="0"
maxOccurs="unbounded">
<classRef key="model.divBottom"/>
<classRef key="model.global"
minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</sequence>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element list
{
<a class="link_ref" href="#TEI.att.global" title="att.global">att.global.attributes</a>,
<a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed.attribute.subtype</a>,
attribute type
{
"gloss" | "index" | "instructions" | "litany" | "syllogism"
}?,
(
( <a class="link_ref" href="#TEI.model.divTop" title="model.divTop">model.divTop</a> | <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a> )*,
(
( <a class="link_ref" href="#TEI.item" title="<item>">item</a>, <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>* )+
| (
headLabel?,
headItem?,
( label, <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>*, <a class="link_ref" href="#TEI.item" title="<item>">item</a>, <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>* )+
)
),
( <a class="link_ref" href="#TEI.model.divBottom" title="model.divBottom">model.divBottom</a>, <a class="link_ref" href="#TEI.model.global" title="model.global">model.global</a>* )*
)
}</pre></td></tr></table></div></div><div class="refdoc" id="TEI.note"><h4><span class="headingNumber">2.1.32. </span><span class="head"><note></span></h4><div class="table"><table class="wovenodd"><tr><td colspan="2" class="wovenodd-col2"><span class="label"><note> </span><span lang="en">contains a note or annotation.</span> [<a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#CONONO">3.8.1. Notes and Simple Annotation</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD27">2.2.6. The Notes Statement</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICON">3.11.2.8. Notes and Statement of Language</a> <a class="link_ref" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html#DITPNO">9.3.5.4. Notes within Entries</a>]</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Module</span></td><td class="wovenodd-col2">core</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Attributes</span></td><td class="wovenodd-col2"><span lang="en">Attributes </span><a class="link_ref" href="#TEI.att.global" title="att.global">att.global</a> (<span class="attribute">@xml:id</span>, <span class="attribute">@n</span>, <span class="attribute">@xml:lang</span>) (<a class="link_ref" href="#TEI.att.global.rendition" title="att.global.rendition">att.global.rendition</a> (<span class="attribute">@rend</span>)) (<a class="link_ref" href="#TEI.att.global.linking" title="att.global.linking">att.global.linking</a> (<span class="attribute">@corresp</span>)) (<a class="link_ref" href="#TEI.att.global.facs" title="att.global.facs">att.global.facs</a> (<span class="attribute">@facs</span>)) (<a class="link_ref" href="#TEI.att.global.responsibility" title="att.global.responsibility">att.global.responsibility</a> (<span class="attribute">@cert</span>, <span class="attribute">@resp</span>)) <a class="link_ref" href="#TEI.att.placement" title="att.placement">att.placement</a> (<span class="attribute">@place</span>) <a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a> (<span class="unusedattribute">type</span>, @subtype) <div class="table"><table class="attList"><tr><td class="odd_label">type</td><td class="odd_value"><span lang="en">characterizes the element in some sense, using any convenient classification scheme or typology.</span><div class="table"><table class="attDef"><tr><td class="odd_label"><span lang="en" class="label">Derived from</span></td><td class="odd_value"><a class="link_ref" href="#TEI.att.typed" title="att.typed">att.typed</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Status</span></td><td class="odd_value"><span lang="en">Optional</span></td></tr><tr><td class="odd_label"><span lang="en" class="label">Datatype</span></td><td class="odd_value"><a class="link_ref" href="#TEI.teidata.enumerated" title="teidata.enumerated">teidata.enumerated</a></td></tr><tr><td class="odd_label"><span lang="en" class="label">Suggested values include:</span></td><td class="odd_value"><dl class="valList"><dt><span class="odd_label">register</span></dt><dd><span>The note is from the register</span></dd><dt><span class="odd_label">arber</span></dt><dd><span>The note is provided by Arber</span></dd><dt><span class="odd_label">editorial</span></dt><dd><span>The note is editorial and provided by the project</span></dd><dt><span class="odd_label">status</span></dt><dd><span>The note is about the status of an entry</span></dd><dt><span class="odd_label">other</span></dt><dd><span>The note is some other type of note</span></dd></dl></td></tr></table></div></td></tr></table></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Member of</span></td><td class="wovenodd-col2"><div class="parent"><a class="link_odd_classSpec" href="#TEI.model.noteLike" title="model.noteLike">model.noteLike</a></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Contained by</span></td><td class="wovenodd-col2"><div class="parent"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.head" title="<head>">head</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.item" title="<item>">item</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.resp" title="<resp>">resp</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.change" title="<change>">change</a> <a class="link_odd_elementSpec" href="#TEI.distributor" title="<distributor>">distributor</a> <a class="link_odd_elementSpec" href="#TEI.funder" title="<funder>">funder</a> <a class="link_odd_elementSpec" href="#TEI.licence" title="<licence>">licence</a> <a class="link_odd_elementSpec" href="#TEI.principal" title="<principal>">principal</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">textstructure: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.body" title="<body>">body</a> <a class="link_odd_elementSpec" href="#TEI.div" title="<div>">div</a> <a class="link_odd_elementSpec" href="#TEI.text" title="<text>">text</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div></div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">May contain</span></td><td class="wovenodd-col2"><div class="specChildren"><div class="specChild"><span class="specChildModule">core: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.abbr" title="<abbr>">abbr</a> <a class="link_odd_elementSpec" href="#TEI.add" title="<add>">add</a> <a class="link_odd_elementSpec" href="#TEI.choice" title="<choice>">choice</a> <a class="link_odd_elementSpec" href="#TEI.corr" title="<corr>">corr</a> <a class="link_odd_elementSpec" href="#TEI.date" title="<date>">date</a> <a class="link_odd_elementSpec" href="#TEI.desc" title="<desc>">desc</a> <a class="link_odd_elementSpec" href="#TEI.expan" title="<expan>">expan</a> <a class="link_odd_elementSpec" href="#TEI.foreign" title="<foreign>">foreign</a> <a class="link_odd_elementSpec" href="#TEI.gap" title="<gap>">gap</a> <a class="link_odd_elementSpec" href="#TEI.hi" title="<hi>">hi</a> <a class="link_odd_elementSpec" href="#TEI.lb" title="<lb>">lb</a> <a class="link_odd_elementSpec" href="#TEI.list" title="<list>">list</a> <a class="link_odd_elementSpec" href="#TEI.note" title="<note>">note</a> <a class="link_odd_elementSpec" href="#TEI.num" title="<num>">num</a> <a class="link_odd_elementSpec" href="#TEI.orig" title="<orig>">orig</a> <a class="link_odd_elementSpec" href="#TEI.p" title="<p>">p</a> <a class="link_odd_elementSpec" href="#TEI.pb" title="<pb>">pb</a> <a class="link_odd_elementSpec" href="#TEI.reg" title="<reg>">reg</a> <a class="link_odd_elementSpec" href="#TEI.sic" title="<sic>">sic</a> <a class="link_odd_elementSpec" href="#TEI.title" title="<title>">title</a> <a class="link_odd_elementSpec" href="#TEI.unclear" title="<unclear>">unclear</a></span></div><div class="specChild"><span class="specChildModule">header: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.idno" title="<idno>">idno</a></span></div><div class="specChild"><span class="specChildModule">linking: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.ab" title="<ab>">ab</a> <a class="link_odd_elementSpec" href="#TEI.anchor" title="<anchor>">anchor</a> <a class="link_odd_elementSpec" href="#TEI.seg" title="<seg>">seg</a></span></div><div class="specChild"><span class="specChildModule">namesdates: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.forename" title="<forename>">forename</a> <a class="link_odd_elementSpec" href="#TEI.orgName" title="<orgName>">orgName</a> <a class="link_odd_elementSpec" href="#TEI.persName" title="<persName>">persName</a> <a class="link_odd_elementSpec" href="#TEI.placeName" title="<placeName>">placeName</a> <a class="link_odd_elementSpec" href="#TEI.surname" title="<surname>">surname</a></span></div><div class="specChild"><span class="specChildModule">transcr: </span><span class="specChildElements"><a class="link_odd_elementSpec" href="#TEI.am" title="<am>">am</a> <a class="link_odd_elementSpec" href="#TEI.ex" title="<ex>">ex</a> <a class="link_odd_elementSpec" href="#TEI.fw" title="<fw>">fw</a> <a class="link_odd_elementSpec" href="#TEI.space" title="<space>">space</a> <a class="link_odd_elementSpec" href="#TEI.supplied" title="<supplied>">supplied</a></span></div><div class="specChild">character data</div></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2">In the following example, the translator has supplied a footnote containing an explanation of the term translated as "painterly": <div id="index.xml-egXML-d30e12268" class="pre egXML_valid">And yet it is not only
in the great line of Italian renaissance art, but even in the
painterly <span class="element"><note <span class="attribute">place</span>="<span class="attributevalue">bottom</span>" <span class="attribute">type</span>="<span class="attributevalue">gloss</span>"
<span class="attribute">resp</span>="<span class="attributevalue">#MDMH</span>"></span>
<span class="element"><term <span class="attribute">xml:lang</span>="<span class="attributevalue">de</span>"></span>Malerisch<span class="element"></term></span>. This word has, in the German, two
distinct meanings, one objective, a quality residing in the object,
the other subjective, a mode of apprehension and creation. To avoid
confusion, they have been distinguished in English as
<span class="element"><mentioned></span>picturesque<span class="element"></mentioned></span> and
<span class="element"><mentioned></span>painterly<span class="element"></mentioned></span> respectively.
<span class="element"></note></span> style of the
Dutch genre painters of the seventeenth century that drapery has this
psychological significance. </div>For this example to be valid, the code <span class="ident">MDMH</span> must be defined elsewhere, for example by means of a responsibility statement in the associated TEI header:<div id="index.xml-egXML-d30e12285" class="pre egXML_valid"><span class="element"><respStmt <span class="attribute">xml:id</span>="<span class="attributevalue">MDMH</span>"></span>
<span class="element"><resp></span>translation from German to English<span class="element"></resp></span>
<span class="element"><name></span>Hottinger, Marie Donald Mackie<span class="element"></name></span>
<span class="element"></respStmt></span></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Example</span></td><td class="wovenodd-col2">The global <span class="att">n</span> attribute may be used to supply the symbol or number used to mark the note's point of attachment in the source text, as in the following example:<div id="index.xml-egXML-d30e12300" class="pre egXML_valid">Mevorakh b. Saadya's mother, the matriarch of the
family during the second half of the eleventh century, <span class="element"><note <span class="attribute">n</span>="<span class="attributevalue">126</span>" <span class="attribute">anchored</span>="<span class="attributevalue">true</span>"></span> The
alleged mention of Judah Nagid's mother in a letter from 1071 is, in fact, a reference to
Judah's children; cf. above, nn. 111 and 54. <span class="element"></note></span> is well known from Geniza documents
published by Jacob Mann.</div>However, if notes are numbered in sequence and their numbering can be reconstructed automatically by processing software, it may well be considered unnecessary to record the note numbers.</td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schematron</span></td><td class="wovenodd-col2"><div class="pre">
<s:report test="parent::tei:ab[@type='metadata'] and @type='status' and not(@subtype='other'
or @subtype='annotated' or @subtype='cancelled' or @subtype='conditional'
or @subtype='entered' or @subtype='incomplete' or @subtype='notPrinted'
or @subtype='reassigned' or @subtype='shared' or @subtype='stock'
or @subtype='unknown' )">If a status note appears inside a metadata block it must have a subtype attribute of 'annotated', 'cancelled', 'conditional', 'entered', 'incomplete', 'notPrinted', 'reassigned', 'shared', 'stock', 'unknown' or 'other'. Once edited an entry should not have an 'unknown' status.</s:report></div></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Content model</span></td><td class="wovenodd-col2"><pre class="pre_eg cdata">
<content>
<macroRef key="macro.specialPara"/>
</content>
</pre></td></tr><tr><td class="wovenodd-col1"><span lang="en" class="label">Schema Declaration</span></td><td class="wovenodd-col2"><pre class="pre_eg">
element note