forked from runpaint/read-ruby
-
Notifications
You must be signed in to change notification settings - Fork 3
/
docbook.rng
15292 lines (15284 loc) · 496 KB
/
docbook.rng
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"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:s="http://www.ascc.net/xml/schematron" xmlns:rng="http://relaxng.org/ns/structure/1.0" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:db="http://docbook.org/ns/docbook" xmlns:ctrl="http://nwalsh.com/xmlns/schema-control/" xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" ns="http://docbook.org/ns/docbook">
<s:ns prefix="a" uri="http://relaxng.org/ns/compatibility/annotations/1.0"/>
<s:ns prefix="ctrl" uri="http://nwalsh.com/xmlns/schema-control/"/>
<s:ns prefix="db" uri="http://docbook.org/ns/docbook"/>
<s:ns prefix="dbx" uri="http://sourceforge.net/projects/docbook/defguide/schema/extra-markup"/>
<s:ns prefix="html" uri="http://www.w3.org/1999/xhtml"/>
<s:ns prefix="mml" uri="http://www.w3.org/1998/Math/MathML"/>
<s:ns prefix="rng" uri="http://relaxng.org/ns/structure/1.0"/>
<s:ns prefix="s" uri="http://www.ascc.net/xml/schematron"/>
<s:ns prefix="svg" uri="http://www.w3.org/2000/svg"/>
<s:ns prefix="xlink" uri="http://www.w3.org/1999/xlink"/>
<!-- DocBook V5.0CR5-->
<!-- See http://docbook.org/ns/docbook -->
<!--
This file is part of DocBook V5.0
Copyright 1992-2008 HaL Computer Systems, Inc.,
O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software
Corporation, Norman Walsh, Sun Microsystems, Inc., and the
Organization for the Advancement of Structured Information
Standards (OASIS).
Release: $Id: docbook.rnc 7661 2008-02-06 13:52:59Z nwalsh $
Permission to use, copy, modify and distribute the DocBook schema
and its accompanying documentation for any purpose and without fee
is hereby granted in perpetuity, provided that the above copyright
notice and this paragraph appear in all copies. The copyright
holders make no representation about the suitability of the schema
for any purpose. It is provided "as is" without expressed or implied
warranty.
If you modify the DocBook schema in any way, label your schema as a
variant of DocBook. See the reference documentation
(http://docbook.org/tdg5/en/html/ch05.html#s-notdocbook)
for more information.
Please direct all questions, bug reports, or suggestions for changes
to the docbook@lists.oasis-open.org mailing list. For more
information, see http://www.oasis-open.org/docbook/.
======================================================================
-->
<start>
<choice>
<choice>
<ref name="db.set"/>
<ref name="db.book"/>
<ref name="db.divisions"/>
<ref name="db.components"/>
<ref name="db.navigation.components"/>
<ref name="db.section"/>
<ref name="db.para"/>
</choice>
<choice>
<ref name="db.sect1"/>
<ref name="db.sect2"/>
<ref name="db.sect3"/>
<ref name="db.sect4"/>
<ref name="db.sect5"/>
</choice>
<choice>
<ref name="db.refentry"/>
<ref name="db.refsection"/>
</choice>
<choice>
<ref name="db.refsect1"/>
<ref name="db.refsect2"/>
<ref name="db.refsect3"/>
</choice>
<ref name="db.setindex"/>
</choice>
</start>
<div>
<define name="db._any.attribute">
<attribute>
<a:documentation>Any attribute including in any attribute in any namespace.</a:documentation>
<anyName/>
</attribute>
</define>
<define name="db._any">
<element>
<a:documentation>Any element from almost any namespace</a:documentation>
<anyName>
<except>
<nsName/>
<nsName ns="http://www.w3.org/1999/xhtml"/>
</except>
</anyName>
<zeroOrMore>
<choice>
<ref name="db._any.attribute"/>
<text/>
<ref name="db._any"/>
</choice>
</zeroOrMore>
</element>
</define>
</div>
<define name="db.arch.attribute">
<attribute name="arch">
<a:documentation>Designates the computer or chip architecture to which the element applies</a:documentation>
</attribute>
</define>
<define name="db.audience.attribute">
<attribute name="audience">
<a:documentation>Designates the intended audience to which the element applies, for example, system administrators, programmers, or new users.</a:documentation>
</attribute>
</define>
<define name="db.condition.attribute">
<attribute name="condition">
<a:documentation>provides a standard place for application-specific effectivity</a:documentation>
</attribute>
</define>
<define name="db.conformance.attribute">
<attribute name="conformance">
<a:documentation>Indicates standards conformance characteristics of the element</a:documentation>
</attribute>
</define>
<define name="db.os.attribute">
<attribute name="os">
<a:documentation>Indicates the operating system to which the element is applicable</a:documentation>
</attribute>
</define>
<define name="db.revision.attribute">
<attribute name="revision">
<a:documentation>Indicates the editorial revision to which the element belongs</a:documentation>
</attribute>
</define>
<define name="db.security.attribute">
<attribute name="security">
<a:documentation>Indicates something about the security level associated with the element to which it applies</a:documentation>
</attribute>
</define>
<define name="db.userlevel.attribute">
<attribute name="userlevel">
<a:documentation>Indicates the level of user experience for which the element applies</a:documentation>
</attribute>
</define>
<define name="db.vendor.attribute">
<attribute name="vendor">
<a:documentation>Indicates the computer vendor to which the element applies.</a:documentation>
</attribute>
</define>
<define name="db.wordsize.attribute">
<attribute name="wordsize">
<a:documentation>Indicates the word size (width in bits) of the computer architecture to which the element applies</a:documentation>
</attribute>
</define>
<define name="db.effectivity.attributes">
<interleave>
<optional>
<ref name="db.arch.attribute"/>
</optional>
<optional>
<ref name="db.audience.attribute"/>
</optional>
<optional>
<ref name="db.condition.attribute"/>
</optional>
<optional>
<ref name="db.conformance.attribute"/>
</optional>
<optional>
<ref name="db.os.attribute"/>
</optional>
<optional>
<ref name="db.revision.attribute"/>
</optional>
<optional>
<ref name="db.security.attribute"/>
</optional>
<optional>
<ref name="db.userlevel.attribute"/>
</optional>
<optional>
<ref name="db.vendor.attribute"/>
</optional>
<optional>
<ref name="db.wordsize.attribute"/>
</optional>
</interleave>
</define>
<define name="db.endterm.attribute">
<attribute name="endterm">
<a:documentation>Points to the element whose content is to be used as the text of the link</a:documentation>
<data type="IDREF"/>
</attribute>
</define>
<define name="db.linkend.attribute">
<attribute name="linkend">
<a:documentation>Points to an internal link target by identifying the value of its xml:id attribute</a:documentation>
<data type="IDREF"/>
</attribute>
</define>
<define name="db.linkends.attribute">
<attribute name="linkends">
<a:documentation>Points to one or more internal link targets by identifying the value of their xml:id attributes</a:documentation>
<data type="IDREFS"/>
</attribute>
</define>
<define name="db.xlink.href.attribute">
<attribute name="xlink:href">
<a:documentation>Identifies a link target with a URI</a:documentation>
<data type="anyURI"/>
</attribute>
</define>
<define name="db.xlink.type.attribute">
<attribute name="xlink:type">
<a:documentation>Identifies the XLink link type</a:documentation>
<value>simple</value>
<a:documentation>An XLink simple link</a:documentation>
</attribute>
</define>
<define name="db.xlink.role.attribute">
<attribute name="xlink:role">
<a:documentation>Identifies the XLink role of the link</a:documentation>
<data type="anyURI"/>
</attribute>
</define>
<define name="db.xlink.arcrole.attribute">
<attribute name="xlink:arcrole">
<a:documentation>Identifies the XLink arcrole of the link</a:documentation>
<data type="anyURI"/>
</attribute>
</define>
<define name="db.xlink.title.attribute">
<optional>
<attribute name="xlink:title">
<a:documentation>Identifies the XLink title of the link</a:documentation>
</attribute>
</optional>
</define>
<define name="db.xlink.show.enumeration">
<choice>
<value>new</value>
<a:documentation>An application traversing to the ending resource should load it in a new window, frame, pane, or other relevant presentation context.</a:documentation>
<value>replace</value>
<a:documentation>An application traversing to the ending resource should load the resource in the same window, frame, pane, or other relevant presentation context in which the starting resource was loaded.</a:documentation>
<value>embed</value>
<a:documentation>An application traversing to the ending resource should load its presentation in place of the presentation of the starting resource.</a:documentation>
<value>other</value>
<a:documentation>The behavior of an application traversing to the ending resource is unconstrained by XLink. The application should look for other markup present in the link to determine the appropriate behavior.</a:documentation>
<value>none</value>
<a:documentation>The behavior of an application traversing to the ending resource is unconstrained by this specification. No other markup is present to help the application determine the appropriate behavior.</a:documentation>
</choice>
</define>
<define name="db.xlink.show.attribute">
<attribute name="xlink:show">
<a:documentation>Identifies the XLink show behavior of the link</a:documentation>
<ref name="db.xlink.show.enumeration"/>
</attribute>
</define>
<define name="db.xlink.actuate.enumeration">
<choice>
<value>onLoad</value>
<a:documentation>An application should traverse to the ending resource immediately on loading the starting resource.</a:documentation>
<value>onRequest</value>
<a:documentation>An application should traverse from the starting resource to the ending resource only on a post-loading event triggered for the purpose of traversal.</a:documentation>
<value>other</value>
<a:documentation>The behavior of an application traversing to the ending resource is unconstrained by this specification. The application should look for other markup present in the link to determine the appropriate behavior.</a:documentation>
<value>none</value>
<a:documentation>The behavior of an application traversing to the ending resource is unconstrained by this specification. No other markup is present to help the application determine the appropriate behavior.</a:documentation>
</choice>
</define>
<define name="db.xlink.actuate.attribute">
<attribute name="xlink:actuate">
<a:documentation>Identifies the XLink actuate behavior of the link</a:documentation>
<ref name="db.xlink.actuate.enumeration"/>
</attribute>
</define>
<define name="db.href.attributes">
<interleave>
<ref name="db.xlink.href.attribute"/>
<optional>
<ref name="db.xlink.type.attribute"/>
</optional>
<optional>
<ref name="db.xlink.role.attribute"/>
</optional>
<optional>
<ref name="db.xlink.arcrole.attribute"/>
</optional>
<optional>
<ref name="db.xlink.title.attribute"/>
</optional>
<optional>
<ref name="db.xlink.show.attribute"/>
</optional>
<optional>
<ref name="db.xlink.actuate.attribute"/>
</optional>
</interleave>
</define>
<define name="db.xml.id.attribute">
<attribute name="xml:id">
<a:documentation>Identifies the unique ID value of the element</a:documentation>
<data type="ID"/>
</attribute>
</define>
<define name="db.version.attribute">
<attribute name="version">
<a:documentation>Specifies the DocBook version of the element and its descendants</a:documentation>
</attribute>
</define>
<define name="db.xml.lang.attribute">
<attribute name="xml:lang">
<a:documentation>Specifies the natural language of the element and its descendants</a:documentation>
</attribute>
</define>
<define name="db.xml.base.attribute">
<attribute name="xml:base">
<a:documentation>Specifies the base URI of the element and its descendants</a:documentation>
<data type="anyURI"/>
</attribute>
</define>
<define name="db.remap.attribute">
<attribute name="remap">
<a:documentation>Provides the name or similar semantic identifier assigned to the content in some previous markup scheme</a:documentation>
</attribute>
</define>
<define name="db.xreflabel.attribute">
<attribute name="xreflabel">
<a:documentation>Provides the text that is to be generated for a cross reference to the element</a:documentation>
</attribute>
</define>
<define name="db.xrefstyle.attribute">
<attribute name="xrefstyle">
<a:documentation>Specifies a keyword or keywords identifying additional style information</a:documentation>
</attribute>
</define>
<define name="db.revisionflag.enumeration">
<choice>
<value>changed</value>
<a:documentation>The element has been changed.</a:documentation>
<value>added</value>
<a:documentation>The element is new (has been added to the document).</a:documentation>
<value>deleted</value>
<a:documentation>The element has been deleted.</a:documentation>
<value>off</value>
<a:documentation>Explicitly turns off revision markup for this element.</a:documentation>
</choice>
</define>
<define name="db.revisionflag.attribute">
<attribute name="revisionflag">
<a:documentation>Identifies the revision status of the element</a:documentation>
<ref name="db.revisionflag.enumeration"/>
</attribute>
</define>
<define name="db.dir.enumeration">
<choice>
<value>ltr</value>
<a:documentation>Left-to-right text</a:documentation>
<value>rtl</value>
<a:documentation>Right-to-left text</a:documentation>
<value>lro</value>
<a:documentation>Left-to-right override</a:documentation>
<value>rlo</value>
<a:documentation>Right-to-left override</a:documentation>
</choice>
</define>
<define name="db.dir.attribute">
<attribute name="dir">
<a:documentation>Identifies the direction of text in an element</a:documentation>
<ref name="db.dir.enumeration"/>
</attribute>
</define>
<define name="db.common.base.attributes">
<interleave>
<optional>
<ref name="db.version.attribute"/>
</optional>
<optional>
<ref name="db.xml.lang.attribute"/>
</optional>
<optional>
<ref name="db.xml.base.attribute"/>
</optional>
<optional>
<ref name="db.remap.attribute"/>
</optional>
<optional>
<ref name="db.xreflabel.attribute"/>
</optional>
<optional>
<ref name="db.revisionflag.attribute"/>
</optional>
<optional>
<ref name="db.dir.attribute"/>
</optional>
<ref name="db.effectivity.attributes"/>
</interleave>
</define>
<define name="db.common.attributes">
<interleave>
<optional>
<ref name="db.xml.id.attribute"/>
</optional>
<ref name="db.common.base.attributes"/>
<optional>
<ref name="db.annotations.attribute"/>
</optional>
</interleave>
</define>
<define name="db.common.idreq.attributes">
<interleave>
<ref name="db.xml.id.attribute"/>
<ref name="db.common.base.attributes"/>
<optional>
<ref name="db.annotations.attribute"/>
</optional>
</interleave>
</define>
<define name="db.common.linking.attributes">
<optional>
<choice>
<ref name="db.linkend.attribute"/>
<ref name="db.href.attributes"/>
</choice>
</optional>
</define>
<define name="db.common.req.linking.attributes">
<choice>
<ref name="db.linkend.attribute"/>
<ref name="db.href.attributes"/>
</choice>
</define>
<define name="db.common.data.attributes">
<optional>
<attribute name="format">
<a:documentation>Specifies the format of the data</a:documentation>
</attribute>
</optional>
<choice>
<attribute name="fileref">
<a:documentation>Indentifies the location of the data by URI</a:documentation>
<data type="anyURI"/>
</attribute>
<attribute name="entityref">
<a:documentation>Identifies the location of the data by external identifier (entity name)</a:documentation>
<data type="ENTITY"/>
</attribute>
</choice>
</define>
<define name="db.verbatim.continuation.enumeration">
<choice>
<value>continues</value>
<a:documentation>Line numbering continues from the immediately preceding element with the same name.</a:documentation>
<value>restarts</value>
<a:documentation>Line numbering restarts (begins at 1, usually).</a:documentation>
</choice>
</define>
<define name="db.verbatim.continuation.attribute">
<attribute name="continuation">
<a:documentation>Determines whether line numbering continues from the previous element or restarts.</a:documentation>
<ref name="db.verbatim.continuation.enumeration"/>
</attribute>
</define>
<define name="db.verbatim.linenumbering.enumeration">
<choice>
<value>numbered</value>
<a:documentation>Lines are numbered.</a:documentation>
<value>unnumbered</value>
<a:documentation>Lines are not numbered.</a:documentation>
</choice>
</define>
<define name="db.verbatim.linenumbering.attribute">
<attribute name="linenumbering">
<a:documentation>Determines whether lines are numbered.</a:documentation>
<ref name="db.verbatim.linenumbering.enumeration"/>
</attribute>
</define>
<define name="db.verbatim.startinglinenumber.attribute">
<attribute name="startinglinenumber">
<a:documentation>Specifies the initial line number.</a:documentation>
<data type="integer"/>
</attribute>
</define>
<define name="db.verbatim.language.attribute">
<attribute name="language">
<a:documentation>Identifies the language (i.e. programming language) of the verbatim content.</a:documentation>
</attribute>
</define>
<define name="db.verbatim.xml.space.attribute">
<attribute name="xml:space">
<a:documentation>Can be used to indicate explicitly that whitespace in the verbatim environment is preserved. Whitespace must always be preserved in verbatim environments whether this attribute is specified or not.</a:documentation>
<value>preserve</value>
<a:documentation>Whitespace must be preserved.</a:documentation>
</attribute>
</define>
<define name="db.verbatim.attributes">
<interleave>
<optional>
<ref name="db.verbatim.continuation.attribute"/>
</optional>
<optional>
<ref name="db.verbatim.linenumbering.attribute"/>
</optional>
<optional>
<ref name="db.verbatim.startinglinenumber.attribute"/>
</optional>
<optional>
<ref name="db.verbatim.language.attribute"/>
</optional>
<optional>
<ref name="db.verbatim.xml.space.attribute"/>
</optional>
</interleave>
</define>
<define name="db.label.attribute">
<attribute name="label">
<a:documentation>Specifies an identifying string for presentation purposes</a:documentation>
</attribute>
</define>
<define name="db.width.characters.attribute">
<attribute name="width">
<a:documentation>Specifies the width (in characters) of the element</a:documentation>
<data type="nonNegativeInteger"/>
</attribute>
</define>
<define name="db.spacing.enumeration">
<choice>
<value>compact</value>
<a:documentation>The spacing should be "compact".</a:documentation>
<value>normal</value>
<a:documentation>The spacing should be "normal".</a:documentation>
</choice>
</define>
<define name="db.spacing.attribute">
<attribute name="spacing">
<a:documentation>Specifies (a hint about) the spacing of the content</a:documentation>
<ref name="db.spacing.enumeration"/>
</attribute>
</define>
<define name="db.pgwide.enumeration">
<choice>
<value>0</value>
<a:documentation>The element should be rendered in the current text flow (with the flow column width).</a:documentation>
<value>1</value>
<a:documentation>The element should be rendered across the full text page.</a:documentation>
</choice>
</define>
<define name="db.pgwide.attribute">
<attribute name="pgwide">
<a:documentation>Indicates if the element is rendered across the column or the page</a:documentation>
<ref name="db.pgwide.enumeration"/>
</attribute>
</define>
<define name="db.language.attribute">
<attribute name="language">
<a:documentation>Identifies the language (i.e. programming language) of the content.</a:documentation>
</attribute>
</define>
<define name="db.performance.enumeration">
<choice>
<value>optional</value>
<a:documentation>The content describes an optional step or steps.</a:documentation>
<value>required</value>
<a:documentation>The content describes a required step or steps.</a:documentation>
</choice>
</define>
<define name="db.performance.attribute">
<attribute name="performance">
<a:documentation>Specifies if the content is required or optional.</a:documentation>
<ref name="db.performance.enumeration"/>
</attribute>
</define>
<define name="db.floatstyle.attribute">
<attribute name="floatstyle">
<a:documentation>Specifies style information to be used when rendering the float</a:documentation>
</attribute>
</define>
<define name="db.width.attribute">
<attribute name="width">
<a:documentation>Specifies the width of the element</a:documentation>
</attribute>
</define>
<define name="db.depth.attribute">
<attribute name="depth">
<a:documentation>Specifies the depth of the element</a:documentation>
</attribute>
</define>
<define name="db.contentwidth.attribute">
<attribute name="contentwidth">
<a:documentation>Specifies the width of the content rectangle</a:documentation>
</attribute>
</define>
<define name="db.contentdepth.attribute">
<attribute name="contentdepth">
<a:documentation>Specifies the depth of the content rectangle</a:documentation>
</attribute>
</define>
<define name="db.scalefit.enumeration">
<choice>
<value>0</value>
<a:documentation>False (do not scale-to-fit; anamorphic scaling may occur)</a:documentation>
<value>1</value>
<a:documentation>True (scale-to-fit; anamorphic scaling is forbidden)</a:documentation>
</choice>
</define>
<define name="db.scale.attribute">
<attribute name="scale">
<a:documentation>Specifies the scaling factor</a:documentation>
<data type="positiveInteger"/>
</attribute>
</define>
<define name="db.halign.enumeration">
<choice>
<value>center</value>
<a:documentation>Centered horizontally</a:documentation>
<value>char</value>
<a:documentation>Aligned horizontally on the specified character</a:documentation>
<value>justify</value>
<a:documentation>Fully justified (left and right margins or edges)</a:documentation>
<value>left</value>
<a:documentation>Left aligned</a:documentation>
<value>right</value>
<a:documentation>Right aligned</a:documentation>
</choice>
</define>
<define name="db.valign.enumeration">
<choice>
<value>bottom</value>
<a:documentation>Aligned on the bottom of the region</a:documentation>
<value>middle</value>
<a:documentation>Centered vertically</a:documentation>
<value>top</value>
<a:documentation>Aligned on the top of the region</a:documentation>
</choice>
</define>
<define name="db.biblio.class.enumeration">
<choice>
<value>doi</value>
<a:documentation>A document object identifier.</a:documentation>
<value>isbn</value>
<a:documentation>An international standard book number.</a:documentation>
<value>isrn</value>
<a:documentation>An international standard technical report number (ISO 10444).</a:documentation>
<value>issn</value>
<a:documentation>An international standard serial number.</a:documentation>
<value>libraryofcongress</value>
<a:documentation>A Library of Congress reference number.</a:documentation>
<value>pubsnumber</value>
<a:documentation>A publication number (an internal number or possibly organizational standard).</a:documentation>
<value>uri</value>
<a:documentation>A Uniform Resource Identifier</a:documentation>
</choice>
</define>
<define name="db.biblio.class-enum.attribute">
<optional>
<attribute name="class">
<a:documentation>Identifies the kind of bibliographic identifier</a:documentation>
<ref name="db.biblio.class.enumeration"/>
</attribute>
</optional>
</define>
<define name="db.biblio.class-other.attribute">
<attribute name="otherclass">
<a:documentation>Identifies the nature of the non-standard bibliographic identifier</a:documentation>
<data type="NMTOKEN"/>
</attribute>
</define>
<define name="db.biblio.class-other.attributes">
<interleave>
<attribute name="class">
<a:documentation>Identifies the kind of bibliographic identifier</a:documentation>
<value>other</value>
<a:documentation>Indicates that the identifier is some 'other' kind.</a:documentation>
</attribute>
<ref name="db.biblio.class-other.attribute"/>
</interleave>
</define>
<define name="db.biblio.class.attribute">
<choice>
<ref name="db.biblio.class-enum.attribute"/>
<ref name="db.biblio.class-other.attributes"/>
</choice>
</define>
<define name="db.ubiq.inlines">
<choice>
<choice>
<ref name="db.inlinemediaobject"/>
<ref name="db.remark"/>
<ref name="db.superscript"/>
<ref name="db.subscript"/>
<ref name="db.link.inlines"/>
<ref name="db.alt"/>
</choice>
<ref name="db.annotation"/>
<ref name="db.indexterm"/>
</choice>
</define>
<define name="db._text">
<zeroOrMore>
<choice>
<text/>
<ref name="db.ubiq.inlines"/>
<ref name="db._phrase"/>
<ref name="db.replaceable"/>
</choice>
</zeroOrMore>
</define>
<define name="db._title">
<interleave>
<optional>
<ref name="db.title"/>
</optional>
<optional>
<ref name="db.titleabbrev"/>
</optional>
<optional>
<ref name="db.subtitle"/>
</optional>
</interleave>
</define>
<define name="db._title.req">
<interleave>
<ref name="db.title"/>
<optional>
<ref name="db.titleabbrev"/>
</optional>
<optional>
<ref name="db.subtitle"/>
</optional>
</interleave>
</define>
<define name="db._title.only">
<interleave>
<optional>
<ref name="db.title"/>
</optional>
<optional>
<ref name="db.titleabbrev"/>
</optional>
</interleave>
</define>
<define name="db._title.onlyreq">
<interleave>
<ref name="db.title"/>
<optional>
<ref name="db.titleabbrev"/>
</optional>
</interleave>
</define>
<define name="db._info">
<choice>
<group>
<ref name="db._title"/>
<optional>
<ref name="db.titleforbidden.info"/>
</optional>
</group>
<optional>
<ref name="db.info"/>
</optional>
</choice>
</define>
<define name="db._info.title.req">
<choice>
<group>
<ref name="db._title.req"/>
<optional>
<ref name="db.titleforbidden.info"/>
</optional>
</group>
<ref name="db.titlereq.info"/>
</choice>
</define>
<define name="db._info.title.only">
<choice>
<group>
<ref name="db._title.only"/>
<optional>
<ref name="db.titleforbidden.info"/>
</optional>
</group>
<ref name="db.titleonly.info"/>
</choice>
</define>
<define name="db._info.title.onlyreq">
<choice>
<group>
<ref name="db._title.onlyreq"/>
<optional>
<ref name="db.titleforbidden.info"/>
</optional>
</group>
<ref name="db.titleonlyreq.info"/>
</choice>
</define>
<define name="db._info.title.forbidden">
<optional>
<ref name="db.titleforbidden.info"/>
</optional>
</define>
<define name="db.all.inlines">
<choice>
<text/>
<ref name="db.ubiq.inlines"/>
<ref name="db.general.inlines"/>
<ref name="db.domain.inlines"/>
<ref name="db.extension.inlines"/>
</choice>
</define>
<define name="db.general.inlines">
<choice>
<ref name="db.publishing.inlines"/>
<ref name="db.product.inlines"/>
<ref name="db.bibliography.inlines"/>
<ref name="db.graphic.inlines"/>
<ref name="db.indexing.inlines"/>
<ref name="db.link.inlines"/>
</choice>
</define>
<define name="db.domain.inlines">
<choice>
<ref name="db.technical.inlines"/>
<ref name="db.math.inlines"/>
<ref name="db.markup.inlines"/>
<ref name="db.gui.inlines"/>
<ref name="db.keyboard.inlines"/>
<ref name="db.os.inlines"/>
<ref name="db.programming.inlines"/>
<ref name="db.error.inlines"/>
</choice>
</define>
<define name="db.technical.inlines">
<choice>
<choice>
<ref name="db.replaceable"/>
<ref name="db.package"/>
<ref name="db.parameter"/>
</choice>
<ref name="db.termdef"/>
<ref name="db.nonterminal"/>
<choice>
<ref name="db.systemitem"/>
<ref name="db.option"/>
<ref name="db.optional"/>
<ref name="db.property"/>
</choice>
</choice>
</define>
<define name="db.product.inlines">
<choice>
<ref name="db.trademark"/>
<choice>
<ref name="db.productnumber"/>
<ref name="db.productname"/>
<ref name="db.database"/>
<ref name="db.application"/>
<ref name="db.hardware"/>
</choice>
</choice>
</define>
<define name="db.bibliography.inlines">
<choice>
<ref name="db.citation"/>
<ref name="db.citerefentry"/>
<ref name="db.citetitle"/>
<ref name="db.citebiblioid"/>
<ref name="db.author"/>
<ref name="db.person"/>
<ref name="db.personname"/>
<ref name="db.org"/>
<ref name="db.orgname"/>
<ref name="db.editor"/>
<ref name="db.jobtitle"/>
</choice>
</define>
<define name="db.publishing.inlines">
<choice>
<choice>
<ref name="db.abbrev"/>
<ref name="db.acronym"/>
<ref name="db.date"/>
<ref name="db.emphasis"/>
<ref name="db.footnote"/>
<ref name="db.footnoteref"/>
<ref name="db.foreignphrase"/>
<ref name="db.phrase"/>
<ref name="db.quote"/>
<ref name="db.subscript"/>
<ref name="db.superscript"/>
<ref name="db.wordasword"/>
</choice>
<ref name="db.glossary.inlines"/>
<ref name="db.coref"/>
</choice>
</define>
<define name="db.graphic.inlines">
<ref name="db.inlinemediaobject"/>
</define>
<define name="db.indexing.inlines">
<choice>
<notAllowed/>
<ref name="db.indexterm"/>
</choice>
</define>
<define name="db.link.inlines">
<choice>
<choice>
<ref name="db.xref"/>
<ref name="db.link"/>
<ref name="db.olink"/>
<ref name="db.anchor"/>
</choice>
<ref name="db.biblioref"/>
</choice>
</define>
<define name="db.extension.inlines">
<notAllowed/>
</define>
<define name="db.nopara.blocks">
<choice>
<choice>
<ref name="db.list.blocks"/>
<ref name="db.formal.blocks"/>
<ref name="db.informal.blocks"/>
<ref name="db.publishing.blocks"/>
<ref name="db.graphic.blocks"/>
<ref name="db.technical.blocks"/>
<ref name="db.verbatim.blocks"/>
<ref name="db.bridgehead"/>
<ref name="db.remark"/>
<ref name="db.revhistory"/>
</choice>
<ref name="db.indexterm"/>
<ref name="db.synopsis.blocks"/>
<ref name="db.admonition.blocks"/>
</choice>
</define>
<define name="db.para.blocks">
<choice>
<ref name="db.anchor"/>
<ref name="db.para"/>
<ref name="db.formalpara"/>
<ref name="db.simpara"/>
</choice>
</define>
<define name="db.all.blocks">
<choice>
<choice>
<ref name="db.nopara.blocks"/>
<ref name="db.para.blocks"/>
<ref name="db.extension.blocks"/>
</choice>
<ref name="db.annotation"/>
</choice>
</define>
<define name="db.formal.blocks">
<choice>
<choice>
<ref name="db.example"/>
<ref name="db.figure"/>
<ref name="db.table"/>
</choice>
<ref name="db.equation"/>
</choice>
</define>
<define name="db.informal.blocks">
<choice>
<choice>
<ref name="db.informalexample"/>
<ref name="db.informalfigure"/>
<ref name="db.informaltable"/>
</choice>
<ref name="db.informalequation"/>
</choice>
</define>
<define name="db.publishing.blocks">
<choice>
<ref name="db.sidebar"/>
<ref name="db.blockquote"/>
<ref name="db.address"/>
<ref name="db.epigraph"/>
</choice>
</define>
<define name="db.graphic.blocks">
<choice>
<ref name="db.mediaobject"/>
<ref name="db.screenshot"/>
</choice>
</define>
<define name="db.technical.blocks">
<choice>
<ref name="db.procedure"/>
<ref name="db.task"/>
<choice>
<ref name="db.productionset"/>
<ref name="db.constraintdef"/>
</choice>
<ref name="db.msgset"/>
</choice>
</define>
<define name="db.list.blocks">
<choice>
<choice>
<ref name="db.itemizedlist"/>