relaton-bib 1.13.15 → 1.14.0

Sign up to get free protection for your applications and to get access to all the features.
data/grammars/isodoc.rng DELETED
@@ -1,2807 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!--
3
- instantiations of this grammar may replace leaf strings
4
- with more elaborated types; e.g. title (text) replaced with
5
- title-main, title-intro, title-part; type replaced with
6
- enum.
7
-
8
- some renaming at leaf nodes is permissible
9
-
10
- obligations can change both from optional to mandatory,
11
- and from mandatory to optional; optional elements may
12
- be omitted; freely positioned alternatives may be replaced
13
- with strict ordering
14
-
15
- DO NOT introduce a namespace here. We do not want a distinct namespace
16
- for these elements, and a distinct namespace for any grammar inheriting
17
- these elements; we just want one namespace for any child grammars
18
- of this.
19
- -->
20
- <grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
21
- <include href="reqt.rng"/>
22
- <!-- include "biblio.rnc" { } -->
23
- <include href="basicdoc.rng">
24
- <start>
25
- <ref name="standard-document"/>
26
- </start>
27
- <define name="doctype">
28
- <element name="doctype">
29
- <optional>
30
- <attribute name="abbreviation"/>
31
- </optional>
32
- <ref name="DocumentType"/>
33
- </element>
34
- </define>
35
- <define name="admonition">
36
- <element name="admonition">
37
- <attribute name="type">
38
- <ref name="AdmonitionType"/>
39
- </attribute>
40
- <optional>
41
- <attribute name="class"/>
42
- </optional>
43
- <attribute name="id">
44
- <data type="ID"/>
45
- </attribute>
46
- <optional>
47
- <attribute name="uri">
48
- <data type="anyURI"/>
49
- </attribute>
50
- </optional>
51
- <optional>
52
- <attribute name="coverpage">
53
- <data type="boolean"/>
54
- </attribute>
55
- </optional>
56
- <optional>
57
- <attribute name="notag">
58
- <data type="boolean"/>
59
- </attribute>
60
- </optional>
61
- <optional>
62
- <ref name="tname"/>
63
- </optional>
64
- <zeroOrMore>
65
- <ref name="paragraph-with-footnote"/>
66
- </zeroOrMore>
67
- <zeroOrMore>
68
- <ref name="note"/>
69
- </zeroOrMore>
70
- </element>
71
- </define>
72
- <define name="AdmonitionType">
73
- <choice>
74
- <value>warning</value>
75
- <value>note</value>
76
- <value>tip</value>
77
- <value>important</value>
78
- <value>caution</value>
79
- <value>statement</value>
80
- <value>editorial</value>
81
- </choice>
82
- </define>
83
- <define name="index">
84
- <element name="index">
85
- <optional>
86
- <attribute name="to">
87
- <data type="IDREF"/>
88
- </attribute>
89
- </optional>
90
- <element name="primary">
91
- <oneOrMore>
92
- <choice>
93
- <ref name="PureTextElement"/>
94
- <ref name="stem"/>
95
- </choice>
96
- </oneOrMore>
97
- </element>
98
- <optional>
99
- <element name="secondary">
100
- <oneOrMore>
101
- <choice>
102
- <ref name="PureTextElement"/>
103
- <ref name="stem"/>
104
- </choice>
105
- </oneOrMore>
106
- </element>
107
- </optional>
108
- <optional>
109
- <element name="tertiary">
110
- <oneOrMore>
111
- <choice>
112
- <ref name="PureTextElement"/>
113
- <ref name="stem"/>
114
- </choice>
115
- </oneOrMore>
116
- </element>
117
- </optional>
118
- </element>
119
- </define>
120
- <define name="bibitem">
121
- <element name="bibitem">
122
- <attribute name="id">
123
- <data type="ID"/>
124
- </attribute>
125
- <optional>
126
- <attribute name="hidden">
127
- <data type="boolean"/>
128
- </attribute>
129
- </optional>
130
- <optional>
131
- <attribute name="suppress_identifier">
132
- <data type="boolean"/>
133
- </attribute>
134
- </optional>
135
- <ref name="BibliographicItem"/>
136
- </element>
137
- </define>
138
- <define name="section-title">
139
- <element name="title">
140
- <zeroOrMore>
141
- <ref name="TextElement"/>
142
- </zeroOrMore>
143
- </element>
144
- <zeroOrMore>
145
- <element name="variant-title">
146
- <ref name="TypedTitleString"/>
147
- </element>
148
- </zeroOrMore>
149
- </define>
150
- <define name="hyperlink">
151
- <element name="link">
152
- <attribute name="target">
153
- <data type="anyURI"/>
154
- </attribute>
155
- <optional>
156
- <attribute name="type">
157
- <ref name="ReferenceFormat"/>
158
- </attribute>
159
- </optional>
160
- <optional>
161
- <attribute name="alt"/>
162
- </optional>
163
- <optional>
164
- <attribute name="update-type">
165
- <data type="boolean"/>
166
- </attribute>
167
- </optional>
168
- <oneOrMore>
169
- <ref name="PureTextElement"/>
170
- </oneOrMore>
171
- </element>
172
- </define>
173
- <define name="xref">
174
- <element name="xref">
175
- <attribute name="target">
176
- <data type="string">
177
- <param name="pattern">\i\c*|\c+#\c+</param>
178
- </data>
179
- </attribute>
180
- <optional>
181
- <attribute name="to">
182
- <data type="string">
183
- <param name="pattern">\i\c*|\c+#\c+</param>
184
- </data>
185
- </attribute>
186
- </optional>
187
- <optional>
188
- <attribute name="type">
189
- <ref name="ReferenceFormat"/>
190
- </attribute>
191
- </optional>
192
- <optional>
193
- <attribute name="alt"/>
194
- </optional>
195
- <optional>
196
- <attribute name="case">
197
- <choice>
198
- <value>capital</value>
199
- <value>lowercase</value>
200
- </choice>
201
- </attribute>
202
- </optional>
203
- <optional>
204
- <attribute name="droploc">
205
- <data type="boolean"/>
206
- </attribute>
207
- </optional>
208
- <ref name="XrefBody"/>
209
- </element>
210
- </define>
211
- <define name="erefType">
212
- <optional>
213
- <attribute name="normative">
214
- <data type="boolean"/>
215
- </attribute>
216
- </optional>
217
- <attribute name="citeas"/>
218
- <attribute name="type">
219
- <ref name="ReferenceFormat"/>
220
- </attribute>
221
- <optional>
222
- <attribute name="alt"/>
223
- </optional>
224
- <optional>
225
- <attribute name="case">
226
- <choice>
227
- <value>capital</value>
228
- <value>lowercase</value>
229
- </choice>
230
- </attribute>
231
- </optional>
232
- <optional>
233
- <attribute name="droploc">
234
- <data type="boolean"/>
235
- </attribute>
236
- </optional>
237
- <ref name="CitationType"/>
238
- <oneOrMore>
239
- <ref name="PureTextElement"/>
240
- </oneOrMore>
241
- </define>
242
- <define name="localityStack">
243
- <element name="localityStack">
244
- <optional>
245
- <attribute name="connective">
246
- <choice>
247
- <value>and</value>
248
- <value>or</value>
249
- <value>from</value>
250
- <value>to</value>
251
- <value/>
252
- </choice>
253
- </attribute>
254
- </optional>
255
- <zeroOrMore>
256
- <ref name="locality"/>
257
- </zeroOrMore>
258
- </element>
259
- </define>
260
- <define name="sourceLocalityStack">
261
- <element name="sourceLocalityStack">
262
- <optional>
263
- <attribute name="connective">
264
- <choice>
265
- <value>and</value>
266
- <value>or</value>
267
- <value>from</value>
268
- <value>to</value>
269
- <value/>
270
- </choice>
271
- </attribute>
272
- </optional>
273
- <zeroOrMore>
274
- <ref name="sourceLocality"/>
275
- </zeroOrMore>
276
- </element>
277
- </define>
278
- <define name="ul">
279
- <element name="ul">
280
- <attribute name="id">
281
- <data type="ID"/>
282
- </attribute>
283
- <optional>
284
- <attribute name="keep-with-next">
285
- <data type="boolean"/>
286
- </attribute>
287
- </optional>
288
- <optional>
289
- <attribute name="keep-lines-together">
290
- <data type="boolean"/>
291
- </attribute>
292
- </optional>
293
- <optional>
294
- <attribute name="tag"/>
295
- </optional>
296
- <optional>
297
- <attribute name="multilingual-rendering">
298
- <ref name="MultilingualRenderingType"/>
299
- </attribute>
300
- </optional>
301
- <optional>
302
- <ref name="tname"/>
303
- </optional>
304
- <oneOrMore>
305
- <ref name="ul_li"/>
306
- </oneOrMore>
307
- <zeroOrMore>
308
- <ref name="note"/>
309
- </zeroOrMore>
310
- </element>
311
- </define>
312
- <define name="ol">
313
- <element name="ol">
314
- <attribute name="id">
315
- <data type="ID"/>
316
- </attribute>
317
- <optional>
318
- <attribute name="keep-with-next">
319
- <data type="boolean"/>
320
- </attribute>
321
- </optional>
322
- <optional>
323
- <attribute name="keep-lines-together">
324
- <data type="boolean"/>
325
- </attribute>
326
- </optional>
327
- <optional>
328
- <attribute name="tag"/>
329
- </optional>
330
- <optional>
331
- <attribute name="multilingual-rendering">
332
- <ref name="MultilingualRenderingType"/>
333
- </attribute>
334
- </optional>
335
- <optional>
336
- <attribute name="type">
337
- <choice>
338
- <value>roman</value>
339
- <value>alphabet</value>
340
- <value>arabic</value>
341
- <value>roman_upper</value>
342
- <value>alphabet_upper</value>
343
- </choice>
344
- </attribute>
345
- </optional>
346
- <optional>
347
- <ref name="tname"/>
348
- </optional>
349
- <oneOrMore>
350
- <ref name="li"/>
351
- </oneOrMore>
352
- <zeroOrMore>
353
- <ref name="note"/>
354
- </zeroOrMore>
355
- </element>
356
- </define>
357
- <define name="dl">
358
- <element name="dl">
359
- <attribute name="id">
360
- <data type="ID"/>
361
- </attribute>
362
- <optional>
363
- <attribute name="keep-with-next">
364
- <data type="boolean"/>
365
- </attribute>
366
- </optional>
367
- <optional>
368
- <attribute name="keep-lines-together">
369
- <data type="boolean"/>
370
- </attribute>
371
- </optional>
372
- <optional>
373
- <attribute name="key">
374
- <data type="boolean"/>
375
- </attribute>
376
- </optional>
377
- <optional>
378
- <attribute name="tag"/>
379
- </optional>
380
- <optional>
381
- <attribute name="multilingual-rendering">
382
- <ref name="MultilingualRenderingType"/>
383
- </attribute>
384
- </optional>
385
- <optional>
386
- <ref name="tname"/>
387
- </optional>
388
- <oneOrMore>
389
- <ref name="dt"/>
390
- <ref name="dd"/>
391
- </oneOrMore>
392
- <zeroOrMore>
393
- <ref name="note"/>
394
- </zeroOrMore>
395
- </element>
396
- </define>
397
- <define name="dt">
398
- <element name="dt">
399
- <optional>
400
- <attribute name="id">
401
- <data type="ID"/>
402
- </attribute>
403
- </optional>
404
- <zeroOrMore>
405
- <ref name="TextElement"/>
406
- </zeroOrMore>
407
- </element>
408
- </define>
409
- <define name="example">
410
- <element name="example">
411
- <attribute name="id">
412
- <data type="ID"/>
413
- </attribute>
414
- <optional>
415
- <attribute name="unnumbered">
416
- <data type="boolean"/>
417
- </attribute>
418
- </optional>
419
- <optional>
420
- <attribute name="subsequence"/>
421
- </optional>
422
- <optional>
423
- <attribute name="number"/>
424
- </optional>
425
- <optional>
426
- <attribute name="keep-with-next">
427
- <data type="boolean"/>
428
- </attribute>
429
- </optional>
430
- <optional>
431
- <attribute name="keep-lines-together">
432
- <data type="boolean"/>
433
- </attribute>
434
- </optional>
435
- <optional>
436
- <attribute name="tag"/>
437
- </optional>
438
- <optional>
439
- <attribute name="multilingual-rendering">
440
- <ref name="MultilingualRenderingType"/>
441
- </attribute>
442
- </optional>
443
- <optional>
444
- <ref name="tname"/>
445
- </optional>
446
- <oneOrMore>
447
- <choice>
448
- <ref name="formula"/>
449
- <ref name="ul"/>
450
- <ref name="ol"/>
451
- <ref name="dl"/>
452
- <ref name="quote"/>
453
- <ref name="sourcecode"/>
454
- <ref name="paragraph-with-footnote"/>
455
- <ref name="figure"/>
456
- </choice>
457
- </oneOrMore>
458
- <zeroOrMore>
459
- <ref name="note"/>
460
- </zeroOrMore>
461
- </element>
462
- </define>
463
- <define name="table">
464
- <element name="table">
465
- <attribute name="id">
466
- <data type="ID"/>
467
- </attribute>
468
- <optional>
469
- <attribute name="unnumbered">
470
- <data type="boolean"/>
471
- </attribute>
472
- </optional>
473
- <optional>
474
- <attribute name="number"/>
475
- </optional>
476
- <optional>
477
- <attribute name="subsequence"/>
478
- </optional>
479
- <optional>
480
- <attribute name="alt"/>
481
- </optional>
482
- <optional>
483
- <attribute name="summary"/>
484
- </optional>
485
- <optional>
486
- <attribute name="uri">
487
- <data type="anyURI"/>
488
- </attribute>
489
- </optional>
490
- <optional>
491
- <attribute name="keep-with-next">
492
- <data type="boolean"/>
493
- </attribute>
494
- </optional>
495
- <optional>
496
- <attribute name="keep-lines-together">
497
- <data type="boolean"/>
498
- </attribute>
499
- </optional>
500
- <optional>
501
- <attribute name="width"/>
502
- </optional>
503
- <optional>
504
- <attribute name="tag"/>
505
- </optional>
506
- <optional>
507
- <attribute name="multilingual-rendering">
508
- <ref name="MultilingualRenderingType"/>
509
- </attribute>
510
- </optional>
511
- <optional>
512
- <ref name="colgroup"/>
513
- </optional>
514
- <optional>
515
- <ref name="tname"/>
516
- </optional>
517
- <optional>
518
- <ref name="thead"/>
519
- </optional>
520
- <ref name="tbody"/>
521
- <optional>
522
- <ref name="tfoot"/>
523
- </optional>
524
- <zeroOrMore>
525
- <ref name="table-note"/>
526
- </zeroOrMore>
527
- <optional>
528
- <ref name="dl"/>
529
- </optional>
530
- </element>
531
- </define>
532
- <define name="figure">
533
- <element name="figure">
534
- <attribute name="id">
535
- <data type="ID"/>
536
- </attribute>
537
- <optional>
538
- <attribute name="unnumbered">
539
- <data type="boolean"/>
540
- </attribute>
541
- </optional>
542
- <optional>
543
- <attribute name="number"/>
544
- </optional>
545
- <optional>
546
- <attribute name="subsequence"/>
547
- </optional>
548
- <optional>
549
- <attribute name="keep-with-next">
550
- <data type="boolean"/>
551
- </attribute>
552
- </optional>
553
- <optional>
554
- <attribute name="keep-lines-together">
555
- <data type="boolean"/>
556
- </attribute>
557
- </optional>
558
- <optional>
559
- <attribute name="class"/>
560
- </optional>
561
- <optional>
562
- <attribute name="tag"/>
563
- </optional>
564
- <optional>
565
- <attribute name="multilingual-rendering">
566
- <ref name="MultilingualRenderingType"/>
567
- </attribute>
568
- </optional>
569
- <optional>
570
- <ref name="source"/>
571
- </optional>
572
- <optional>
573
- <ref name="tname"/>
574
- </optional>
575
- <choice>
576
- <ref name="image"/>
577
- <ref name="video"/>
578
- <ref name="audio"/>
579
- <ref name="pre"/>
580
- <oneOrMore>
581
- <ref name="paragraph-with-footnote"/>
582
- </oneOrMore>
583
- <zeroOrMore>
584
- <ref name="figure"/>
585
- </zeroOrMore>
586
- </choice>
587
- <zeroOrMore>
588
- <ref name="fn"/>
589
- </zeroOrMore>
590
- <optional>
591
- <ref name="dl"/>
592
- </optional>
593
- <zeroOrMore>
594
- <ref name="note"/>
595
- </zeroOrMore>
596
- </element>
597
- </define>
598
- <define name="sourcecode">
599
- <element name="sourcecode">
600
- <attribute name="id">
601
- <data type="ID"/>
602
- </attribute>
603
- <optional>
604
- <attribute name="unnumbered">
605
- <data type="boolean"/>
606
- </attribute>
607
- </optional>
608
- <optional>
609
- <attribute name="number"/>
610
- </optional>
611
- <optional>
612
- <attribute name="subsequence"/>
613
- </optional>
614
- <optional>
615
- <attribute name="keep-with-next">
616
- <data type="boolean"/>
617
- </attribute>
618
- </optional>
619
- <optional>
620
- <attribute name="keep-lines-together">
621
- <data type="boolean"/>
622
- </attribute>
623
- </optional>
624
- <optional>
625
- <attribute name="lang"/>
626
- </optional>
627
- <optional>
628
- <attribute name="tag"/>
629
- </optional>
630
- <optional>
631
- <attribute name="multilingual-rendering">
632
- <ref name="MultilingualRenderingType"/>
633
- </attribute>
634
- </optional>
635
- <optional>
636
- <ref name="tname"/>
637
- </optional>
638
- <oneOrMore>
639
- <choice>
640
- <text/>
641
- <ref name="callout"/>
642
- </choice>
643
- </oneOrMore>
644
- <zeroOrMore>
645
- <ref name="annotation"/>
646
- </zeroOrMore>
647
- <zeroOrMore>
648
- <ref name="note"/>
649
- </zeroOrMore>
650
- </element>
651
- </define>
652
- <define name="formula">
653
- <element name="formula">
654
- <attribute name="id">
655
- <data type="ID"/>
656
- </attribute>
657
- <optional>
658
- <attribute name="unnumbered">
659
- <data type="boolean"/>
660
- </attribute>
661
- </optional>
662
- <optional>
663
- <attribute name="number"/>
664
- </optional>
665
- <optional>
666
- <attribute name="subsequence"/>
667
- </optional>
668
- <optional>
669
- <attribute name="keep-with-next">
670
- <data type="boolean"/>
671
- </attribute>
672
- </optional>
673
- <optional>
674
- <attribute name="keep-lines-together">
675
- <data type="boolean"/>
676
- </attribute>
677
- </optional>
678
- <optional>
679
- <attribute name="inequality">
680
- <data type="boolean"/>
681
- </attribute>
682
- </optional>
683
- <optional>
684
- <attribute name="tag"/>
685
- </optional>
686
- <optional>
687
- <attribute name="multilingual-rendering">
688
- <ref name="MultilingualRenderingType"/>
689
- </attribute>
690
- </optional>
691
- <ref name="stem"/>
692
- <optional>
693
- <ref name="dl"/>
694
- </optional>
695
- <zeroOrMore>
696
- <ref name="note"/>
697
- </zeroOrMore>
698
- </element>
699
- </define>
700
- <define name="ParagraphType">
701
- <attribute name="id">
702
- <data type="ID"/>
703
- </attribute>
704
- <optional>
705
- <attribute name="align">
706
- <ref name="Alignments"/>
707
- </attribute>
708
- </optional>
709
- <optional>
710
- <attribute name="keep-with-next">
711
- <data type="boolean"/>
712
- </attribute>
713
- </optional>
714
- <optional>
715
- <attribute name="keep-lines-together">
716
- <data type="boolean"/>
717
- </attribute>
718
- </optional>
719
- <optional>
720
- <attribute name="tag"/>
721
- </optional>
722
- <optional>
723
- <attribute name="type"/>
724
- </optional>
725
- <optional>
726
- <attribute name="multilingual-rendering">
727
- <ref name="MultilingualRenderingType"/>
728
- </attribute>
729
- </optional>
730
- <zeroOrMore>
731
- <ref name="TextElement"/>
732
- </zeroOrMore>
733
- <zeroOrMore>
734
- <ref name="note"/>
735
- </zeroOrMore>
736
- </define>
737
- <define name="paragraph-with-footnote">
738
- <element name="p">
739
- <attribute name="id">
740
- <data type="ID"/>
741
- </attribute>
742
- <optional>
743
- <attribute name="align">
744
- <ref name="Alignments"/>
745
- </attribute>
746
- </optional>
747
- <optional>
748
- <attribute name="keep-with-next">
749
- <data type="boolean"/>
750
- </attribute>
751
- </optional>
752
- <optional>
753
- <attribute name="keep-lines-together">
754
- <data type="boolean"/>
755
- </attribute>
756
- </optional>
757
- <optional>
758
- <attribute name="tag"/>
759
- </optional>
760
- <optional>
761
- <attribute name="type"/>
762
- </optional>
763
- <optional>
764
- <attribute name="multilingual-rendering">
765
- <ref name="MultilingualRenderingType"/>
766
- </attribute>
767
- </optional>
768
- <zeroOrMore>
769
- <choice>
770
- <ref name="TextElement"/>
771
- <ref name="fn"/>
772
- </choice>
773
- </zeroOrMore>
774
- <zeroOrMore>
775
- <ref name="note"/>
776
- </zeroOrMore>
777
- </element>
778
- </define>
779
- <define name="quote">
780
- <element name="quote">
781
- <attribute name="id">
782
- <data type="ID"/>
783
- </attribute>
784
- <optional>
785
- <attribute name="alignment">
786
- <ref name="Alignments"/>
787
- </attribute>
788
- </optional>
789
- <optional>
790
- <attribute name="keep-with-next">
791
- <data type="boolean"/>
792
- </attribute>
793
- </optional>
794
- <optional>
795
- <attribute name="keep-lines-together">
796
- <data type="boolean"/>
797
- </attribute>
798
- </optional>
799
- <optional>
800
- <attribute name="tag"/>
801
- </optional>
802
- <optional>
803
- <attribute name="multilingual-rendering">
804
- <ref name="MultilingualRenderingType"/>
805
- </attribute>
806
- </optional>
807
- <optional>
808
- <ref name="quote-source"/>
809
- </optional>
810
- <optional>
811
- <ref name="quote-author"/>
812
- </optional>
813
- <oneOrMore>
814
- <ref name="paragraph-with-footnote"/>
815
- </oneOrMore>
816
- <zeroOrMore>
817
- <ref name="note"/>
818
- </zeroOrMore>
819
- </element>
820
- </define>
821
- <define name="BibDataExtensionType">
822
- <ref name="doctype"/>
823
- <optional>
824
- <ref name="docsubtype"/>
825
- </optional>
826
- <optional>
827
- <ref name="editorialgroup"/>
828
- </optional>
829
- <zeroOrMore>
830
- <ref name="ics"/>
831
- </zeroOrMore>
832
- <zeroOrMore>
833
- <ref name="structuredidentifier"/>
834
- </zeroOrMore>
835
- </define>
836
- <!-- TitleType = text -->
837
- <define name="sections">
838
- <element name="sections">
839
- <oneOrMore>
840
- <choice>
841
- <ref name="clause"/>
842
- <ref name="terms"/>
843
- <ref name="term-clause"/>
844
- <ref name="definitions"/>
845
- <ref name="floating-title"/>
846
- </choice>
847
- </oneOrMore>
848
- </element>
849
- </define>
850
- <define name="references">
851
- <element name="references">
852
- <optional>
853
- <attribute name="id">
854
- <data type="ID"/>
855
- </attribute>
856
- </optional>
857
- <optional>
858
- <attribute name="obligation">
859
- <choice>
860
- <value>normative</value>
861
- <value>informative</value>
862
- </choice>
863
- </attribute>
864
- </optional>
865
- <attribute name="normative">
866
- <data type="boolean"/>
867
- </attribute>
868
- <optional>
869
- <ref name="section-title"/>
870
- </optional>
871
- <zeroOrMore>
872
- <ref name="BasicBlock"/>
873
- </zeroOrMore>
874
- <zeroOrMore>
875
- <ref name="bibitem"/>
876
- <zeroOrMore>
877
- <ref name="note"/>
878
- </zeroOrMore>
879
- </zeroOrMore>
880
- <zeroOrMore>
881
- <ref name="references"/>
882
- </zeroOrMore>
883
- </element>
884
- </define>
885
- <define name="note">
886
- <element name="note">
887
- <attribute name="id">
888
- <data type="ID"/>
889
- </attribute>
890
- <optional>
891
- <attribute name="unnumbered">
892
- <data type="boolean"/>
893
- </attribute>
894
- </optional>
895
- <optional>
896
- <attribute name="number"/>
897
- </optional>
898
- <optional>
899
- <attribute name="subsequence"/>
900
- </optional>
901
- <optional>
902
- <attribute name="keep-with-next">
903
- <data type="boolean"/>
904
- </attribute>
905
- </optional>
906
- <optional>
907
- <attribute name="keep-lines-together">
908
- <data type="boolean"/>
909
- </attribute>
910
- </optional>
911
- <optional>
912
- <attribute name="type"/>
913
- </optional>
914
- <optional>
915
- <attribute name="tag"/>
916
- </optional>
917
- <optional>
918
- <attribute name="multilingual-rendering">
919
- <ref name="MultilingualRenderingType"/>
920
- </attribute>
921
- </optional>
922
- <optional>
923
- <attribute name="coverpage">
924
- <data type="boolean"/>
925
- </attribute>
926
- </optional>
927
- <optional>
928
- <attribute name="notag">
929
- <data type="boolean"/>
930
- </attribute>
931
- </optional>
932
- <oneOrMore>
933
- <choice>
934
- <ref name="paragraph"/>
935
- <ref name="ul"/>
936
- <ref name="ol"/>
937
- <ref name="dl"/>
938
- <ref name="formula"/>
939
- <ref name="quote"/>
940
- <ref name="sourcecode"/>
941
- </choice>
942
- </oneOrMore>
943
- </element>
944
- </define>
945
- <define name="Basic-Section">
946
- <optional>
947
- <attribute name="id">
948
- <data type="ID"/>
949
- </attribute>
950
- </optional>
951
- <optional>
952
- <attribute name="language"/>
953
- </optional>
954
- <optional>
955
- <attribute name="script"/>
956
- </optional>
957
- <optional>
958
- <attribute name="obligation">
959
- <choice>
960
- <value>normative</value>
961
- <value>informative</value>
962
- </choice>
963
- </attribute>
964
- </optional>
965
- <optional>
966
- <ref name="section-title"/>
967
- </optional>
968
- <oneOrMore>
969
- <ref name="BasicBlock"/>
970
- </oneOrMore>
971
- </define>
972
- <define name="li">
973
- <element name="li">
974
- <group>
975
- <optional>
976
- <attribute name="id">
977
- <data type="ID"/>
978
- </attribute>
979
- </optional>
980
- <oneOrMore>
981
- <ref name="BasicBlock"/>
982
- </oneOrMore>
983
- </group>
984
- <!-- exclude figures? -->
985
- </element>
986
- </define>
987
- <define name="dd">
988
- <element name="dd">
989
- <zeroOrMore>
990
- <!-- exclude figures? -->
991
- <ref name="BasicBlock"/>
992
- </zeroOrMore>
993
- </element>
994
- </define>
995
- <define name="thead">
996
- <element name="thead">
997
- <oneOrMore>
998
- <ref name="tr"/>
999
- </oneOrMore>
1000
- </element>
1001
- </define>
1002
- <define name="td">
1003
- <element name="td">
1004
- <optional>
1005
- <attribute name="colspan"/>
1006
- </optional>
1007
- <optional>
1008
- <attribute name="rowspan"/>
1009
- </optional>
1010
- <optional>
1011
- <attribute name="align">
1012
- <choice>
1013
- <value>left</value>
1014
- <value>right</value>
1015
- <value>center</value>
1016
- </choice>
1017
- </attribute>
1018
- </optional>
1019
- <optional>
1020
- <attribute name="valign">
1021
- <choice>
1022
- <value>top</value>
1023
- <value>middle</value>
1024
- <value>bottom</value>
1025
- <value>baseline</value>
1026
- </choice>
1027
- </attribute>
1028
- </optional>
1029
- <choice>
1030
- <zeroOrMore>
1031
- <choice>
1032
- <ref name="TextElement"/>
1033
- <ref name="fn"/>
1034
- </choice>
1035
- </zeroOrMore>
1036
- <oneOrMore>
1037
- <choice>
1038
- <ref name="paragraph-with-footnote"/>
1039
- <ref name="dl"/>
1040
- <ref name="ul"/>
1041
- <ref name="ol"/>
1042
- <ref name="figure"/>
1043
- </choice>
1044
- </oneOrMore>
1045
- </choice>
1046
- </element>
1047
- </define>
1048
- <define name="th">
1049
- <element name="th">
1050
- <optional>
1051
- <attribute name="colspan"/>
1052
- </optional>
1053
- <optional>
1054
- <attribute name="rowspan"/>
1055
- </optional>
1056
- <optional>
1057
- <attribute name="align">
1058
- <choice>
1059
- <value>left</value>
1060
- <value>right</value>
1061
- <value>center</value>
1062
- </choice>
1063
- </attribute>
1064
- </optional>
1065
- <optional>
1066
- <attribute name="valign">
1067
- <choice>
1068
- <value>top</value>
1069
- <value>middle</value>
1070
- <value>bottom</value>
1071
- <value>baseline</value>
1072
- </choice>
1073
- </attribute>
1074
- </optional>
1075
- <choice>
1076
- <zeroOrMore>
1077
- <choice>
1078
- <ref name="TextElement"/>
1079
- <ref name="fn"/>
1080
- </choice>
1081
- </zeroOrMore>
1082
- <oneOrMore>
1083
- <ref name="paragraph-with-footnote"/>
1084
- </oneOrMore>
1085
- </choice>
1086
- </element>
1087
- </define>
1088
- <define name="table-note">
1089
- <element name="note">
1090
- <optional>
1091
- <attribute name="id">
1092
- <data type="ID"/>
1093
- </attribute>
1094
- </optional>
1095
- <ref name="paragraph"/>
1096
- </element>
1097
- </define>
1098
- <define name="em">
1099
- <element name="em">
1100
- <zeroOrMore>
1101
- <choice>
1102
- <ref name="PureTextElement"/>
1103
- <ref name="stem"/>
1104
- <ref name="index"/>
1105
- <ref name="eref"/>
1106
- <ref name="xref"/>
1107
- <ref name="hyperlink"/>
1108
- </choice>
1109
- </zeroOrMore>
1110
- </element>
1111
- </define>
1112
- <define name="strong">
1113
- <element name="strong">
1114
- <zeroOrMore>
1115
- <choice>
1116
- <ref name="PureTextElement"/>
1117
- <ref name="stem"/>
1118
- <ref name="index"/>
1119
- <ref name="eref"/>
1120
- <ref name="xref"/>
1121
- <ref name="hyperlink"/>
1122
- </choice>
1123
- </zeroOrMore>
1124
- </element>
1125
- </define>
1126
- <define name="tt">
1127
- <element name="tt">
1128
- <zeroOrMore>
1129
- <choice>
1130
- <ref name="PureTextElement"/>
1131
- <ref name="index"/>
1132
- <ref name="eref"/>
1133
- <ref name="xref"/>
1134
- <ref name="hyperlink"/>
1135
- </choice>
1136
- </zeroOrMore>
1137
- </element>
1138
- </define>
1139
- <define name="keyword">
1140
- <element name="keyword">
1141
- <zeroOrMore>
1142
- <choice>
1143
- <ref name="PureTextElement"/>
1144
- <ref name="index"/>
1145
- </choice>
1146
- </zeroOrMore>
1147
- </element>
1148
- </define>
1149
- <define name="strike">
1150
- <element name="strike">
1151
- <zeroOrMore>
1152
- <choice>
1153
- <ref name="PureTextElement"/>
1154
- <ref name="index"/>
1155
- </choice>
1156
- </zeroOrMore>
1157
- </element>
1158
- </define>
1159
- <define name="underline">
1160
- <element name="underline">
1161
- <zeroOrMore>
1162
- <choice>
1163
- <ref name="PureTextElement"/>
1164
- <ref name="index"/>
1165
- </choice>
1166
- </zeroOrMore>
1167
- </element>
1168
- </define>
1169
- <define name="smallcap">
1170
- <element name="smallcap">
1171
- <zeroOrMore>
1172
- <choice>
1173
- <ref name="PureTextElement"/>
1174
- <ref name="index"/>
1175
- </choice>
1176
- </zeroOrMore>
1177
- </element>
1178
- </define>
1179
- <define name="sub">
1180
- <element name="sub">
1181
- <zeroOrMore>
1182
- <choice>
1183
- <ref name="PureTextElement"/>
1184
- <ref name="stem"/>
1185
- </choice>
1186
- </zeroOrMore>
1187
- </element>
1188
- </define>
1189
- <define name="sup">
1190
- <element name="sup">
1191
- <zeroOrMore>
1192
- <choice>
1193
- <ref name="PureTextElement"/>
1194
- <ref name="stem"/>
1195
- </choice>
1196
- </zeroOrMore>
1197
- </element>
1198
- </define>
1199
- <define name="pagebreak">
1200
- <element name="pagebreak">
1201
- <optional>
1202
- <attribute name="orientation">
1203
- <choice>
1204
- <value>landscape</value>
1205
- <value>portrait</value>
1206
- </choice>
1207
- </attribute>
1208
- </optional>
1209
- </element>
1210
- </define>
1211
- </include>
1212
- <!-- end overrides -->
1213
- <define name="image" combine="choice">
1214
- <element name="svg">
1215
- <oneOrMore>
1216
- <choice>
1217
- <text/>
1218
- <ref name="AnyElement"/>
1219
- </choice>
1220
- </oneOrMore>
1221
- </element>
1222
- </define>
1223
- <define name="MultilingualRenderingType">
1224
- <choice>
1225
- <value>common</value>
1226
- <value>all-columns</value>
1227
- <value>parallel</value>
1228
- <value>tag</value>
1229
- </choice>
1230
- </define>
1231
- <define name="docsubtype">
1232
- <element name="subdoctype">
1233
- <ref name="DocumentSubtype"/>
1234
- </element>
1235
- </define>
1236
- <define name="DocumentSubtype">
1237
- <text/>
1238
- </define>
1239
- <define name="colgroup">
1240
- <element name="colgroup">
1241
- <oneOrMore>
1242
- <ref name="col"/>
1243
- </oneOrMore>
1244
- </element>
1245
- </define>
1246
- <define name="col">
1247
- <element name="col">
1248
- <attribute name="width"/>
1249
- </element>
1250
- </define>
1251
- <define name="BibItemType" combine="choice">
1252
- <value>internal</value>
1253
- </define>
1254
- <define name="TextElement" combine="choice">
1255
- <choice>
1256
- <ref name="concept"/>
1257
- <ref name="add"/>
1258
- <ref name="del"/>
1259
- <ref name="span"/>
1260
- </choice>
1261
- </define>
1262
- <define name="add">
1263
- <element name="add">
1264
- <choice>
1265
- <ref name="PureTextElement"/>
1266
- <ref name="eref"/>
1267
- <ref name="stem"/>
1268
- <ref name="keyword"/>
1269
- <ref name="xref"/>
1270
- <ref name="hyperlink"/>
1271
- </choice>
1272
- </element>
1273
- </define>
1274
- <define name="del">
1275
- <element name="del">
1276
- <choice>
1277
- <ref name="PureTextElement"/>
1278
- <ref name="eref"/>
1279
- <ref name="stem"/>
1280
- <ref name="keyword"/>
1281
- <ref name="xref"/>
1282
- <ref name="hyperlink"/>
1283
- </choice>
1284
- </element>
1285
- </define>
1286
- <define name="span">
1287
- <element name="span">
1288
- <optional>
1289
- <attribute name="class"/>
1290
- </optional>
1291
- <optional>
1292
- <attribute name="style"/>
1293
- </optional>
1294
- <oneOrMore>
1295
- <ref name="TextElement"/>
1296
- </oneOrMore>
1297
- </element>
1298
- </define>
1299
- <define name="concept">
1300
- <element name="concept">
1301
- <optional>
1302
- <attribute name="ital">
1303
- <data type="boolean"/>
1304
- </attribute>
1305
- </optional>
1306
- <optional>
1307
- <attribute name="ref">
1308
- <data type="boolean"/>
1309
- </attribute>
1310
- </optional>
1311
- <optional>
1312
- <attribute name="linkmention">
1313
- <data type="boolean"/>
1314
- </attribute>
1315
- </optional>
1316
- <optional>
1317
- <attribute name="linkref">
1318
- <data type="boolean"/>
1319
- </attribute>
1320
- </optional>
1321
- <optional>
1322
- <element name="refterm">
1323
- <zeroOrMore>
1324
- <choice>
1325
- <ref name="PureTextElement"/>
1326
- <ref name="stem"/>
1327
- </choice>
1328
- </zeroOrMore>
1329
- </element>
1330
- </optional>
1331
- <optional>
1332
- <element name="renderterm">
1333
- <zeroOrMore>
1334
- <choice>
1335
- <ref name="PureTextElement"/>
1336
- <ref name="stem"/>
1337
- </choice>
1338
- </zeroOrMore>
1339
- </element>
1340
- </optional>
1341
- <choice>
1342
- <ref name="eref"/>
1343
- <ref name="xref"/>
1344
- <ref name="termref"/>
1345
- </choice>
1346
- </element>
1347
- </define>
1348
- <define name="BasicBlock" combine="choice">
1349
- <choice>
1350
- <ref name="requirement"/>
1351
- <ref name="recommendation"/>
1352
- <ref name="permission"/>
1353
- <ref name="imagemap"/>
1354
- <ref name="svgmap"/>
1355
- <ref name="inputform"/>
1356
- <ref name="toc"/>
1357
- <ref name="passthrough"/>
1358
- </choice>
1359
- </define>
1360
- <define name="toc">
1361
- <element name="toc">
1362
- <ref name="ul"/>
1363
- </element>
1364
- </define>
1365
- <define name="passthrough">
1366
- <element name="passthrough">
1367
- <optional>
1368
- <attribute name="formats"/>
1369
- </optional>
1370
- <text/>
1371
- </element>
1372
- </define>
1373
- <define name="inputform">
1374
- <element name="form">
1375
- <attribute name="id">
1376
- <data type="ID"/>
1377
- </attribute>
1378
- <attribute name="name"/>
1379
- <attribute name="action"/>
1380
- <optional>
1381
- <attribute name="class"/>
1382
- </optional>
1383
- <optional>
1384
- <attribute name="tag"/>
1385
- </optional>
1386
- <optional>
1387
- <attribute name="multilingual-rendering">
1388
- <ref name="MultilingualRenderingType"/>
1389
- </attribute>
1390
- </optional>
1391
- <zeroOrMore>
1392
- <choice>
1393
- <ref name="TextElement"/>
1394
- <ref name="FormInput"/>
1395
- </choice>
1396
- </zeroOrMore>
1397
- </element>
1398
- </define>
1399
- <define name="FormInput">
1400
- <choice>
1401
- <ref name="input"/>
1402
- <ref name="formlabel"/>
1403
- <ref name="select"/>
1404
- <ref name="textarea"/>
1405
- </choice>
1406
- </define>
1407
- <define name="InputType">
1408
- <choice>
1409
- <value>button</value>
1410
- <value>checkbox</value>
1411
- <value>date</value>
1412
- <value>file</value>
1413
- <value>password</value>
1414
- <value>radio</value>
1415
- <value>submit</value>
1416
- <value>text</value>
1417
- </choice>
1418
- </define>
1419
- <define name="input">
1420
- <element name="input">
1421
- <attribute name="type">
1422
- <ref name="InputType"/>
1423
- </attribute>
1424
- <optional>
1425
- <attribute name="checked">
1426
- <data type="boolean"/>
1427
- </attribute>
1428
- </optional>
1429
- <optional>
1430
- <attribute name="disabled">
1431
- <data type="boolean"/>
1432
- </attribute>
1433
- </optional>
1434
- <optional>
1435
- <attribute name="readonly">
1436
- <data type="boolean"/>
1437
- </attribute>
1438
- </optional>
1439
- <optional>
1440
- <attribute name="maxlength">
1441
- <data type="int"/>
1442
- </attribute>
1443
- </optional>
1444
- <optional>
1445
- <attribute name="minlength">
1446
- <data type="int"/>
1447
- </attribute>
1448
- </optional>
1449
- <optional>
1450
- <attribute name="name"/>
1451
- </optional>
1452
- <optional>
1453
- <attribute name="value"/>
1454
- </optional>
1455
- <optional>
1456
- <attribute name="id">
1457
- <data type="ID"/>
1458
- </attribute>
1459
- </optional>
1460
- </element>
1461
- </define>
1462
- <define name="formlabel">
1463
- <element name="label">
1464
- <attribute name="for">
1465
- <data type="IDREF"/>
1466
- </attribute>
1467
- <zeroOrMore>
1468
- <ref name="PureTextElement"/>
1469
- </zeroOrMore>
1470
- </element>
1471
- </define>
1472
- <define name="select">
1473
- <element name="select">
1474
- <optional>
1475
- <attribute name="name"/>
1476
- </optional>
1477
- <optional>
1478
- <attribute name="value"/>
1479
- </optional>
1480
- <optional>
1481
- <attribute name="id">
1482
- <data type="ID"/>
1483
- </attribute>
1484
- </optional>
1485
- <optional>
1486
- <attribute name="disabled">
1487
- <data type="boolean"/>
1488
- </attribute>
1489
- </optional>
1490
- <optional>
1491
- <attribute name="multiple">
1492
- <data type="boolean"/>
1493
- </attribute>
1494
- </optional>
1495
- <optional>
1496
- <attribute name="size">
1497
- <data type="int"/>
1498
- </attribute>
1499
- </optional>
1500
- <oneOrMore>
1501
- <ref name="option"/>
1502
- </oneOrMore>
1503
- </element>
1504
- </define>
1505
- <define name="option">
1506
- <element name="option">
1507
- <optional>
1508
- <attribute name="disabled">
1509
- <data type="boolean"/>
1510
- </attribute>
1511
- </optional>
1512
- <optional>
1513
- <attribute name="value"/>
1514
- </optional>
1515
- <zeroOrMore>
1516
- <ref name="PureTextElement"/>
1517
- </zeroOrMore>
1518
- </element>
1519
- </define>
1520
- <define name="textarea">
1521
- <element name="textarea">
1522
- <optional>
1523
- <attribute name="name"/>
1524
- </optional>
1525
- <optional>
1526
- <attribute name="value"/>
1527
- </optional>
1528
- <optional>
1529
- <attribute name="id">
1530
- <data type="ID"/>
1531
- </attribute>
1532
- </optional>
1533
- <optional>
1534
- <attribute name="rows">
1535
- <data type="int"/>
1536
- </attribute>
1537
- </optional>
1538
- <optional>
1539
- <attribute name="cols">
1540
- <data type="int"/>
1541
- </attribute>
1542
- </optional>
1543
- </element>
1544
- </define>
1545
- <define name="bibliography">
1546
- <element name="bibliography">
1547
- <oneOrMore>
1548
- <choice>
1549
- <ref name="references"/>
1550
- <ref name="reference-clause"/>
1551
- </choice>
1552
- </oneOrMore>
1553
- </element>
1554
- </define>
1555
- <define name="reference-clause">
1556
- <element name="clause">
1557
- <optional>
1558
- <attribute name="id">
1559
- <data type="ID"/>
1560
- </attribute>
1561
- </optional>
1562
- <optional>
1563
- <attribute name="language"/>
1564
- </optional>
1565
- <optional>
1566
- <attribute name="script"/>
1567
- </optional>
1568
- <optional>
1569
- <attribute name="inline-header">
1570
- <data type="boolean"/>
1571
- </attribute>
1572
- </optional>
1573
- <optional>
1574
- <attribute name="number"/>
1575
- </optional>
1576
- <optional>
1577
- <attribute name="obligation">
1578
- <choice>
1579
- <value>normative</value>
1580
- <value>informative</value>
1581
- </choice>
1582
- </attribute>
1583
- </optional>
1584
- <optional>
1585
- <ref name="section-title"/>
1586
- </optional>
1587
- <zeroOrMore>
1588
- <ref name="BasicBlock"/>
1589
- </zeroOrMore>
1590
- <choice>
1591
- <oneOrMore>
1592
- <ref name="reference-clause"/>
1593
- </oneOrMore>
1594
- <zeroOrMore>
1595
- <ref name="references"/>
1596
- </zeroOrMore>
1597
- </choice>
1598
- </element>
1599
- </define>
1600
- <define name="editorialgroup">
1601
- <element name="editorialgroup">
1602
- <oneOrMore>
1603
- <ref name="technical-committee"/>
1604
- </oneOrMore>
1605
- </element>
1606
- </define>
1607
- <define name="technical-committee">
1608
- <element name="technical-committee">
1609
- <ref name="IsoWorkgroup"/>
1610
- </element>
1611
- </define>
1612
- <define name="IsoWorkgroup">
1613
- <optional>
1614
- <attribute name="number"/>
1615
- </optional>
1616
- <optional>
1617
- <attribute name="type"/>
1618
- </optional>
1619
- <optional>
1620
- <attribute name="identifier"/>
1621
- </optional>
1622
- <optional>
1623
- <attribute name="prefix"/>
1624
- </optional>
1625
- <text/>
1626
- </define>
1627
- <define name="ics">
1628
- <element name="ics">
1629
- <element name="code">
1630
- <text/>
1631
- </element>
1632
- <optional>
1633
- <element name="text">
1634
- <text/>
1635
- </element>
1636
- </optional>
1637
- </element>
1638
- </define>
1639
- <define name="standard-document">
1640
- <element name="standard-document">
1641
- <attribute name="version"/>
1642
- <attribute name="type">
1643
- <choice>
1644
- <value>semantic</value>
1645
- <value>presentation</value>
1646
- </choice>
1647
- </attribute>
1648
- <ref name="bibdata"/>
1649
- <optional>
1650
- <ref name="misccontainer"/>
1651
- </optional>
1652
- <optional>
1653
- <ref name="boilerplate"/>
1654
- </optional>
1655
- <optional>
1656
- <ref name="preface"/>
1657
- </optional>
1658
- <ref name="sections"/>
1659
- <zeroOrMore>
1660
- <ref name="annex"/>
1661
- </zeroOrMore>
1662
- <optional>
1663
- <ref name="bibliography"/>
1664
- </optional>
1665
- <zeroOrMore>
1666
- <ref name="indexsect"/>
1667
- </zeroOrMore>
1668
- </element>
1669
- </define>
1670
- <define name="misccontainer">
1671
- <element name="misc-container">
1672
- <oneOrMore>
1673
- <ref name="AnyElement"/>
1674
- </oneOrMore>
1675
- </element>
1676
- </define>
1677
- <define name="preface">
1678
- <element name="preface">
1679
- <oneOrMore>
1680
- <choice>
1681
- <ref name="content"/>
1682
- <ref name="abstract"/>
1683
- <ref name="foreword"/>
1684
- <ref name="introduction"/>
1685
- <ref name="acknowledgements"/>
1686
- </choice>
1687
- </oneOrMore>
1688
- </element>
1689
- </define>
1690
- <define name="foreword">
1691
- <element name="foreword">
1692
- <ref name="Content-Section"/>
1693
- </element>
1694
- </define>
1695
- <define name="introduction">
1696
- <element name="introduction">
1697
- <ref name="Content-Section"/>
1698
- </element>
1699
- </define>
1700
- <define name="indexsect">
1701
- <element name="indexsect">
1702
- <ref name="Content-Section"/>
1703
- </element>
1704
- </define>
1705
- <define name="boilerplate">
1706
- <element name="boilerplate">
1707
- <optional>
1708
- <ref name="copyright-statement"/>
1709
- </optional>
1710
- <optional>
1711
- <ref name="license-statement"/>
1712
- </optional>
1713
- <optional>
1714
- <ref name="legal-statement"/>
1715
- </optional>
1716
- <optional>
1717
- <ref name="feedback-statement"/>
1718
- </optional>
1719
- </element>
1720
- </define>
1721
- <define name="copyright-statement">
1722
- <element name="copyright-statement">
1723
- <ref name="Content-Section"/>
1724
- </element>
1725
- </define>
1726
- <define name="license-statement">
1727
- <element name="license-statement">
1728
- <ref name="Content-Section"/>
1729
- </element>
1730
- </define>
1731
- <define name="legal-statement">
1732
- <element name="legal-statement">
1733
- <ref name="Content-Section"/>
1734
- </element>
1735
- </define>
1736
- <define name="feedback-statement">
1737
- <element name="feedback-statement">
1738
- <ref name="Content-Section"/>
1739
- </element>
1740
- </define>
1741
- <define name="definitions">
1742
- <element name="definitions">
1743
- <optional>
1744
- <attribute name="id">
1745
- <data type="ID"/>
1746
- </attribute>
1747
- </optional>
1748
- <optional>
1749
- <attribute name="language"/>
1750
- </optional>
1751
- <optional>
1752
- <attribute name="script"/>
1753
- </optional>
1754
- <optional>
1755
- <attribute name="type"/>
1756
- </optional>
1757
- <optional>
1758
- <attribute name="obligation">
1759
- <choice>
1760
- <value>normative</value>
1761
- <value>informative</value>
1762
- </choice>
1763
- </attribute>
1764
- </optional>
1765
- <optional>
1766
- <ref name="section-title"/>
1767
- </optional>
1768
- <oneOrMore>
1769
- <zeroOrMore>
1770
- <ref name="BasicBlock"/>
1771
- </zeroOrMore>
1772
- <ref name="dl"/>
1773
- </oneOrMore>
1774
- </element>
1775
- </define>
1776
- <define name="content">
1777
- <element name="clause">
1778
- <ref name="Content-Section"/>
1779
- </element>
1780
- </define>
1781
- <define name="abstract">
1782
- <element name="abstract">
1783
- <ref name="Content-Section"/>
1784
- </element>
1785
- </define>
1786
- <define name="acknowledgements">
1787
- <element name="acknowledgements">
1788
- <ref name="Content-Section"/>
1789
- </element>
1790
- </define>
1791
- <define name="content-subsection">
1792
- <element name="clause">
1793
- <ref name="Content-Section"/>
1794
- </element>
1795
- </define>
1796
- <define name="Content-Section">
1797
- <optional>
1798
- <attribute name="id">
1799
- <data type="ID"/>
1800
- </attribute>
1801
- </optional>
1802
- <optional>
1803
- <attribute name="language"/>
1804
- </optional>
1805
- <optional>
1806
- <attribute name="script"/>
1807
- </optional>
1808
- <optional>
1809
- <attribute name="inline-header">
1810
- <data type="boolean"/>
1811
- </attribute>
1812
- </optional>
1813
- <optional>
1814
- <attribute name="obligation">
1815
- <choice>
1816
- <value>normative</value>
1817
- <value>informative</value>
1818
- </choice>
1819
- </attribute>
1820
- </optional>
1821
- <optional>
1822
- <attribute name="number"/>
1823
- </optional>
1824
- <optional>
1825
- <attribute name="type"/>
1826
- </optional>
1827
- <optional>
1828
- <ref name="section-title"/>
1829
- </optional>
1830
- <group>
1831
- <zeroOrMore>
1832
- <ref name="BasicBlock"/>
1833
- </zeroOrMore>
1834
- <zeroOrMore>
1835
- <ref name="content-subsection"/>
1836
- </zeroOrMore>
1837
- </group>
1838
- </define>
1839
- <define name="clause">
1840
- <element name="clause">
1841
- <ref name="Clause-Section"/>
1842
- </element>
1843
- </define>
1844
- <define name="Clause-Section">
1845
- <optional>
1846
- <attribute name="id">
1847
- <data type="ID"/>
1848
- </attribute>
1849
- </optional>
1850
- <optional>
1851
- <attribute name="language"/>
1852
- </optional>
1853
- <optional>
1854
- <attribute name="script"/>
1855
- </optional>
1856
- <optional>
1857
- <attribute name="inline-header">
1858
- <data type="boolean"/>
1859
- </attribute>
1860
- </optional>
1861
- <optional>
1862
- <attribute name="obligation">
1863
- <choice>
1864
- <value>normative</value>
1865
- <value>informative</value>
1866
- </choice>
1867
- </attribute>
1868
- </optional>
1869
- <optional>
1870
- <attribute name="type"/>
1871
- </optional>
1872
- <optional>
1873
- <attribute name="number"/>
1874
- </optional>
1875
- <optional>
1876
- <ref name="section-title"/>
1877
- </optional>
1878
- <choice>
1879
- <choice>
1880
- <oneOrMore>
1881
- <ref name="BasicBlock"/>
1882
- </oneOrMore>
1883
- <ref name="amend"/>
1884
- </choice>
1885
- <oneOrMore>
1886
- <choice>
1887
- <ref name="clause-subsection"/>
1888
- <ref name="terms"/>
1889
- <ref name="definitions"/>
1890
- <ref name="floating-title"/>
1891
- </choice>
1892
- </oneOrMore>
1893
- </choice>
1894
- </define>
1895
- <define name="Annex-Section">
1896
- <optional>
1897
- <attribute name="id">
1898
- <data type="ID"/>
1899
- </attribute>
1900
- </optional>
1901
- <optional>
1902
- <attribute name="language"/>
1903
- </optional>
1904
- <optional>
1905
- <attribute name="script"/>
1906
- </optional>
1907
- <optional>
1908
- <attribute name="inline-header">
1909
- <data type="boolean"/>
1910
- </attribute>
1911
- </optional>
1912
- <optional>
1913
- <attribute name="obligation">
1914
- <choice>
1915
- <value>normative</value>
1916
- <value>informative</value>
1917
- </choice>
1918
- </attribute>
1919
- </optional>
1920
- <optional>
1921
- <ref name="section-title"/>
1922
- </optional>
1923
- <group>
1924
- <zeroOrMore>
1925
- <ref name="BasicBlock"/>
1926
- </zeroOrMore>
1927
- <zeroOrMore>
1928
- <choice>
1929
- <ref name="annex-subsection"/>
1930
- <ref name="terms"/>
1931
- <ref name="definitions"/>
1932
- <ref name="references"/>
1933
- <ref name="floating-title"/>
1934
- </choice>
1935
- </zeroOrMore>
1936
- </group>
1937
- </define>
1938
- <define name="clause-subsection">
1939
- <element name="clause">
1940
- <ref name="Clause-Section"/>
1941
- </element>
1942
- </define>
1943
- <define name="annex-subsection">
1944
- <element name="clause">
1945
- <ref name="Annex-Section"/>
1946
- </element>
1947
- </define>
1948
- <define name="annex">
1949
- <element name="annex">
1950
- <ref name="Annex-Section"/>
1951
- </element>
1952
- </define>
1953
- <define name="terms">
1954
- <element name="terms">
1955
- <optional>
1956
- <attribute name="id">
1957
- <data type="ID"/>
1958
- </attribute>
1959
- </optional>
1960
- <optional>
1961
- <attribute name="language"/>
1962
- </optional>
1963
- <optional>
1964
- <attribute name="script"/>
1965
- </optional>
1966
- <optional>
1967
- <attribute name="type"/>
1968
- </optional>
1969
- <optional>
1970
- <attribute name="number"/>
1971
- </optional>
1972
- <optional>
1973
- <attribute name="obligation">
1974
- <choice>
1975
- <value>normative</value>
1976
- <value>informative</value>
1977
- </choice>
1978
- </attribute>
1979
- </optional>
1980
- <optional>
1981
- <ref name="section-title"/>
1982
- </optional>
1983
- <zeroOrMore>
1984
- <ref name="BasicBlock"/>
1985
- </zeroOrMore>
1986
- <choice>
1987
- <oneOrMore>
1988
- <ref name="term"/>
1989
- </oneOrMore>
1990
- <group>
1991
- <zeroOrMore>
1992
- <ref name="terms"/>
1993
- </zeroOrMore>
1994
- <optional>
1995
- <ref name="definitions"/>
1996
- </optional>
1997
- </group>
1998
- </choice>
1999
- </element>
2000
- </define>
2001
- <define name="term">
2002
- <element name="term">
2003
- <optional>
2004
- <attribute name="id">
2005
- <data type="ID"/>
2006
- </attribute>
2007
- </optional>
2008
- <optional>
2009
- <attribute name="language"/>
2010
- </optional>
2011
- <optional>
2012
- <attribute name="script"/>
2013
- </optional>
2014
- <optional>
2015
- <attribute name="tag"/>
2016
- </optional>
2017
- <optional>
2018
- <attribute name="multilingual-rendering">
2019
- <ref name="MultilingualRenderingType"/>
2020
- </attribute>
2021
- </optional>
2022
- <oneOrMore>
2023
- <ref name="preferred"/>
2024
- </oneOrMore>
2025
- <zeroOrMore>
2026
- <ref name="admitted"/>
2027
- </zeroOrMore>
2028
- <zeroOrMore>
2029
- <ref name="deprecates"/>
2030
- </zeroOrMore>
2031
- <zeroOrMore>
2032
- <ref name="related"/>
2033
- </zeroOrMore>
2034
- <optional>
2035
- <ref name="termdomain"/>
2036
- </optional>
2037
- <optional>
2038
- <ref name="termsubject"/>
2039
- </optional>
2040
- <oneOrMore>
2041
- <ref name="termdefinition"/>
2042
- </oneOrMore>
2043
- <zeroOrMore>
2044
- <ref name="termnote"/>
2045
- </zeroOrMore>
2046
- <zeroOrMore>
2047
- <ref name="termexample"/>
2048
- </zeroOrMore>
2049
- <zeroOrMore>
2050
- <ref name="termsource"/>
2051
- </zeroOrMore>
2052
- </element>
2053
- </define>
2054
- <define name="preferred">
2055
- <element name="preferred">
2056
- <ref name="Designation"/>
2057
- </element>
2058
- </define>
2059
- <define name="admitted">
2060
- <element name="admitted">
2061
- <ref name="Designation"/>
2062
- </element>
2063
- </define>
2064
- <define name="related">
2065
- <element name="related">
2066
- <attribute name="type">
2067
- <ref name="RelatedTermType"/>
2068
- </attribute>
2069
- <element name="preferred">
2070
- <ref name="Designation"/>
2071
- </element>
2072
- <choice>
2073
- <ref name="eref"/>
2074
- <ref name="xref"/>
2075
- <ref name="termref"/>
2076
- </choice>
2077
- </element>
2078
- </define>
2079
- <define name="RelatedTermType">
2080
- <choice>
2081
- <value>deprecates</value>
2082
- <value>supersedes</value>
2083
- <value>narrower</value>
2084
- <value>broader</value>
2085
- <value>equivalent</value>
2086
- <value>compare</value>
2087
- <value>contrast</value>
2088
- <value>see</value>
2089
- <value>seealso</value>
2090
- </choice>
2091
- </define>
2092
- <define name="deprecates">
2093
- <element name="deprecates">
2094
- <ref name="Designation"/>
2095
- </element>
2096
- </define>
2097
- <define name="Designation">
2098
- <optional>
2099
- <attribute name="absent">
2100
- <data type="boolean"/>
2101
- </attribute>
2102
- </optional>
2103
- <optional>
2104
- <attribute name="geographic-area"/>
2105
- </optional>
2106
- <choice>
2107
- <ref name="expression_designation"/>
2108
- <ref name="letter_symbol_designation"/>
2109
- <ref name="graphical_symbol_designation"/>
2110
- </choice>
2111
- <optional>
2112
- <ref name="fieldofapplication"/>
2113
- </optional>
2114
- <optional>
2115
- <ref name="usageinfo"/>
2116
- </optional>
2117
- <zeroOrMore>
2118
- <ref name="termsource"/>
2119
- </zeroOrMore>
2120
- </define>
2121
- <define name="fieldofapplication">
2122
- <element name="field-of-application">
2123
- <oneOrMore>
2124
- <ref name="PureTextElement"/>
2125
- </oneOrMore>
2126
- </element>
2127
- </define>
2128
- <define name="usageinfo">
2129
- <element name="usage-info">
2130
- <oneOrMore>
2131
- <ref name="PureTextElement"/>
2132
- </oneOrMore>
2133
- </element>
2134
- </define>
2135
- <define name="letter_symbol_designation">
2136
- <element name="letter-symbol">
2137
- <optional>
2138
- <attribute name="isInternational">
2139
- <data type="boolean"/>
2140
- </attribute>
2141
- </optional>
2142
- <element name="name">
2143
- <oneOrMore>
2144
- <choice>
2145
- <ref name="PureTextElement"/>
2146
- <ref name="stem"/>
2147
- </choice>
2148
- </oneOrMore>
2149
- </element>
2150
- </element>
2151
- </define>
2152
- <define name="graphical_symbol_designation">
2153
- <element name="graphical-symbol">
2154
- <optional>
2155
- <attribute name="isInternational">
2156
- <data type="boolean"/>
2157
- </attribute>
2158
- </optional>
2159
- <ref name="figure"/>
2160
- </element>
2161
- </define>
2162
- <define name="expression_designation">
2163
- <element name="expression">
2164
- <optional>
2165
- <attribute name="language">
2166
- <a:documentation>ISO-639</a:documentation>
2167
- </attribute>
2168
- </optional>
2169
- <optional>
2170
- <attribute name="script">
2171
- <a:documentation>ISO-15924</a:documentation>
2172
- </attribute>
2173
- </optional>
2174
- <optional>
2175
- <attribute name="type">
2176
- <ref name="ExpressionDesignationType"/>
2177
- </attribute>
2178
- </optional>
2179
- <optional>
2180
- <attribute name="isInternational">
2181
- <data type="boolean"/>
2182
- </attribute>
2183
- </optional>
2184
- <element name="name">
2185
- <zeroOrMore>
2186
- <choice>
2187
- <ref name="PureTextElement"/>
2188
- <ref name="stem"/>
2189
- <ref name="index"/>
2190
- </choice>
2191
- </zeroOrMore>
2192
- </element>
2193
- <optional>
2194
- <element name="abbreviation-type">
2195
- <ref name="AbbreviationType"/>
2196
- </element>
2197
- </optional>
2198
- <optional>
2199
- <element name="pronunciation">
2200
- <ref name="LocalizedString"/>
2201
- </element>
2202
- </optional>
2203
- <optional>
2204
- <element name="grammar">
2205
- <ref name="Grammar"/>
2206
- </element>
2207
- </optional>
2208
- </element>
2209
- </define>
2210
- <define name="ExpressionDesignationType">
2211
- <choice>
2212
- <value>prefix</value>
2213
- <value>suffix</value>
2214
- <value>abbreviation</value>
2215
- <value>full</value>
2216
- </choice>
2217
- </define>
2218
- <define name="AbbreviationType">
2219
- <choice>
2220
- <value>truncation</value>
2221
- <value>acronym</value>
2222
- <value>initialism</value>
2223
- </choice>
2224
- </define>
2225
- <define name="Grammar">
2226
- <zeroOrMore>
2227
- <element name="gender">
2228
- <ref name="GrammarGender"/>
2229
- </element>
2230
- </zeroOrMore>
2231
- <zeroOrMore>
2232
- <element name="number">
2233
- <ref name="GrammarNumber"/>
2234
- </element>
2235
- </zeroOrMore>
2236
- <optional>
2237
- <element name="isPreposition">
2238
- <data type="boolean"/>
2239
- </element>
2240
- </optional>
2241
- <optional>
2242
- <element name="isParticiple">
2243
- <data type="boolean"/>
2244
- </element>
2245
- </optional>
2246
- <optional>
2247
- <element name="isAdjective">
2248
- <data type="boolean"/>
2249
- </element>
2250
- </optional>
2251
- <optional>
2252
- <element name="isVerb">
2253
- <data type="boolean"/>
2254
- </element>
2255
- </optional>
2256
- <optional>
2257
- <element name="isAdverb">
2258
- <data type="boolean"/>
2259
- </element>
2260
- </optional>
2261
- <optional>
2262
- <element name="isNoun">
2263
- <data type="boolean"/>
2264
- </element>
2265
- </optional>
2266
- <zeroOrMore>
2267
- <element name="grammar-value">
2268
- <text/>
2269
- </element>
2270
- </zeroOrMore>
2271
- </define>
2272
- <define name="GrammarGender">
2273
- <choice>
2274
- <value>masculine</value>
2275
- <value>feminine</value>
2276
- <value>neuter</value>
2277
- <value>common</value>
2278
- </choice>
2279
- </define>
2280
- <define name="GrammarNumber">
2281
- <choice>
2282
- <value>singular</value>
2283
- <value>dual</value>
2284
- <value>plural</value>
2285
- </choice>
2286
- </define>
2287
- <define name="termdomain">
2288
- <element name="domain">
2289
- <oneOrMore>
2290
- <ref name="TextElement"/>
2291
- </oneOrMore>
2292
- </element>
2293
- </define>
2294
- <define name="termsubject">
2295
- <element name="subject">
2296
- <oneOrMore>
2297
- <ref name="TextElement"/>
2298
- </oneOrMore>
2299
- </element>
2300
- </define>
2301
- <define name="termdefinition">
2302
- <element name="definition">
2303
- <choice>
2304
- <ref name="verbaldefinition"/>
2305
- <ref name="nonverbalrep"/>
2306
- <group>
2307
- <ref name="verbaldefinition"/>
2308
- <ref name="nonverbalrep"/>
2309
- </group>
2310
- </choice>
2311
- </element>
2312
- </define>
2313
- <define name="verbaldefinition">
2314
- <element name="verbal-definition">
2315
- <oneOrMore>
2316
- <choice>
2317
- <ref name="paragraph"/>
2318
- <ref name="dl"/>
2319
- <ref name="ol"/>
2320
- <ref name="ul"/>
2321
- <ref name="table"/>
2322
- <ref name="figure"/>
2323
- <ref name="formula"/>
2324
- </choice>
2325
- </oneOrMore>
2326
- <zeroOrMore>
2327
- <ref name="termsource"/>
2328
- </zeroOrMore>
2329
- </element>
2330
- </define>
2331
- <define name="nonverbalrep">
2332
- <element name="non-verbal-representation">
2333
- <oneOrMore>
2334
- <choice>
2335
- <ref name="table"/>
2336
- <ref name="figure"/>
2337
- <ref name="formula"/>
2338
- </choice>
2339
- </oneOrMore>
2340
- <zeroOrMore>
2341
- <ref name="termsource"/>
2342
- </zeroOrMore>
2343
- </element>
2344
- </define>
2345
- <define name="termnote">
2346
- <element name="termnote">
2347
- <attribute name="id">
2348
- <data type="ID"/>
2349
- </attribute>
2350
- <optional>
2351
- <attribute name="unnumbered">
2352
- <data type="boolean"/>
2353
- </attribute>
2354
- </optional>
2355
- <optional>
2356
- <attribute name="number"/>
2357
- </optional>
2358
- <optional>
2359
- <attribute name="subsequence"/>
2360
- </optional>
2361
- <optional>
2362
- <attribute name="keep-with-next">
2363
- <data type="boolean"/>
2364
- </attribute>
2365
- </optional>
2366
- <optional>
2367
- <attribute name="keep-lines-together">
2368
- <data type="boolean"/>
2369
- </attribute>
2370
- </optional>
2371
- <optional>
2372
- <attribute name="tag"/>
2373
- </optional>
2374
- <optional>
2375
- <attribute name="multilingual-rendering">
2376
- <ref name="MultilingualRenderingType"/>
2377
- </attribute>
2378
- </optional>
2379
- <oneOrMore>
2380
- <choice>
2381
- <ref name="paragraph"/>
2382
- <ref name="ul"/>
2383
- <ref name="ol"/>
2384
- <ref name="dl"/>
2385
- <ref name="formula"/>
2386
- </choice>
2387
- </oneOrMore>
2388
- </element>
2389
- </define>
2390
- <define name="termexample">
2391
- <element name="termexample">
2392
- <attribute name="id">
2393
- <data type="ID"/>
2394
- </attribute>
2395
- <optional>
2396
- <attribute name="keep-with-next">
2397
- <data type="boolean"/>
2398
- </attribute>
2399
- </optional>
2400
- <optional>
2401
- <attribute name="keep-lines-together">
2402
- <data type="boolean"/>
2403
- </attribute>
2404
- </optional>
2405
- <optional>
2406
- <attribute name="tag"/>
2407
- </optional>
2408
- <optional>
2409
- <attribute name="multilingual-rendering">
2410
- <ref name="MultilingualRenderingType"/>
2411
- </attribute>
2412
- </optional>
2413
- <oneOrMore>
2414
- <choice>
2415
- <ref name="formula"/>
2416
- <ref name="ul"/>
2417
- <ref name="ol"/>
2418
- <ref name="dl"/>
2419
- <ref name="quote"/>
2420
- <ref name="sourcecode"/>
2421
- <ref name="paragraph"/>
2422
- <ref name="figure"/>
2423
- </choice>
2424
- </oneOrMore>
2425
- </element>
2426
- </define>
2427
- <define name="termsource">
2428
- <element name="termsource">
2429
- <attribute name="status">
2430
- <choice>
2431
- <value>identical</value>
2432
- <value>modified</value>
2433
- </choice>
2434
- </attribute>
2435
- <attribute name="type">
2436
- <choice>
2437
- <value>authoritative</value>
2438
- <value>lineage</value>
2439
- </choice>
2440
- </attribute>
2441
- <ref name="origin"/>
2442
- <optional>
2443
- <ref name="modification"/>
2444
- </optional>
2445
- </element>
2446
- </define>
2447
- <define name="origin">
2448
- <element name="origin">
2449
- <choice>
2450
- <ref name="erefType"/>
2451
- <ref name="termref"/>
2452
- </choice>
2453
- </element>
2454
- </define>
2455
- <define name="modification">
2456
- <element name="modification">
2457
- <ref name="paragraph"/>
2458
- </element>
2459
- </define>
2460
- <define name="termref">
2461
- <element name="termref">
2462
- <attribute name="base"/>
2463
- <attribute name="target"/>
2464
- <optional>
2465
- <text/>
2466
- </optional>
2467
- </element>
2468
- </define>
2469
- <define name="structuredidentifier">
2470
- <element name="structuredidentifier">
2471
- <optional>
2472
- <attribute name="type"/>
2473
- </optional>
2474
- <oneOrMore>
2475
- <element name="agency">
2476
- <text/>
2477
- </element>
2478
- </oneOrMore>
2479
- <optional>
2480
- <element name="class">
2481
- <text/>
2482
- </element>
2483
- </optional>
2484
- <element name="docnumber">
2485
- <text/>
2486
- </element>
2487
- <optional>
2488
- <element name="partnumber">
2489
- <text/>
2490
- </element>
2491
- </optional>
2492
- <optional>
2493
- <element name="edition">
2494
- <text/>
2495
- </element>
2496
- </optional>
2497
- <optional>
2498
- <element name="version">
2499
- <text/>
2500
- </element>
2501
- </optional>
2502
- <optional>
2503
- <element name="supplementtype">
2504
- <text/>
2505
- </element>
2506
- </optional>
2507
- <optional>
2508
- <element name="supplementnumber">
2509
- <text/>
2510
- </element>
2511
- </optional>
2512
- <optional>
2513
- <element name="amendment">
2514
- <text/>
2515
- </element>
2516
- </optional>
2517
- <optional>
2518
- <element name="corrigendum">
2519
- <text/>
2520
- </element>
2521
- </optional>
2522
- <optional>
2523
- <element name="language">
2524
- <text/>
2525
- </element>
2526
- </optional>
2527
- <optional>
2528
- <element name="year">
2529
- <text/>
2530
- </element>
2531
- </optional>
2532
- </element>
2533
- </define>
2534
- <define name="term-clause">
2535
- <element name="clause">
2536
- <optional>
2537
- <attribute name="id">
2538
- <data type="ID"/>
2539
- </attribute>
2540
- </optional>
2541
- <optional>
2542
- <attribute name="language"/>
2543
- </optional>
2544
- <optional>
2545
- <attribute name="script"/>
2546
- </optional>
2547
- <optional>
2548
- <attribute name="inline-header">
2549
- <data type="boolean"/>
2550
- </attribute>
2551
- </optional>
2552
- <optional>
2553
- <attribute name="obligation">
2554
- <choice>
2555
- <value>normative</value>
2556
- <value>informative</value>
2557
- </choice>
2558
- </attribute>
2559
- </optional>
2560
- <optional>
2561
- <ref name="section-title"/>
2562
- </optional>
2563
- <zeroOrMore>
2564
- <ref name="BasicBlock"/>
2565
- </zeroOrMore>
2566
- <zeroOrMore>
2567
- <choice>
2568
- <ref name="term-clause"/>
2569
- <ref name="terms"/>
2570
- <ref name="definitions"/>
2571
- </choice>
2572
- </zeroOrMore>
2573
- </element>
2574
- </define>
2575
- <define name="termdocsource">
2576
- <element name="termdocsource">
2577
- <ref name="CitationType"/>
2578
- </element>
2579
- </define>
2580
- <define name="amend">
2581
- <element name="amend">
2582
- <optional>
2583
- <attribute name="id">
2584
- <data type="ID"/>
2585
- </attribute>
2586
- </optional>
2587
- <attribute name="change">
2588
- <choice>
2589
- <value>add</value>
2590
- <value>modify</value>
2591
- <value>delete</value>
2592
- <value>replace</value>
2593
- </choice>
2594
- </attribute>
2595
- <optional>
2596
- <attribute name="path"/>
2597
- </optional>
2598
- <optional>
2599
- <attribute name="path_end"/>
2600
- </optional>
2601
- <optional>
2602
- <attribute name="title"/>
2603
- </optional>
2604
- <optional>
2605
- <attribute name="tag"/>
2606
- </optional>
2607
- <optional>
2608
- <attribute name="multilingual-rendering">
2609
- <ref name="MultilingualRenderingType"/>
2610
- </attribute>
2611
- </optional>
2612
- <optional>
2613
- <element name="location">
2614
- <zeroOrMore>
2615
- <ref name="locality"/>
2616
- </zeroOrMore>
2617
- </element>
2618
- </optional>
2619
- <zeroOrMore>
2620
- <ref name="autonumber"/>
2621
- </zeroOrMore>
2622
- <optional>
2623
- <element name="description">
2624
- <zeroOrMore>
2625
- <ref name="BasicBlock"/>
2626
- </zeroOrMore>
2627
- </element>
2628
- </optional>
2629
- <optional>
2630
- <element name="newcontent">
2631
- <optional>
2632
- <attribute name="id">
2633
- <data type="ID"/>
2634
- </attribute>
2635
- </optional>
2636
- <zeroOrMore>
2637
- <ref name="BasicBlock"/>
2638
- </zeroOrMore>
2639
- </element>
2640
- </optional>
2641
- <optional>
2642
- <element name="description">
2643
- <zeroOrMore>
2644
- <ref name="BasicBlock"/>
2645
- </zeroOrMore>
2646
- </element>
2647
- </optional>
2648
- </element>
2649
- </define>
2650
- <define name="autonumber">
2651
- <element name="autonumber">
2652
- <attribute name="type">
2653
- <choice>
2654
- <value>requirement</value>
2655
- <value>recommendation</value>
2656
- <value>permission</value>
2657
- <value>table</value>
2658
- <value>figure</value>
2659
- <value>admonition</value>
2660
- <value>formula</value>
2661
- <value>sourcecode</value>
2662
- <value>example</value>
2663
- <value>note</value>
2664
- </choice>
2665
- </attribute>
2666
- <text/>
2667
- </element>
2668
- </define>
2669
- <define name="imagemap">
2670
- <element name="imagemap">
2671
- <optional>
2672
- <attribute name="tag"/>
2673
- </optional>
2674
- <optional>
2675
- <attribute name="multilingual-rendering">
2676
- <ref name="MultilingualRenderingType"/>
2677
- </attribute>
2678
- </optional>
2679
- <ref name="figure"/>
2680
- <zeroOrMore>
2681
- <element name="area">
2682
- <attribute name="type">
2683
- <choice>
2684
- <value>rect</value>
2685
- <value>circle</value>
2686
- <value>ellipse</value>
2687
- <value>poly</value>
2688
- </choice>
2689
- </attribute>
2690
- <choice>
2691
- <ref name="xref"/>
2692
- <ref name="hyperlink"/>
2693
- <ref name="eref"/>
2694
- </choice>
2695
- <oneOrMore>
2696
- <element name="coords">
2697
- <attribute name="x">
2698
- <data type="float"/>
2699
- </attribute>
2700
- <attribute name="y">
2701
- <data type="float"/>
2702
- </attribute>
2703
- </element>
2704
- </oneOrMore>
2705
- <optional>
2706
- <element name="radius">
2707
- <attribute name="x">
2708
- <data type="float"/>
2709
- </attribute>
2710
- <optional>
2711
- <attribute name="y">
2712
- <data type="float"/>
2713
- </attribute>
2714
- </optional>
2715
- </element>
2716
- </optional>
2717
- </element>
2718
- </zeroOrMore>
2719
- </element>
2720
- </define>
2721
- <define name="svgmap">
2722
- <element name="svgmap">
2723
- <optional>
2724
- <attribute name="tag"/>
2725
- </optional>
2726
- <optional>
2727
- <attribute name="multilingual-rendering">
2728
- <ref name="MultilingualRenderingType"/>
2729
- </attribute>
2730
- </optional>
2731
- <ref name="figure"/>
2732
- <zeroOrMore>
2733
- <element name="target">
2734
- <attribute name="href">
2735
- <data type="anyURI"/>
2736
- </attribute>
2737
- <choice>
2738
- <ref name="xref"/>
2739
- <ref name="hyperlink"/>
2740
- <ref name="eref"/>
2741
- </choice>
2742
- </element>
2743
- </zeroOrMore>
2744
- </element>
2745
- </define>
2746
- <define name="ul_li">
2747
- <element name="li">
2748
- <optional>
2749
- <attribute name="id">
2750
- <data type="ID"/>
2751
- </attribute>
2752
- </optional>
2753
- <optional>
2754
- <attribute name="uncheckedcheckbox">
2755
- <data type="boolean"/>
2756
- </attribute>
2757
- </optional>
2758
- <optional>
2759
- <attribute name="checkedcheckbox">
2760
- <data type="boolean"/>
2761
- </attribute>
2762
- </optional>
2763
- <oneOrMore>
2764
- <ref name="BasicBlock"/>
2765
- </oneOrMore>
2766
- </element>
2767
- </define>
2768
- <define name="floating-title">
2769
- <element name="floating-title">
2770
- <attribute name="id">
2771
- <data type="ID"/>
2772
- </attribute>
2773
- <attribute name="depth">
2774
- <data type="int"/>
2775
- </attribute>
2776
- <zeroOrMore>
2777
- <ref name="TextElement"/>
2778
- </zeroOrMore>
2779
- </element>
2780
- </define>
2781
- <define name="XrefBody">
2782
- <zeroOrMore>
2783
- <ref name="XrefTarget"/>
2784
- </zeroOrMore>
2785
- <oneOrMore>
2786
- <ref name="PureTextElement"/>
2787
- </oneOrMore>
2788
- </define>
2789
- <define name="XrefTarget">
2790
- <element name="location">
2791
- <attribute name="target">
2792
- <data type="string">
2793
- <param name="pattern">\i\c*|\c+#\c+</param>
2794
- </data>
2795
- </attribute>
2796
- <attribute name="connective">
2797
- <choice>
2798
- <value>and</value>
2799
- <value>or</value>
2800
- <value>from</value>
2801
- <value>to</value>
2802
- <value/>
2803
- </choice>
2804
- </attribute>
2805
- </element>
2806
- </define>
2807
- </grammar>