-
Notifications
You must be signed in to change notification settings - Fork 1
/
mecProceedings.odd
executable file
·1708 lines (1327 loc) · 71.6 KB
/
mecProceedings.odd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_odds.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_odds.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<!-- This file contains a customization of MEI for papers submitted for the proceedings of the Music Encoding Conference. -->
<!-- To parse instances conforming to this schema using oXygen, make sure "Check ID/IDREF" is *unchecked* in
Options > Preferences > XML > XML Parser > RELAX NG -->
<TEI xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://www.tei-c.org/ns/1.0"
xmlns:math="http://exslt.org/math" xmlns:ex="http://www.music-encoding.org/ns/mei/Examples">
<teiHeader>
<fileDesc>
<titleStmt>
<title>Music Encoding Initiative Guidelines: <title type="sub">All AnyStart
Customization</title></title>
<respStmt>
<resp>Authored by</resp>
<name xml:id="PR">Perry Roland</name>
</respStmt>
</titleStmt>
<publicationStmt>
<p/>
</publicationStmt>
<sourceDesc>
<p/>
</sourceDesc>
</fileDesc>
<revisionDesc>
<change n="1" when="2016-12-02" who="#PR">
<desc>Creation of the initial ODD.</desc>
</change>
</revisionDesc>
</teiHeader>
<text>
<front>
<divGen type="toc"/>
</front>
<body>
<schemaSpec ident="mei" ns="http://www.music-encoding.org/ns/mei" prefix="mei_"
start="confSubmission">
<!-- Declare MEI, XLink, and TEI Example namespaces for use in Schematron -->
<constraintSpec ident="set_ns" scheme="isoschematron" mode="add">
<constraint>
<sch:ns xmlns:sch="http://purl.oclc.org/dsdl/schematron" prefix="mei"
uri="http://www.music-encoding.org/ns/mei"/>
<sch:ns xmlns:sch="http://purl.oclc.org/dsdl/schematron" prefix="xlink"
uri="http://www.w3.org/1999/xlink"/>
<sch:ns xmlns="http://purl.oclc.org/dsdl/schematron" prefix="ex"
uri="http://www.music-encoding.org/ns/mei/Examples"/>
</constraint>
</constraintSpec>
<!-- Include modules -->
<moduleRef key="MEI"/>
<moduleRef key="MEI.shared"/>
<moduleRef key="MEI.figtable"/>
<moduleRef key="MEI.namesdates"/>
<moduleRef key="MEI.ptrref"/>
<moduleRef key="MEI.text"/>
<moduleRef key="MEI.confPaper"/>
<!-- ******************************************************************** -->
<!-- CONFORMING CHANGES -->
<elementSpec ident="annot" module="MEI.shared" mode="replace">
<desc>(annotation) – Provides a short statement explaining the text or indicating the
basis for an assertion.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.lang"/>
<memberOf key="model.annotLike"/>
</classes>
<content>
<rng:zeroOrMore>
<rng:choice>
<rng:text/>
<rng:ref name="model.textPhraseLike"/>
</rng:choice>
</rng:zeroOrMore>
</content>
<constraintSpec ident="annot_content_constraint" scheme="isoschematron">
<constraint>
<sch:rule context="mei:annot">
<sch:assert role="warning"
test="substring(normalize-space(.), string-length(normalize-space(.))) eq '.'"
>Notes should end with a period.</sch:assert>
</sch:rule>
</constraint>
</constraintSpec>
</elementSpec>
<elementSpec ident="biblList" module="MEI.shared" mode="replace">
<desc>List of bibliographic references.</desc>
<classes>
<memberOf key="att.common"/>
</classes>
<content>
<rng:ref name="model.headLike"/>
<rng:oneOrMore>
<rng:ref name="model.biblLike"/>
</rng:oneOrMore>
</content>
<constraintSpec ident="check_biblListHeadContent" scheme="isoschematron">
<constraint>
<sch:rule context="mei:biblList">
<sch:assert test="matches(mei:head, '^WORKS CITED$', 'i')">The head element must
match "WORKS CITED" – no other characters, spaces, or punctuation signs are
allowed.</sch:assert>
</sch:rule>
</constraint>
</constraintSpec>
</elementSpec>
<elementSpec ident="bibl" module="MEI.shared" mode="replace">
<desc>(bibliographic reference) – Provides a loosely-structured bibliographic citation in
which the sub-components may or may not be explicitly marked.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.bibl"/>
<memberOf key="att.lang"/>
<memberOf key="att.pointing"/>
<memberOf key="model.biblLike"/>
</classes>
<content>
<rng:zeroOrMore>
<rng:choice>
<rng:text/>
<rng:ref name="model.biblPart"/>
<rng:ref name="model.imprintPart"/>
<rng:ref name="model.textPhraseLike"/>
</rng:choice>
</rng:zeroOrMore>
</content>
<constraintSpec ident="check_biblContent" scheme="isoschematron">
<constraint>
<sch:rule context="mei:confSubmission/mei:biblList/mei:bibl">
<sch:assert test="@xml:id">The bibl element must have an @xml:id
attribute.</sch:assert>
<sch:assert test="string-length(normalize-space(.)) > 0">The bibl element must
have textual content.</sch:assert>
</sch:rule>
<sch:rule context="mei:quote/mei:bibl">
<sch:assert test="@target">The bibl element must have a @target
attribute.</sch:assert>
</sch:rule>
<!--<sch:rule context="mei:bibl[@target]">
<sch:assert test="@target=//mei:confSubmission/mei:biblList//mei:bibl/@xml:id">The
value in @target must match the @xml:id attribute of a bibl element in the "Works
Cited" section.</sch:assert>
</sch:rule>
<sch:rule context="mei:bibl[mei:title[@level eq 'j']]">
<sch:assert test="mei:title[@level eq 'a']">When a journal title is present, an
article title must also be present.</sch:assert>
</sch:rule>
<sch:rule context="mei:confSubmission/mei:biblList/mei:bibl[mei:*]">
<sch:assert test="mei:imprint">When other markup is present, an imprint element must
also be present.</sch:assert>
<sch:assert test="mei:author">When other markup is present, an author element must
also be present.</sch:assert>
</sch:rule>-->
</constraint>
</constraintSpec>
</elementSpec>
<elementSpec ident="biblScope" module="MEI.shared" mode="replace">
<desc>(scope of citation) – Defines the scope of a bibliographic reference, for example as
a list of page numbers, or a named subdivision of a larger work.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.bibl"/>
<memberOf key="att.lang"/>
<memberOf key="att.measurement"/>
<memberOf key="model.biblPart"/>
</classes>
<content>
<rng:zeroOrMore>
<rng:choice>
<rng:text/>
<rng:ref name="model.textPhraseLike.limited"/>
</rng:choice>
</rng:zeroOrMore>
</content>
<attList>
<attDef ident="from" usage="opt">
<datatype>
<rng:data type="token"/>
</datatype>
</attDef>
<attDef ident="to" usage="opt">
<datatype>
<rng:data type="token"/>
</datatype>
</attDef>
</attList>
</elementSpec>
<elementSpec ident="caption" module="MEI.shared" mode="replace">
<desc>A label which accompanies an illustration or a table.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.lang"/>
<memberOf key="model.captionLike"/>
</classes>
<content>
<rng:zeroOrMore>
<rng:choice>
<rng:text/>
<rng:ref name="bibl"/>
<rng:ref name="rend"/>
<rng:ref name="term"/>
</rng:choice>
</rng:zeroOrMore>
</content>
<constraintSpec ident="check_captionContent" scheme="isoschematron">
<constraint>
<sch:rule
context="mei:*[local-name() eq 'fig' or local-name() eq 'table']/mei:caption">
<sch:assert role="warning"
test="not(matches(normalize-space(.), '^(Fig|Tab)[^\s]*\s*[0-9\p{P}]+', 'i'))"
>Figures and tables do not require a label in the form of "Figure/Table 1.",
etc.</sch:assert>
<sch:assert role="warning" test="node() or text()">Caption should have
content.</sch:assert>
</sch:rule>
</constraint>
</constraintSpec>
</elementSpec>
<elementSpec ident="div" module="MEI.shared" mode="replace">
<desc>(division) – Major structural division of text, such as a preface, chapter or
section.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.lang"/>
<memberOf key="model.divLike"/>
</classes>
<content>
<rng:ref name="model.headLike"/>
<rng:oneOrMore>
<rng:choice>
<rng:ref name="model.divLike"/>
<rng:ref name="model.textComponentLike"/>
</rng:choice>
<rng:zeroOrMore>
<rng:ref name="model.milestoneLike.text"/>
</rng:zeroOrMore>
</rng:oneOrMore>
</content>
</elementSpec>
<elementSpec ident="fig" module="MEI.figtable" mode="replace">
<desc>(figure) – Groups elements representing or containing graphic information such as an
illustration or figure.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="model.figureLike"/>
</classes>
<content>
<rng:ref name="model.captionLike"/>
<rng:choice>
<rng:ref name="model.graphicLike"/>
<rng:ref name="ex_egXML"/>
<rng:ref name="programCode"/>
</rng:choice>
</content>
</elementSpec>
<elementSpec ident="graphic" module="MEI.figtable" mode="replace">
<desc>Indicates the location of an inline graphic.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.dimensions"/>
<memberOf key="att.internetMedia"/>
<memberOf key="att.measurement"/>
<memberOf key="att.startId"/>
<memberOf key="att.visualOffset"/>
<memberOf key="model.graphicLike"/>
</classes>
<content>
<rng:zeroOrMore>
<rng:ref name="zone"/>
</rng:zeroOrMore>
</content>
<constraintSpec ident="graphic_attributes" scheme="isoschematron">
<constraint>
<sch:rule context="mei:zone/mei:graphic">
<sch:assert role="warning" test="count(mei:*) = 0">Graphic child of zone should not
have children.</sch:assert>
</sch:rule>
<sch:rule context="mei:symbolDef/mei:graphic">
<sch:assert role="warning" test="@startid or (@ulx and @uly)">Graphic should have
either a startid attribute or ulx and uly attributes.</sch:assert>
</sch:rule>
<sch:rule context="mei:graphic[not(ancestor::mei:symbolDef or ancestor::mei:zone)]">
<sch:assert role="warning" test="not(@ulx or @uly)">Graphic should not have @ulx or
@uly attributes.</sch:assert>
<sch:assert role="warning" test="not(@ho or @vo)">Graphic should not have @ho or @vo
attributes.</sch:assert>
</sch:rule>
</constraint>
</constraintSpec>
<constraintSpec ident="check_graphicTarget" scheme="isoschematron">
<constraint>
<sch:rule context="mei:graphic[not(ancestor::ex:egXML)]/@target">
<sch:assert test="not(normalize-space(.) eq '')">@target attribute must have
content.</sch:assert>
</sch:rule>
</constraint>
</constraintSpec>
<attList>
<attDef ident="actuate" ns="http://www.w3.org/1999/xlink" usage="opt">
<!--<attDef ident="xlink:actuate" usage="opt">-->
<desc>Defines whether a link occurs automatically or must be requested by the
user.</desc>
<valList type="closed">
<valItem ident="onLoad">
<desc>Load the target resource(s) immediately.</desc>
</valItem>
<valItem ident="onRequest">
<desc>Load the target resource(s) upon user request.</desc>
</valItem>
<valItem ident="none">
<desc>Do not permit loading of the target resource(s).</desc>
</valItem>
<valItem ident="other">
<desc>Behavior other than allowed by the other values of this attribute.</desc>
</valItem>
</valList>
</attDef>
<attDef ident="role" ns="http://www.w3.org/1999/xlink" usage="opt">
<!--<attDef ident="xlink:role" usage="opt">-->
<desc>Characterization of the relationship between resources. The value of the role
attribute must be a URI.</desc>
<datatype>
<rng:ref name="data.URI"/>
</datatype>
</attDef>
<attDef ident="show" ns="http://www.w3.org/1999/xlink" usage="opt">
<!--<attDef ident="xlink:show" usage="opt">-->
<desc>Defines how a remote resource is rendered.</desc>
<valList type="closed">
<valItem ident="new">
<desc>Open in a new window.</desc>
</valItem>
<valItem ident="replace">
<desc>Load the referenced resource in the same window.</desc>
</valItem>
<valItem ident="embed">
<desc>Embed the referenced resource at the point of the link.</desc>
</valItem>
<valItem ident="none">
<desc>Do not permit traversal to the referenced resource.</desc>
</valItem>
<valItem ident="other">
<desc>Behavior other than permitted by the other values of this attribute.</desc>
</valItem>
</valList>
</attDef>
<attDef ident="target" usage="req">
<desc>Allows the use of one or more previously-undeclared URIs to identify passive
participants in a relationship; that is, the entities pointed "to".</desc>
<datatype maxOccurs="1">
<rng:ref name="data.URI"/>
</datatype>
</attDef>
<attDef ident="targettype" usage="opt">
<desc>Characterization of target resource(s) using any convenient classification
scheme or typology.</desc>
<datatype>
<rng:data type="NMTOKEN"/>
</datatype>
</attDef>
<attDef ident="ulx" usage="opt">
<desc>Indicates the upper-left corner x coordinate.</desc>
<datatype>
<rng:data type="nonNegativeInteger"/>
</datatype>
</attDef>
<attDef ident="uly" usage="opt">
<desc>Indicates the upper-left corner y coordinate.</desc>
<datatype>
<rng:data type="nonNegativeInteger"/>
</datatype>
</attDef>
</attList>
</elementSpec>
<elementSpec ident="head" module="MEI.shared" mode="replace">
<desc>(heading) – Contains any heading, for example, the title of a section of text, or
the heading of a list.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.lang"/>
<memberOf key="model.headLike"/>
</classes>
<content>
<rng:zeroOrMore>
<rng:choice>
<rng:text/>
<rng:ref name="model.textPhraseLike"/>
</rng:choice>
</rng:zeroOrMore>
</content>
<constraintSpec ident="check_headContent" scheme="isoschematron">
<constraint>
<sch:rule context="mei:head">
<sch:assert test="text() or descendant::mei:*">The head element must have
content.</sch:assert>
</sch:rule>
</constraint>
</constraintSpec>
</elementSpec>
<elementSpec ident="ptr" module="MEI.ptrref" mode="replace">
<desc>(pointer) – Defines a pointer to another location, using only attributes to describe
the destination.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.targetEval"/>
<memberOf key="model.locrefLike"/>
</classes>
<content>
<rng:empty/>
</content>
<constraintSpec ident="check_ptrTarget" scheme="isoschematron">
<constraint>
<sch:rule context="mei:ptr[not(ancestor::ex:egXML)]/@target">
<sch:assert test="every $i in tokenize(., '\s+') satisfies $i=//mei:bibl/@xml:id"
>The value in @target must correspond to the @xml:id attribute of a bibl
element.</sch:assert>
</sch:rule>
</constraint>
</constraintSpec>
<attList>
<attDef ident="actuate" ns="http://www.w3.org/1999/xlink" usage="opt">
<!--<attDef ident="xlink:actuate" usage="opt">-->
<desc>Defines whether a link occurs automatically or must be requested by the
user.</desc>
<valList type="closed">
<valItem ident="onLoad">
<desc>Load the target resource(s) immediately.</desc>
</valItem>
<valItem ident="onRequest">
<desc>Load the target resource(s) upon user request.</desc>
</valItem>
<valItem ident="none">
<desc>Do not permit loading of the target resource(s).</desc>
</valItem>
<valItem ident="other">
<desc>Behavior other than allowed by the other values of this attribute.</desc>
</valItem>
</valList>
</attDef>
<attDef ident="role" ns="http://www.w3.org/1999/xlink" usage="opt">
<!--<attDef ident="xlink:role" usage="opt">-->
<desc>Characterization of the relationship between resources. The value of the role
attribute must be a URI.</desc>
<datatype>
<rng:ref name="data.URI"/>
</datatype>
</attDef>
<attDef ident="show" ns="http://www.w3.org/1999/xlink" usage="opt">
<!--<attDef ident="xlink:show" usage="opt">-->
<desc>Defines how a remote resource is rendered.</desc>
<valList type="closed">
<valItem ident="new">
<desc>Open in a new window.</desc>
</valItem>
<valItem ident="replace">
<desc>Load the referenced resource in the same window.</desc>
</valItem>
<valItem ident="embed">
<desc>Embed the referenced resource at the point of the link.</desc>
</valItem>
<valItem ident="none">
<desc>Do not permit traversal to the referenced resource.</desc>
</valItem>
<valItem ident="other">
<desc>Behavior other than permitted by the other values of this attribute.</desc>
</valItem>
</valList>
</attDef>
<attDef ident="target" usage="req">
<desc>Allows the use of one or more previously-undeclared URIs to identify passive
participants in a relationship; that is, the entities pointed "to".</desc>
<datatype maxOccurs="unbounded">
<rng:ref name="data.URI"/>
</datatype>
</attDef>
<attDef ident="targettype" usage="opt">
<desc>Characterization of target resource(s) using any convenient classification
scheme or typology.</desc>
<datatype>
<rng:data type="NMTOKEN"/>
</datatype>
</attDef>
</attList>
</elementSpec>
<elementSpec ident="quote" module="MEI.text" mode="replace">
<desc>(quoted material) – Contains text attributed to an external source, normally set off
from the text by spacing or other typographic distinction.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.lang"/>
<memberOf key="model.quoteLike"/>
</classes>
<content>
<rng:zeroOrMore>
<rng:choice>
<rng:text/>
<rng:ref name="model.paracontentPart"/>
<rng:ref name="p"/>
</rng:choice>
</rng:zeroOrMore>
</content>
<constraintSpec ident="biblRequired" scheme="isoschematron">
<constraint>
<sch:rule context="mei:quote">
<sch:assert test="descendant::mei:bibl">A bibliographic reference is required for
quoted material.</sch:assert>
</sch:rule>
</constraint>
</constraintSpec>
<attList>
<attDef ident="block">
<desc>Indicates if the quotation is integrated into the flow of the text or interrupts
it.</desc>
<datatype>
<rng:ref name="data.BOOLEAN"/>
</datatype>
</attDef>
</attList>
</elementSpec>
<elementSpec ident="rend" module="MEI.shared" mode="replace">
<desc>(render) – A formatting element indicating special visual rendering, e.g., bold or
italicized, of a text word or phrase.</desc>
<classes>
<memberOf key="att.color"/>
<memberOf key="att.common"/>
<memberOf key="att.horizontalAlign"/>
<memberOf key="att.lang"/>
<memberOf key="att.whitespace"/>
<memberOf key="model.rendLike"/>
</classes>
<content>
<rng:zeroOrMore>
<rng:choice>
<rng:text/>
<rng:ref name="model.textPhraseLike"/>
<rng:ref name="model.editLike"/>
<rng:ref name="model.transcriptionLike"/>
</rng:choice>
</rng:zeroOrMore>
</content>
<attList>
<attDef ident="rend" usage="req">
<desc>Captures the appearance of the element's contents using MEI-defined
descriptors.</desc>
<datatype maxOccurs="unbounded">
<rng:ref name="data.TEXTRENDITION"/>
</datatype>
</attDef>
</attList>
</elementSpec>
<elementSpec ident="table" module="MEI.figtable" mode="replace">
<desc>Contains text displayed in tabular form.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.lang"/>
<memberOf key="model.tableLike"/>
</classes>
<content>
<rng:ref name="model.captionLike"/>
<rng:oneOrMore>
<rng:ref name="tr"/>
</rng:oneOrMore>
</content>
</elementSpec>
<elementSpec ident="term" module="MEI.shared" mode="add">
<desc>Indexing keyword or phrase.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.bibl"/>
<memberOf key="att.lang"/>
<memberOf key="model.textPhraseLike.limited"/>
</classes>
<content>
<rng:zeroOrMore>
<rng:choice>
<rng:text/>
<rng:ref name="term"/>
<rng:ref name="model.textPhraseLike.limited"/>
</rng:choice>
</rng:zeroOrMore>
</content>
</elementSpec>
<elementSpec ident="tr" module="MEI.figtable" mode="replace">
<desc>(table row) – A formatting element that contains one or more cells (intersection of
a row and a column) in a <table>.</desc>
<classes>
<memberOf key="att.common"/>
<memberOf key="att.lang"/>
</classes>
<content>
<rng:oneOrMore>
<rng:choice>
<rng:ref name="th"/>
<rng:ref name="td"/>
</rng:choice>
</rng:oneOrMore>
</content>
</elementSpec>
<classSpec ident="att.id" module="MEI.shared" type="atts" mode="replace">
<desc>Attributes that uniquely identify an element.</desc>
<attList>
<attDef ident="id" ns="http://www.w3.org/XML/1998/namespace" usage="opt">
<!--<attDef ident="xml:id" usage="opt">-->
<desc>Regularizes the naming of an element and thus facilitates building links between
it and other resources. Each id attribute within a document must have a unique
value.</desc>
<datatype>
<rng:data type="ID"/>
</datatype>
<constraintSpec ident="check_xmlID" scheme="isoschematron">
<constraint>
<sch:rule context="@xml:id">
<sch:assert test="not(normalize-space(.) eq '')">@xml:id attribute must have
content.</sch:assert>
</sch:rule>
</constraint>
</constraintSpec>
</attDef>
</attList>
</classSpec>
<classSpec ident="att.lang" module="MEI.shared" type="atts" mode="replace">
<desc>Language attributes common to text elements.</desc>
<attList>
<!--<attDef ident="lang" ns="http://www.w3.org/XML/1998/namespace" usage="opt">-->
<attDef ident="xml:lang">
<desc>Identifies the language of the element's content. The values for this attribute
are language 'tags' as defined in BCP 47. All language tags that make use of private
use sub-tags must be documented in a corresponding language element in the MEI
header whose id attribute is the same as the language tag's value.</desc>
<datatype>
<rng:data type="language"/>
</datatype>
</attDef>
</attList>
</classSpec>
<classSpec ident="att.pointing" module="MEI.shared" type="atts" mode="replace">
<desc>Attributes common to all pointing/linking elements.</desc>
<attList>
<attDef ident="target" usage="opt">
<desc>Allows the use of one or more previously-undeclared URIs to identify passive
participants in a relationship; that is, the entities pointed "to".</desc>
<datatype maxOccurs="unbounded">
<rng:ref name="data.URI"/>
</datatype>
</attDef>
<attDef ident="targettype" usage="opt">
<desc>Characterization of target resource(s) using any convenient classification
scheme or typology.</desc>
<datatype>
<rng:data type="NMTOKEN"/>
</datatype>
</attDef>
</attList>
</classSpec>
<classSpec ident="model.figureLike" module="MEI.figtable" type="model" mode="replace">
<desc>Groups elements representing or containing graphic information such as an
illustration or figure.</desc>
<classes>
<memberOf key="model.textPhraseLike.limited"/>
<memberOf key="model.textComponentLike"/>
</classes>
</classSpec>
<classSpec ident="att.accid.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.accid.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.accid.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.accid.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.accidental" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.accidental.performed" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.annot.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.annot.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.annot.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.annot.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.artic.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.artic.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.artic.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.artic.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.articulation" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.articulation.performed" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.augmentDots" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.authorized" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.barLine.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.barLine.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.barLine.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.barLine.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.barPlacement" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.beaming.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.bibl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.calendared" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.canonical" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.chord.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.chord.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.chord.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.chord.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.classCodeIdent" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.clef.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.clef.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.clef.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.clef.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.cleffing.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.cleffing.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.clefGrp.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.clefGrp.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.clefGrp.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.clefGrp.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.clefShape" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.color" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.coloration" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.controlEvent" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.coordinated" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.curvature" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.curveRend" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.custos.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.custos.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.custos.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.custos.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dataPointing" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.declaring" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dimensions" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dir.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dir.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dir.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dir.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.distances" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dot.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dot.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dot.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dot.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.duration.additive" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.duration.default" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.duration.musical" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.duration.performed" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.duration.ratio" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dynam.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dynam.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dynam.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.dynam.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.enclosingChars" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.ending.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.ending.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.ending.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.ending.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.endings" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.event" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.extender" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.f.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.f.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.f.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.f.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.fermataPresent" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.grpSym.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.grpSym.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.grpSym.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.grpSym.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.handIdent" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.height" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.horizontalAlign" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.instrumentIdent" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.joined" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.keyAccid.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.keyAccid.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.keyAccid.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.keyAccid.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.keySig.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.keySig.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.keySig.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.keySig.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.keySigDefault.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.keySigDefault.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.labels.addl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.layer.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.layer.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.layer.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.layer.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.layerDef.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.layerDef.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.layerDef.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.layerDef.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.layerIdent" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.line.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.line.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.line.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.line.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.lineLoc" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.lineRend" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.lineRend.base" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.lyricStyle" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.measure.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.measure.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.measure.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.measureNumbers" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.mediaBounds" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.medium" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.meiVersion" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.mensur.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.meterConformance" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.meterConformance.bar" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.meterSig.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.meterSig.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.meterSig.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.meterSig.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.meterSigDefault.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.meterSigDefault.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.mmTempo" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.multinumMeasures" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.notationStyle" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.note.anl" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.note.ges" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.note.log" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.note.vis" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.noteHeads" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.octave" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.octaveDefault" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.octaveDisplacement" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.oneLineStaff" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.optimization" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.origin.layerIdent" module="MEI.shared" type="atts" mode="delete"/>
<classSpec ident="att.origin.staffIdent" module="MEI.shared" type="atts" mode="delete"/>