relaton-bib 1.20.8 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +3 -1
- data/.rubocop.yml +1 -1
- data/CLAUDE.md +96 -0
- data/Gemfile +1 -4
- data/README.adoc +195 -154
- data/bin/console +1 -1
- data/grammars/basicdoc.rng +1572 -671
- data/grammars/biblio-standoc.rng +107 -46
- data/grammars/biblio.rng +1012 -377
- data/grammars/versions.json +26 -26
- data/lib/relaton/bib/converter/asciibib/to_asciibib.rb +663 -0
- data/lib/relaton/bib/converter/asciibib.rb +13 -0
- data/lib/relaton/bib/converter/bibtex/from_bibtex.rb +245 -0
- data/lib/relaton/bib/converter/bibtex/to_bibtex.rb +341 -0
- data/lib/relaton/bib/converter/bibtex.rb +23 -0
- data/lib/relaton/bib/converter/bibxml/from_rfcxml.rb +383 -0
- data/lib/relaton/bib/converter/bibxml/from_rfcxml_referencegroup.rb +71 -0
- data/lib/relaton/bib/converter/bibxml/to_rfcxml.rb +305 -0
- data/lib/relaton/bib/converter/bibxml/to_rfcxml_referencegroup.rb +52 -0
- data/lib/relaton/bib/converter/bibxml.rb +51 -0
- data/lib/relaton/bib/hash_parser_v1.rb +754 -0
- data/lib/relaton/bib/item_data.rb +229 -0
- data/lib/relaton/bib/model/abstract.rb +16 -0
- data/lib/relaton/bib/model/address.rb +22 -0
- data/lib/relaton/bib/model/affiliation.rb +16 -0
- data/lib/relaton/bib/model/bibdata.rb +24 -0
- data/lib/relaton/bib/model/bibitem.rb +23 -0
- data/lib/relaton/bib/model/contact.rb +18 -0
- data/lib/relaton/bib/model/contribution_info.rb +16 -0
- data/lib/relaton/bib/model/contributor.rb +71 -0
- data/lib/relaton/bib/model/copyright.rb +27 -0
- data/lib/relaton/bib/model/date.rb +31 -0
- data/lib/relaton/bib/model/depiction.rb +16 -0
- data/lib/relaton/bib/model/docidentifier.rb +33 -0
- data/lib/relaton/bib/model/doctype.rb +14 -0
- data/lib/relaton/bib/model/edition.rb +14 -0
- data/lib/relaton/bib/model/ext.rb +26 -0
- data/lib/relaton/bib/model/extent.rb +16 -0
- data/lib/relaton/bib/model/formattedref.rb +43 -0
- data/lib/relaton/bib/model/full_name_type.rb +64 -0
- data/lib/relaton/bib/model/fullname.rb +11 -0
- data/lib/relaton/bib/model/ics.rb +23 -0
- data/lib/relaton/bib/model/image.rb +28 -0
- data/lib/relaton/bib/model/item.rb +137 -0
- data/lib/relaton/bib/model/item_base.rb +27 -0
- data/lib/relaton/bib/model/keyword.rb +30 -0
- data/lib/relaton/bib/model/locality.rb +18 -0
- data/lib/relaton/bib/model/locality_stack.rb +14 -0
- data/lib/relaton/bib/model/localized_string.rb +57 -0
- data/lib/relaton/bib/model/localized_string_attrs.rb +24 -0
- data/lib/relaton/bib/model/logo.rb +14 -0
- data/lib/relaton/bib/model/medium.rb +22 -0
- data/lib/relaton/bib/model/note.rb +16 -0
- data/lib/relaton/bib/model/organization.rb +13 -0
- data/lib/relaton/bib/model/organization_type.rb +42 -0
- data/lib/relaton/bib/model/person.rb +36 -0
- data/lib/relaton/bib/model/phone.rb +14 -0
- data/lib/relaton/bib/model/place.rb +33 -0
- data/lib/relaton/bib/model/price.rb +14 -0
- data/lib/relaton/bib/model/relation.rb +43 -0
- data/lib/relaton/bib/model/series.rb +34 -0
- data/lib/relaton/bib/model/size.rb +23 -0
- data/lib/relaton/bib/model/source_locality_stack.rb +14 -0
- data/lib/relaton/bib/model/status.rb +27 -0
- data/lib/relaton/bib/model/structured_identifier.rb +48 -0
- data/lib/relaton/bib/model/subdivision.rb +16 -0
- data/lib/relaton/bib/model/title.rb +56 -0
- data/lib/relaton/bib/model/type/string_date.rb +48 -0
- data/lib/relaton/bib/model/uri.rb +18 -0
- data/lib/relaton/bib/model/validity.rb +16 -0
- data/lib/relaton/bib/model/version.rb +14 -0
- data/lib/relaton/bib/namespace_helper.rb +21 -0
- data/lib/relaton/bib/util.rb +18 -0
- data/lib/relaton/bib/version.rb +5 -0
- data/lib/relaton/bib.rb +45 -0
- data/relaton-bib.gemspec +11 -8
- metadata +125 -67
- data/lib/relaton_bib/bib_item_locality.rb +0 -175
- data/lib/relaton_bib/biblio_note.rb +0 -72
- data/lib/relaton_bib/biblio_version.rb +0 -46
- data/lib/relaton_bib/bibliographic_date.rb +0 -119
- data/lib/relaton_bib/bibliographic_item.rb +0 -668
- data/lib/relaton_bib/bibliographic_size.rb +0 -103
- data/lib/relaton_bib/bibtex_parser.rb +0 -246
- data/lib/relaton_bib/bibxml_parser.rb +0 -422
- data/lib/relaton_bib/classification.rb +0 -40
- data/lib/relaton_bib/config.rb +0 -16
- data/lib/relaton_bib/contribution_info.rb +0 -117
- data/lib/relaton_bib/contributor.rb +0 -277
- data/lib/relaton_bib/copyright_association.rb +0 -79
- data/lib/relaton_bib/deep_dup.rb +0 -30
- data/lib/relaton_bib/document_identifier.rb +0 -118
- data/lib/relaton_bib/document_relation.rb +0 -95
- data/lib/relaton_bib/document_relation_collection.rb +0 -57
- data/lib/relaton_bib/document_status.rb +0 -92
- data/lib/relaton_bib/document_type.rb +0 -52
- data/lib/relaton_bib/edition.rb +0 -55
- data/lib/relaton_bib/editorial_group.rb +0 -41
- data/lib/relaton_bib/extent.rb +0 -39
- data/lib/relaton_bib/forename.rb +0 -65
- data/lib/relaton_bib/formatted_ref.rb +0 -17
- data/lib/relaton_bib/formatted_string.rb +0 -133
- data/lib/relaton_bib/full_name.rb +0 -108
- data/lib/relaton_bib/hash_converter.rb +0 -568
- data/lib/relaton_bib/hit.rb +0 -52
- data/lib/relaton_bib/hit_collection.rb +0 -105
- data/lib/relaton_bib/ics.rb +0 -42
- data/lib/relaton_bib/image.rb +0 -95
- data/lib/relaton_bib/localized_string.rb +0 -149
- data/lib/relaton_bib/medium.rb +0 -76
- data/lib/relaton_bib/organization.rb +0 -165
- data/lib/relaton_bib/person.rb +0 -129
- data/lib/relaton_bib/place.rb +0 -203
- data/lib/relaton_bib/renderer/bibtex_builder.rb +0 -312
- data/lib/relaton_bib/renderer/bibxml.rb +0 -296
- data/lib/relaton_bib/series.rb +0 -119
- data/lib/relaton_bib/structured_identifier.rb +0 -173
- data/lib/relaton_bib/technical_committee.rb +0 -34
- data/lib/relaton_bib/typed_title_string.rb +0 -191
- data/lib/relaton_bib/typed_uri.rb +0 -57
- data/lib/relaton_bib/util.rb +0 -16
- data/lib/relaton_bib/validity.rb +0 -52
- data/lib/relaton_bib/version.rb +0 -3
- data/lib/relaton_bib/workers_pool.rb +0 -43
- data/lib/relaton_bib/workgroup.rb +0 -58
- data/lib/relaton_bib/xml_parser.rb +0 -718
- data/lib/relaton_bib.rb +0 -111
data/grammars/basicdoc.rng
CHANGED
|
@@ -1,18 +1,28 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
|
2
|
+
<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">
|
|
3
3
|
<define name="document">
|
|
4
|
+
<a:documentation>Document</a:documentation>
|
|
4
5
|
<element name="document">
|
|
5
6
|
<optional>
|
|
6
|
-
<attribute name="identifier"
|
|
7
|
+
<attribute name="identifier">
|
|
8
|
+
<a:documentation>A globally unique identifier for the document in an agreed identifier schema. The identifier is to be used for tracking interactions with the document without depending on formal document registries; it would be exemplified by a GUID, rather than a document registry identifier such as "`ISO 639`", which belongs to `bibdata`</a:documentation>
|
|
9
|
+
</attribute>
|
|
7
10
|
</optional>
|
|
8
|
-
<ref name="bibdata"
|
|
9
|
-
|
|
11
|
+
<ref name="bibdata">
|
|
12
|
+
<a:documentation>A bibliographic description, capturing bibliographic metadata about the document itself, including authors, title, and date of production</a:documentation>
|
|
13
|
+
</ref>
|
|
14
|
+
<ref name="sections">
|
|
15
|
+
<a:documentation>Hierarchically arranged units of textual content within the document</a:documentation>
|
|
16
|
+
</ref>
|
|
10
17
|
<zeroOrMore>
|
|
11
|
-
<ref name="references"
|
|
18
|
+
<ref name="references">
|
|
19
|
+
<a:documentation>Bibliographic content</a:documentation>
|
|
20
|
+
</ref>
|
|
12
21
|
</zeroOrMore>
|
|
13
22
|
</element>
|
|
14
23
|
</define>
|
|
15
24
|
<define name="bibdata">
|
|
25
|
+
<a:documentation>Bibliographic description of a document, used as metadata, expressed in the Relaton model</a:documentation>
|
|
16
26
|
<element name="bibdata">
|
|
17
27
|
<ref name="BibData"/>
|
|
18
28
|
</element>
|
|
@@ -25,51 +35,71 @@
|
|
|
25
35
|
</element>
|
|
26
36
|
</define>
|
|
27
37
|
<define name="section">
|
|
38
|
+
<a:documentation>Section: groups of blocks within text, which can also contain other sections</a:documentation>
|
|
28
39
|
<element name="section">
|
|
29
40
|
<ref name="Basic-Section"/>
|
|
30
41
|
<zeroOrMore>
|
|
31
|
-
<ref name="section"
|
|
42
|
+
<ref name="section">
|
|
43
|
+
<a:documentation>Sections contained within the current section. The relation is recursive,
|
|
44
|
+
so the hierarchical arrangement of sections can be arbitrarily deep</a:documentation>
|
|
45
|
+
</ref>
|
|
32
46
|
</zeroOrMore>
|
|
33
47
|
</element>
|
|
34
48
|
</define>
|
|
49
|
+
<define name="LanguageType">
|
|
50
|
+
<a:documentation>Two-letter language code taken from ISO 639, indicating the language in which the content is written</a:documentation>
|
|
51
|
+
<text/>
|
|
52
|
+
</define>
|
|
53
|
+
<define name="ScriptType">
|
|
54
|
+
<a:documentation>Four-letter script code taken from ISO 15924, indicating the script in which the content is written</a:documentation>
|
|
55
|
+
<text/>
|
|
56
|
+
</define>
|
|
57
|
+
<define name="LocaleType">
|
|
58
|
+
<a:documentation>(Two-letter) Country and country subdivisions identifier taken from ISO 3166, indicating the locale in which the content is written</a:documentation>
|
|
59
|
+
<text/>
|
|
60
|
+
</define>
|
|
35
61
|
<define name="Basic-Section">
|
|
62
|
+
<a:documentation>Group of blocks within text, which is a leaf node in the hierarchical organisation of text (does not contain any sections of its own)</a:documentation>
|
|
63
|
+
<ref name="Basic-Section-Attributes"/>
|
|
36
64
|
<optional>
|
|
37
|
-
<
|
|
38
|
-
<
|
|
39
|
-
</
|
|
40
|
-
</optional>
|
|
41
|
-
<optional>
|
|
42
|
-
<attribute name="language"/>
|
|
43
|
-
</optional>
|
|
44
|
-
<optional>
|
|
45
|
-
<attribute name="script"/>
|
|
46
|
-
</optional>
|
|
47
|
-
<optional>
|
|
48
|
-
<ref name="section-title"/>
|
|
65
|
+
<ref name="section-title">
|
|
66
|
+
<a:documentation>Title of the section</a:documentation>
|
|
67
|
+
</ref>
|
|
49
68
|
</optional>
|
|
50
69
|
<zeroOrMore>
|
|
51
|
-
<ref name="BasicBlock"
|
|
70
|
+
<ref name="BasicBlock">
|
|
71
|
+
<a:documentation>Blocks, containing the textual content of the section
|
|
72
|
+
(but excluding subsections, which are only present in Hierarchical Sections)</a:documentation>
|
|
73
|
+
</ref>
|
|
52
74
|
</zeroOrMore>
|
|
53
75
|
</define>
|
|
76
|
+
<define name="Basic-Section-Attributes">
|
|
77
|
+
<ref name="OptionalId"/>
|
|
78
|
+
<ref name="LocalizedStringAttributes"/>
|
|
79
|
+
</define>
|
|
54
80
|
<define name="references">
|
|
81
|
+
<a:documentation>Sections containing zero or more bibliographical items (as described in Relaton), along with any prefatory text</a:documentation>
|
|
55
82
|
<element name="references">
|
|
83
|
+
<ref name="OptionalId"/>
|
|
56
84
|
<optional>
|
|
57
|
-
<
|
|
58
|
-
<
|
|
59
|
-
</
|
|
60
|
-
</optional>
|
|
61
|
-
<optional>
|
|
62
|
-
<ref name="section-title"/>
|
|
85
|
+
<ref name="section-title">
|
|
86
|
+
<a:documentation>Title of section</a:documentation>
|
|
87
|
+
</ref>
|
|
63
88
|
</optional>
|
|
64
89
|
<zeroOrMore>
|
|
65
|
-
<ref name="BasicBlock"
|
|
90
|
+
<ref name="BasicBlock">
|
|
91
|
+
<a:documentation>Prefatory text</a:documentation>
|
|
92
|
+
</ref>
|
|
66
93
|
</zeroOrMore>
|
|
67
94
|
<zeroOrMore>
|
|
68
|
-
<ref name="bibitem"
|
|
95
|
+
<ref name="bibitem">
|
|
96
|
+
<a:documentation>Bibliographical items included in the References section</a:documentation>
|
|
97
|
+
</ref>
|
|
69
98
|
</zeroOrMore>
|
|
70
99
|
</element>
|
|
71
100
|
</define>
|
|
72
101
|
<define name="section-title">
|
|
102
|
+
<a:documentation>Title of a section</a:documentation>
|
|
73
103
|
<element name="title">
|
|
74
104
|
<zeroOrMore>
|
|
75
105
|
<ref name="TextElement"/>
|
|
@@ -77,6 +107,7 @@
|
|
|
77
107
|
</element>
|
|
78
108
|
</define>
|
|
79
109
|
<define name="BasicBlock">
|
|
110
|
+
<a:documentation>Block of textual content</a:documentation>
|
|
80
111
|
<choice>
|
|
81
112
|
<ref name="paragraph-with-footnote"/>
|
|
82
113
|
<ref name="table"/>
|
|
@@ -98,18 +129,39 @@
|
|
|
98
129
|
<ref name="amend"/>
|
|
99
130
|
</choice>
|
|
100
131
|
</define>
|
|
132
|
+
<define name="BasicBlockNoId">
|
|
133
|
+
<a:documentation>Block of textual content: optional ID attributes (for use in Relaton, metadata)</a:documentation>
|
|
134
|
+
<choice>
|
|
135
|
+
<ref name="paragraph-with-footnote-no-id"/>
|
|
136
|
+
<ref name="table-no-id"/>
|
|
137
|
+
<ref name="formula-no-id"/>
|
|
138
|
+
<ref name="admonition-no-id"/>
|
|
139
|
+
<ref name="ol-no-id"/>
|
|
140
|
+
<ref name="ul-no-id"/>
|
|
141
|
+
<ref name="dl-no-id"/>
|
|
142
|
+
<ref name="figure-no-id"/>
|
|
143
|
+
<ref name="quote-no-id"/>
|
|
144
|
+
<ref name="sourcecode-no-id"/>
|
|
145
|
+
<ref name="example-no-id"/>
|
|
146
|
+
<ref name="review"/>
|
|
147
|
+
<ref name="pre-no-id"/>
|
|
148
|
+
<ref name="note-no-id"/>
|
|
149
|
+
<ref name="pagebreak"/>
|
|
150
|
+
<ref name="hr"/>
|
|
151
|
+
<ref name="bookmark"/>
|
|
152
|
+
<ref name="amend"/>
|
|
153
|
+
</choice>
|
|
154
|
+
</define>
|
|
101
155
|
<define name="amend">
|
|
156
|
+
<a:documentation>Block describing a change in a document, intended for human readers</a:documentation>
|
|
102
157
|
<element name="amend">
|
|
103
158
|
<ref name="AmendType"/>
|
|
104
159
|
</element>
|
|
105
160
|
</define>
|
|
106
161
|
<define name="AmendType">
|
|
107
|
-
<
|
|
108
|
-
<attribute name="id">
|
|
109
|
-
<data type="ID"/>
|
|
110
|
-
</attribute>
|
|
111
|
-
</optional>
|
|
162
|
+
<ref name="OptionalId"/>
|
|
112
163
|
<attribute name="change">
|
|
164
|
+
<a:documentation>The type of change described in this block</a:documentation>
|
|
113
165
|
<choice>
|
|
114
166
|
<value>add</value>
|
|
115
167
|
<value>modify</value>
|
|
@@ -118,16 +170,35 @@
|
|
|
118
170
|
</choice>
|
|
119
171
|
</attribute>
|
|
120
172
|
<optional>
|
|
121
|
-
<attribute name="path"
|
|
173
|
+
<attribute name="path">
|
|
174
|
+
<a:documentation>The span within location where the change applies to,
|
|
175
|
+
if location defines a container larger than the scope of the change</a:documentation>
|
|
176
|
+
</attribute>
|
|
177
|
+
</optional>
|
|
178
|
+
<optional>
|
|
179
|
+
<attribute name="path_end">
|
|
180
|
+
<a:documentation>The end of the span within location where the change applies to,
|
|
181
|
+
if location defines a container larger than the scope of the change.
|
|
182
|
+
Applicable to modify and delete</a:documentation>
|
|
183
|
+
</attribute>
|
|
122
184
|
</optional>
|
|
123
185
|
<optional>
|
|
124
|
-
<attribute name="
|
|
186
|
+
<attribute name="title">
|
|
187
|
+
<a:documentation>Optional caption of this block</a:documentation>
|
|
188
|
+
</attribute>
|
|
125
189
|
</optional>
|
|
126
190
|
<optional>
|
|
127
|
-
<attribute name="
|
|
191
|
+
<attribute name="position">
|
|
192
|
+
<a:documentation>For an "add" change, whether the change is added before or after the location</a:documentation>
|
|
193
|
+
<choice>
|
|
194
|
+
<value>before</value>
|
|
195
|
+
<value>after</value>
|
|
196
|
+
</choice>
|
|
197
|
+
</attribute>
|
|
128
198
|
</optional>
|
|
129
199
|
<optional>
|
|
130
200
|
<element name="location">
|
|
201
|
+
<a:documentation>The location(s) in the original document which have undergone the change described in this block</a:documentation>
|
|
131
202
|
<zeroOrMore>
|
|
132
203
|
<choice>
|
|
133
204
|
<ref name="locality"/>
|
|
@@ -136,36 +207,47 @@
|
|
|
136
207
|
</zeroOrMore>
|
|
137
208
|
</element>
|
|
138
209
|
</optional>
|
|
139
|
-
<
|
|
210
|
+
<zeroOrMore>
|
|
140
211
|
<element name="description">
|
|
141
|
-
<
|
|
212
|
+
<a:documentation>Description(s) of the change described in this block</a:documentation>
|
|
213
|
+
<oneOrMore>
|
|
142
214
|
<ref name="BasicBlock"/>
|
|
143
|
-
</
|
|
215
|
+
</oneOrMore>
|
|
144
216
|
</element>
|
|
145
|
-
</
|
|
217
|
+
</zeroOrMore>
|
|
146
218
|
<optional>
|
|
147
219
|
<element name="newcontent">
|
|
148
|
-
<
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
</attribute>
|
|
152
|
-
</optional>
|
|
220
|
+
<a:documentation>New content to be added to the document; applicable to add and modify.
|
|
221
|
+
Can be blocks and/or sections</a:documentation>
|
|
222
|
+
<ref name="OptionalId"/>
|
|
153
223
|
<zeroOrMore>
|
|
154
224
|
<ref name="BasicBlock"/>
|
|
155
225
|
</zeroOrMore>
|
|
226
|
+
<zeroOrMore>
|
|
227
|
+
<ref name="section"/>
|
|
228
|
+
</zeroOrMore>
|
|
156
229
|
</element>
|
|
157
230
|
</optional>
|
|
158
231
|
<zeroOrMore>
|
|
159
|
-
<ref name="classification"
|
|
232
|
+
<ref name="classification">
|
|
233
|
+
<a:documentation>Classification of the change</a:documentation>
|
|
234
|
+
</ref>
|
|
160
235
|
</zeroOrMore>
|
|
161
236
|
<zeroOrMore>
|
|
162
|
-
<ref name="contributor"
|
|
237
|
+
<ref name="contributor">
|
|
238
|
+
<a:documentation>Contributor responsible for the change</a:documentation>
|
|
239
|
+
</ref>
|
|
163
240
|
</zeroOrMore>
|
|
164
241
|
</define>
|
|
165
242
|
<define name="classification">
|
|
243
|
+
<a:documentation>Key-value classification of an entity</a:documentation>
|
|
166
244
|
<element name="classification">
|
|
167
|
-
<ref name="classification_tag"
|
|
168
|
-
|
|
245
|
+
<ref name="classification_tag">
|
|
246
|
+
<a:documentation>Key for the classification</a:documentation>
|
|
247
|
+
</ref>
|
|
248
|
+
<ref name="classification_value">
|
|
249
|
+
<a:documentation>Value for the classification</a:documentation>
|
|
250
|
+
</ref>
|
|
169
251
|
</element>
|
|
170
252
|
</define>
|
|
171
253
|
<define name="classification_tag">
|
|
@@ -179,11 +261,18 @@
|
|
|
179
261
|
</element>
|
|
180
262
|
</define>
|
|
181
263
|
<define name="paragraph">
|
|
264
|
+
<a:documentation>Default block of textual content.
|
|
265
|
+
Unlike the case for other document models, paragraphs _cannot_
|
|
266
|
+
contain other blocks, such as lists, tables, or figures: they are modelled as a basic building block of text
|
|
267
|
+
Does not contain foonotes. While most paragraphs in a document can contain footnotes (paragraph-with-footnote),
|
|
268
|
+
the distinction is necessary, as footnotes are not appropriate for all instances of paragraph content
|
|
269
|
+
in a document (e.g. sourcecode annotations)</a:documentation>
|
|
182
270
|
<element name="p">
|
|
183
271
|
<ref name="ParagraphType"/>
|
|
184
272
|
</element>
|
|
185
273
|
</define>
|
|
186
274
|
<define name="Alignments">
|
|
275
|
+
<a:documentation>The alignment of the paragraph against the margins of the document</a:documentation>
|
|
187
276
|
<choice>
|
|
188
277
|
<value>left</value>
|
|
189
278
|
<value>right</value>
|
|
@@ -191,133 +280,305 @@
|
|
|
191
280
|
<value>justified</value>
|
|
192
281
|
</choice>
|
|
193
282
|
</define>
|
|
194
|
-
<define name="
|
|
283
|
+
<define name="IdRefType">
|
|
284
|
+
<a:documentation>Type of cross-references to elements. In BasicDoc, these always point to id { xsd:ID } </a:documentation>
|
|
285
|
+
<data type="IDREF"/>
|
|
286
|
+
</define>
|
|
287
|
+
<define name="RequiredId">
|
|
288
|
+
<a:documentation>Mandatory anchor of element, to be used for cross-references within the document</a:documentation>
|
|
195
289
|
<attribute name="id">
|
|
196
290
|
<data type="ID"/>
|
|
197
291
|
</attribute>
|
|
292
|
+
</define>
|
|
293
|
+
<define name="OptionalId">
|
|
294
|
+
<a:documentation>Optional anchor of element</a:documentation>
|
|
295
|
+
<optional>
|
|
296
|
+
<attribute name="id">
|
|
297
|
+
<data type="ID"/>
|
|
298
|
+
</attribute>
|
|
299
|
+
</optional>
|
|
300
|
+
</define>
|
|
301
|
+
<define name="ParagraphAttributes">
|
|
198
302
|
<optional>
|
|
199
303
|
<attribute name="align">
|
|
304
|
+
<a:documentation>The alignment of the paragraph against the margins of the document</a:documentation>
|
|
200
305
|
<ref name="Alignments"/>
|
|
201
306
|
</attribute>
|
|
202
307
|
</optional>
|
|
308
|
+
</define>
|
|
309
|
+
<define name="ParagraphType">
|
|
310
|
+
<ref name="RequiredId"/>
|
|
311
|
+
<ref name="ParagraphAttributes"/>
|
|
312
|
+
<ref name="ParagraphBody"/>
|
|
313
|
+
</define>
|
|
314
|
+
<define name="ParagraphBody">
|
|
315
|
+
<a:documentation>Inline elements constituting the content of the paragraph, excluding footnotes</a:documentation>
|
|
203
316
|
<zeroOrMore>
|
|
204
|
-
<ref name="TextElement"
|
|
317
|
+
<ref name="TextElement">
|
|
318
|
+
<a:documentation>Inline elements constituting the content of the paragraph</a:documentation>
|
|
319
|
+
</ref>
|
|
205
320
|
</zeroOrMore>
|
|
206
321
|
<zeroOrMore>
|
|
207
|
-
<ref name="note"
|
|
322
|
+
<ref name="note">
|
|
323
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
324
|
+
</ref>
|
|
325
|
+
</zeroOrMore>
|
|
326
|
+
</define>
|
|
327
|
+
<define name="ParagraphFnBody">
|
|
328
|
+
<a:documentation>Inline elements constituting the content of the paragraph, including footnotes</a:documentation>
|
|
329
|
+
<zeroOrMore>
|
|
330
|
+
<choice>
|
|
331
|
+
<ref name="TextElement">
|
|
332
|
+
<a:documentation>Inline elements constituting the content of the paragraph</a:documentation>
|
|
333
|
+
</ref>
|
|
334
|
+
<ref name="fn">
|
|
335
|
+
<a:documentation>Footnotes interspersed with paragraph content</a:documentation>
|
|
336
|
+
</ref>
|
|
337
|
+
</choice>
|
|
338
|
+
</zeroOrMore>
|
|
339
|
+
<zeroOrMore>
|
|
340
|
+
<ref name="note">
|
|
341
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
342
|
+
</ref>
|
|
208
343
|
</zeroOrMore>
|
|
209
344
|
</define>
|
|
345
|
+
<define name="paragraph-no-id">
|
|
346
|
+
<a:documentation>Paragraph containing no footnotes: optional ID attributes (for use in Relaton, metadata) </a:documentation>
|
|
347
|
+
<element name="p">
|
|
348
|
+
<ref name="OptionalId"/>
|
|
349
|
+
<ref name="ParagraphAttributes"/>
|
|
350
|
+
<ref name="ParagraphBody"/>
|
|
351
|
+
</element>
|
|
352
|
+
</define>
|
|
210
353
|
<define name="paragraph-with-footnote">
|
|
354
|
+
<a:documentation>A paragraph which may contain footnotes.</a:documentation>
|
|
211
355
|
<element name="p">
|
|
212
|
-
<
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
<
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
<ref name="fn"/>
|
|
224
|
-
</choice>
|
|
225
|
-
</zeroOrMore>
|
|
226
|
-
<zeroOrMore>
|
|
227
|
-
<ref name="note"/>
|
|
228
|
-
</zeroOrMore>
|
|
356
|
+
<ref name="RequiredId"/>
|
|
357
|
+
<ref name="ParagraphAttributes"/>
|
|
358
|
+
<ref name="ParagraphFnBody"/>
|
|
359
|
+
</element>
|
|
360
|
+
</define>
|
|
361
|
+
<define name="paragraph-with-footnote-no-id">
|
|
362
|
+
<a:documentation>A paragraph which may contain footnotes: optional ID attributes (for use in Relaton, metadata)</a:documentation>
|
|
363
|
+
<element name="p">
|
|
364
|
+
<ref name="OptionalId"/>
|
|
365
|
+
<ref name="ParagraphAttributes"/>
|
|
366
|
+
<ref name="ParagraphFnBody"/>
|
|
229
367
|
</element>
|
|
230
368
|
</define>
|
|
231
369
|
<define name="note">
|
|
370
|
+
<a:documentation>Note block</a:documentation>
|
|
232
371
|
<element name="note">
|
|
233
|
-
<
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
372
|
+
<ref name="RequiredId"/>
|
|
373
|
+
<ref name="NoteAttributes"/>
|
|
374
|
+
<ref name="NoteBody"/>
|
|
375
|
+
</element>
|
|
376
|
+
</define>
|
|
377
|
+
<define name="note-no-id">
|
|
378
|
+
<a:documentation>Note block: optional ID attributes (for use in Relaton, metadata)</a:documentation>
|
|
379
|
+
<element name="note">
|
|
380
|
+
<ref name="OptionalId"/>
|
|
381
|
+
<ref name="NoteAttributes"/>
|
|
382
|
+
<ref name="NoteNoIdBody"/>
|
|
239
383
|
</element>
|
|
240
384
|
</define>
|
|
385
|
+
<define name="NoteAttributes">
|
|
386
|
+
<ref name="NumberingAttributes"/>
|
|
387
|
+
</define>
|
|
388
|
+
<define name="NoteBody">
|
|
389
|
+
<oneOrMore>
|
|
390
|
+
<ref name="paragraph"/>
|
|
391
|
+
</oneOrMore>
|
|
392
|
+
</define>
|
|
393
|
+
<define name="NoteNoIdBody">
|
|
394
|
+
<oneOrMore>
|
|
395
|
+
<ref name="paragraph-no-id"/>
|
|
396
|
+
</oneOrMore>
|
|
397
|
+
</define>
|
|
241
398
|
<define name="review">
|
|
399
|
+
<a:documentation>Block intended to capture reviewer comments about some text in the document</a:documentation>
|
|
242
400
|
<element name="review">
|
|
243
|
-
<
|
|
244
|
-
|
|
245
|
-
</attribute>
|
|
246
|
-
<attribute name="reviewer"/>
|
|
247
|
-
<optional>
|
|
248
|
-
<attribute name="type"/>
|
|
249
|
-
</optional>
|
|
250
|
-
<optional>
|
|
251
|
-
<attribute name="date">
|
|
252
|
-
<data type="dateTime"/>
|
|
253
|
-
</attribute>
|
|
254
|
-
</optional>
|
|
255
|
-
<optional>
|
|
256
|
-
<attribute name="from">
|
|
257
|
-
<data type="IDREF"/>
|
|
258
|
-
</attribute>
|
|
259
|
-
</optional>
|
|
260
|
-
<optional>
|
|
261
|
-
<attribute name="to">
|
|
262
|
-
<data type="IDREF"/>
|
|
263
|
-
</attribute>
|
|
264
|
-
</optional>
|
|
401
|
+
<ref name="RequiredId"/>
|
|
402
|
+
<ref name="ReviewAttributes"/>
|
|
265
403
|
<oneOrMore>
|
|
266
|
-
<ref name="paragraph"
|
|
404
|
+
<ref name="paragraph">
|
|
405
|
+
<a:documentation>Reviewer comments content</a:documentation>
|
|
406
|
+
</ref>
|
|
267
407
|
</oneOrMore>
|
|
268
408
|
</element>
|
|
269
409
|
</define>
|
|
410
|
+
<define name="ReviewAttributes">
|
|
411
|
+
<attribute name="reviewer">
|
|
412
|
+
<a:documentation>The party who has offered the comment</a:documentation>
|
|
413
|
+
</attribute>
|
|
414
|
+
<optional>
|
|
415
|
+
<attribute name="type">
|
|
416
|
+
<a:documentation>The type of reviewer comment</a:documentation>
|
|
417
|
+
</attribute>
|
|
418
|
+
</optional>
|
|
419
|
+
<optional>
|
|
420
|
+
<attribute name="date">
|
|
421
|
+
<a:documentation>The date when the comment was made</a:documentation>
|
|
422
|
+
<data type="dateTime"/>
|
|
423
|
+
</attribute>
|
|
424
|
+
</optional>
|
|
425
|
+
<optional>
|
|
426
|
+
<attribute name="from">
|
|
427
|
+
<a:documentation>Identifier for the start of the text or point in the text to which the comment applies.
|
|
428
|
+
If not provided, the comment applies in the vicinity of the place it has been inserted into the text</a:documentation>
|
|
429
|
+
<ref name="IdRefType"/>
|
|
430
|
+
</attribute>
|
|
431
|
+
</optional>
|
|
432
|
+
<optional>
|
|
433
|
+
<attribute name="to">
|
|
434
|
+
<a:documentation>Identifier for the end of the text to which the comment applies</a:documentation>
|
|
435
|
+
<ref name="IdRefType"/>
|
|
436
|
+
</attribute>
|
|
437
|
+
</optional>
|
|
438
|
+
</define>
|
|
439
|
+
<define name="NumberingAttributes">
|
|
440
|
+
<optional>
|
|
441
|
+
<attribute name="unnumbered">
|
|
442
|
+
<a:documentation>Do not number this block in rendering</a:documentation>
|
|
443
|
+
<data type="boolean"/>
|
|
444
|
+
</attribute>
|
|
445
|
+
</optional>
|
|
446
|
+
<optional>
|
|
447
|
+
<attribute name="subsequence">
|
|
448
|
+
<a:documentation>Define a subsequence for numbering of this block; e.g. if this block would be numbered
|
|
449
|
+
as 7, but it has a subsequence value of XYZ, this block, and all consecutive blocks
|
|
450
|
+
of the same class and with the same subsequence value, will be numbered consecutively
|
|
451
|
+
with the same number and in a subsequence: 7a, 7b, 7c etc</a:documentation>
|
|
452
|
+
</attribute>
|
|
453
|
+
</optional>
|
|
454
|
+
</define>
|
|
270
455
|
<define name="formula">
|
|
456
|
+
<a:documentation>Block containing a mathematical expression or other formulas</a:documentation>
|
|
271
457
|
<element name="formula">
|
|
272
|
-
<
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
<
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
<optional>
|
|
284
|
-
<attribute name="inequality">
|
|
285
|
-
<data type="boolean"/>
|
|
286
|
-
</attribute>
|
|
287
|
-
</optional>
|
|
288
|
-
<ref name="stem"/>
|
|
289
|
-
<optional>
|
|
290
|
-
<ref name="dl"/>
|
|
291
|
-
</optional>
|
|
292
|
-
<zeroOrMore>
|
|
293
|
-
<ref name="note"/>
|
|
294
|
-
</zeroOrMore>
|
|
458
|
+
<ref name="RequiredId"/>
|
|
459
|
+
<ref name="FormulaAttributes"/>
|
|
460
|
+
<ref name="FormulaBody"/>
|
|
461
|
+
</element>
|
|
462
|
+
</define>
|
|
463
|
+
<define name="formula-no-id">
|
|
464
|
+
<a:documentation>Block containing a mathematical expression or other formulas: optional ID attributes (for use in Relaton, metadata)</a:documentation>
|
|
465
|
+
<element name="formula">
|
|
466
|
+
<ref name="OptionalId"/>
|
|
467
|
+
<ref name="FormulaAttributes"/>
|
|
468
|
+
<ref name="FormulaNoIdBody"/>
|
|
295
469
|
</element>
|
|
296
470
|
</define>
|
|
471
|
+
<define name="FormulaAttributes">
|
|
472
|
+
<ref name="NumberingAttributes"/>
|
|
473
|
+
<optional>
|
|
474
|
+
<attribute name="inequality">
|
|
475
|
+
<a:documentation>Indication that the formula is to be labelled as an Inequality, if inequalities are differentiated from equations</a:documentation>
|
|
476
|
+
<data type="boolean"/>
|
|
477
|
+
</attribute>
|
|
478
|
+
</optional>
|
|
479
|
+
</define>
|
|
480
|
+
<define name="FormulaBody">
|
|
481
|
+
<ref name="stem">
|
|
482
|
+
<a:documentation>The content of the formula, as a mathematical expression</a:documentation>
|
|
483
|
+
</ref>
|
|
484
|
+
<optional>
|
|
485
|
+
<ref name="dl">
|
|
486
|
+
<a:documentation>A definitions list defining any symbols used in the formula</a:documentation>
|
|
487
|
+
</ref>
|
|
488
|
+
</optional>
|
|
489
|
+
<zeroOrMore>
|
|
490
|
+
<ref name="note">
|
|
491
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
492
|
+
</ref>
|
|
493
|
+
</zeroOrMore>
|
|
494
|
+
</define>
|
|
495
|
+
<define name="FormulaNoIdBody">
|
|
496
|
+
<ref name="stem">
|
|
497
|
+
<a:documentation>The content of the formula, as a mathematical expression</a:documentation>
|
|
498
|
+
</ref>
|
|
499
|
+
<optional>
|
|
500
|
+
<ref name="dl-no-id">
|
|
501
|
+
<a:documentation>A definitions list defining any symbols used in the formula</a:documentation>
|
|
502
|
+
</ref>
|
|
503
|
+
</optional>
|
|
504
|
+
<zeroOrMore>
|
|
505
|
+
<ref name="note-no-id">
|
|
506
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
507
|
+
</ref>
|
|
508
|
+
</zeroOrMore>
|
|
509
|
+
</define>
|
|
297
510
|
<define name="quote">
|
|
511
|
+
<a:documentation>Block quotation, containing extensive textual content originally authored outside of the current document</a:documentation>
|
|
298
512
|
<element name="quote">
|
|
299
|
-
<
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
<
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
<optional>
|
|
311
|
-
<ref name="quote-author"/>
|
|
312
|
-
</optional>
|
|
313
|
-
<oneOrMore>
|
|
314
|
-
<ref name="paragraph-with-footnote"/>
|
|
315
|
-
</oneOrMore>
|
|
316
|
-
<zeroOrMore>
|
|
317
|
-
<ref name="note"/>
|
|
318
|
-
</zeroOrMore>
|
|
513
|
+
<ref name="RequiredId"/>
|
|
514
|
+
<ref name="QuoteAttributes"/>
|
|
515
|
+
<ref name="QuoteBody"/>
|
|
516
|
+
</element>
|
|
517
|
+
</define>
|
|
518
|
+
<define name="quote-no-id">
|
|
519
|
+
<a:documentation>Block quotation: optional ID attributes (for use in Relaton, metadata)</a:documentation>
|
|
520
|
+
<element name="quote">
|
|
521
|
+
<ref name="OptionalId"/>
|
|
522
|
+
<ref name="QuoteAttributes"/>
|
|
523
|
+
<ref name="QuoteNoIdBody"/>
|
|
319
524
|
</element>
|
|
320
525
|
</define>
|
|
526
|
+
<define name="QuoteAttributes">
|
|
527
|
+
<optional>
|
|
528
|
+
<attribute name="alignment">
|
|
529
|
+
<a:documentation>The alignment of the quote against the margins of the document</a:documentation>
|
|
530
|
+
<ref name="Alignments"/>
|
|
531
|
+
</attribute>
|
|
532
|
+
</optional>
|
|
533
|
+
</define>
|
|
534
|
+
<define name="QuoteBody">
|
|
535
|
+
<optional>
|
|
536
|
+
<ref name="quote-source">
|
|
537
|
+
<a:documentation>Bibliographic citation for the quotation</a:documentation>
|
|
538
|
+
</ref>
|
|
539
|
+
</optional>
|
|
540
|
+
<optional>
|
|
541
|
+
<ref name="quote-author">
|
|
542
|
+
<a:documentation>Author of the quotation. The `author` attribute of the quotation is redundant with `source`,
|
|
543
|
+
since it restates information about the author that should be recoverable from the `source` citation.
|
|
544
|
+
It is included for convenience, in case processing the citation to extract the author is prohibitive for rendering tools</a:documentation>
|
|
545
|
+
</ref>
|
|
546
|
+
</optional>
|
|
547
|
+
<oneOrMore>
|
|
548
|
+
<ref name="paragraph-with-footnote">
|
|
549
|
+
<a:documentation>Content of quote</a:documentation>
|
|
550
|
+
</ref>
|
|
551
|
+
</oneOrMore>
|
|
552
|
+
<zeroOrMore>
|
|
553
|
+
<ref name="note">
|
|
554
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
555
|
+
</ref>
|
|
556
|
+
</zeroOrMore>
|
|
557
|
+
</define>
|
|
558
|
+
<define name="QuoteNoIdBody">
|
|
559
|
+
<optional>
|
|
560
|
+
<ref name="quote-source">
|
|
561
|
+
<a:documentation>Bibliographic citation for the quotation</a:documentation>
|
|
562
|
+
</ref>
|
|
563
|
+
</optional>
|
|
564
|
+
<optional>
|
|
565
|
+
<ref name="quote-author">
|
|
566
|
+
<a:documentation>Author of the quotation. The `author` attribute of the quotation is redundant with `source`,
|
|
567
|
+
since it restates information about the author that should be recoverable from the `source` citation.
|
|
568
|
+
It is included for convenience, in case processing the citation to extract the author is prohibitive for rendering tools</a:documentation>
|
|
569
|
+
</ref>
|
|
570
|
+
</optional>
|
|
571
|
+
<oneOrMore>
|
|
572
|
+
<ref name="paragraph-with-footnote-no-id">
|
|
573
|
+
<a:documentation>Content of quote</a:documentation>
|
|
574
|
+
</ref>
|
|
575
|
+
</oneOrMore>
|
|
576
|
+
<zeroOrMore>
|
|
577
|
+
<ref name="note-no-id">
|
|
578
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
579
|
+
</ref>
|
|
580
|
+
</zeroOrMore>
|
|
581
|
+
</define>
|
|
321
582
|
<define name="quote-source">
|
|
322
583
|
<element name="source">
|
|
323
584
|
<ref name="erefType"/>
|
|
@@ -329,110 +590,243 @@
|
|
|
329
590
|
</element>
|
|
330
591
|
</define>
|
|
331
592
|
<define name="sourcecode">
|
|
593
|
+
<a:documentation>Block containing computer code or comparable text</a:documentation>
|
|
332
594
|
<element name="sourcecode">
|
|
333
|
-
<
|
|
334
|
-
|
|
595
|
+
<ref name="RequiredId"/>
|
|
596
|
+
<ref name="SourceAttributes"/>
|
|
597
|
+
<ref name="SourceBody"/>
|
|
598
|
+
</element>
|
|
599
|
+
</define>
|
|
600
|
+
<define name="sourcecode-no-id">
|
|
601
|
+
<a:documentation>Block containing computer code or comparable text: optional ID attributes (for use in Relaton, metadata)</a:documentation>
|
|
602
|
+
<element name="sourcecode">
|
|
603
|
+
<ref name="OptionalId"/>
|
|
604
|
+
<ref name="SourceAttributes"/>
|
|
605
|
+
<ref name="SourceNoIdBody"/>
|
|
606
|
+
</element>
|
|
607
|
+
</define>
|
|
608
|
+
<define name="SourceAttributes">
|
|
609
|
+
<ref name="NumberingAttributes"/>
|
|
610
|
+
<optional>
|
|
611
|
+
<attribute name="lang">
|
|
612
|
+
<a:documentation>The computer language or other notational convention that the source code is expressed in</a:documentation>
|
|
335
613
|
</attribute>
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
614
|
+
</optional>
|
|
615
|
+
</define>
|
|
616
|
+
<define name="SourceBody">
|
|
617
|
+
<optional>
|
|
618
|
+
<ref name="tname">
|
|
619
|
+
<a:documentation>The caption of the block</a:documentation>
|
|
620
|
+
</ref>
|
|
621
|
+
</optional>
|
|
622
|
+
<ref name="sourcecodebody">
|
|
623
|
+
<a:documentation>The sourcecode content</a:documentation>
|
|
624
|
+
</ref>
|
|
625
|
+
<zeroOrMore>
|
|
626
|
+
<ref name="annotation">
|
|
627
|
+
<a:documentation>Annotations to the source code; each annotation consists of zero or more paragraphs,
|
|
628
|
+
and is intended to be referenced by a callout within the source code</a:documentation>
|
|
629
|
+
</ref>
|
|
630
|
+
</zeroOrMore>
|
|
631
|
+
<zeroOrMore>
|
|
632
|
+
<ref name="note">
|
|
633
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
634
|
+
</ref>
|
|
635
|
+
</zeroOrMore>
|
|
636
|
+
</define>
|
|
637
|
+
<define name="SourceNoIdBody">
|
|
638
|
+
<optional>
|
|
639
|
+
<ref name="tname">
|
|
640
|
+
<a:documentation>The caption of the block</a:documentation>
|
|
641
|
+
</ref>
|
|
642
|
+
</optional>
|
|
643
|
+
<ref name="sourcecodebody">
|
|
644
|
+
<a:documentation>The sourcecode content</a:documentation>
|
|
645
|
+
</ref>
|
|
646
|
+
<zeroOrMore>
|
|
647
|
+
<ref name="annotation">
|
|
648
|
+
<a:documentation>Annotations to the source code; each annotation consists of zero or more paragraphs,
|
|
649
|
+
and is intended to be referenced by a callout within the source code</a:documentation>
|
|
650
|
+
</ref>
|
|
651
|
+
</zeroOrMore>
|
|
652
|
+
<zeroOrMore>
|
|
653
|
+
<ref name="note-no-id">
|
|
654
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
655
|
+
</ref>
|
|
656
|
+
</zeroOrMore>
|
|
657
|
+
</define>
|
|
658
|
+
<define name="sourcecodebody">
|
|
659
|
+
<a:documentation>The computer code or other such text presented in the block, as a single unformatted string.
|
|
660
|
+
(The string should be treated as pre-formatted text, with whitespace treated as significant)</a:documentation>
|
|
661
|
+
<element name="body">
|
|
350
662
|
<oneOrMore>
|
|
351
663
|
<choice>
|
|
352
664
|
<text/>
|
|
353
|
-
<ref name="callout"
|
|
665
|
+
<ref name="callout">
|
|
666
|
+
<a:documentation>Zero or more cross-references; these are intended to be embedded within the content string, and link to annotations</a:documentation>
|
|
667
|
+
</ref>
|
|
354
668
|
</choice>
|
|
355
669
|
</oneOrMore>
|
|
356
|
-
<zeroOrMore>
|
|
357
|
-
<ref name="annotation"/>
|
|
358
|
-
</zeroOrMore>
|
|
359
|
-
<zeroOrMore>
|
|
360
|
-
<ref name="note"/>
|
|
361
|
-
</zeroOrMore>
|
|
362
670
|
</element>
|
|
363
671
|
</define>
|
|
364
672
|
<define name="pre">
|
|
673
|
+
<a:documentation>Pre-formatted block. Wrapper for text to be rendered with fixed-width typeface, and preserving spaces including line breaks.
|
|
674
|
+
They are intended for a restricted number of functions, most typically ASCII Art (which is still in prominent use in some
|
|
675
|
+
standards documents), and computer output. In most cases, sourcecode blocks are more appropriate in markup,
|
|
676
|
+
as it is more clearly motivated semantically</a:documentation>
|
|
365
677
|
<element name="pre">
|
|
366
|
-
<
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
<
|
|
376
|
-
<
|
|
377
|
-
<ref name="note"/>
|
|
378
|
-
</zeroOrMore>
|
|
678
|
+
<ref name="RequiredId"/>
|
|
679
|
+
<ref name="PreAttributes"/>
|
|
680
|
+
<ref name="PreBody"/>
|
|
681
|
+
</element>
|
|
682
|
+
</define>
|
|
683
|
+
<define name="pre-no-id">
|
|
684
|
+
<a:documentation>Pre-formatted block: optional ID attributes (for use in Relaton, metadata)</a:documentation>
|
|
685
|
+
<element name="pre">
|
|
686
|
+
<ref name="OptionalId"/>
|
|
687
|
+
<ref name="PreAttributes"/>
|
|
688
|
+
<ref name="PreNoIdBody"/>
|
|
379
689
|
</element>
|
|
380
690
|
</define>
|
|
691
|
+
<define name="PreAttributes">
|
|
692
|
+
<optional>
|
|
693
|
+
<attribute name="alt">
|
|
694
|
+
<a:documentation>Accessible description of the preformatted text</a:documentation>
|
|
695
|
+
</attribute>
|
|
696
|
+
</optional>
|
|
697
|
+
</define>
|
|
698
|
+
<define name="PreBody">
|
|
699
|
+
<optional>
|
|
700
|
+
<ref name="tname">
|
|
701
|
+
<a:documentation>The caption of the block</a:documentation>
|
|
702
|
+
</ref>
|
|
703
|
+
</optional>
|
|
704
|
+
<text>
|
|
705
|
+
<a:documentation>The pre-formatted text presented in the block, as a single unformatted string. (Whitespace is treated as significant)</a:documentation>
|
|
706
|
+
</text>
|
|
707
|
+
<zeroOrMore>
|
|
708
|
+
<ref name="note">
|
|
709
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
710
|
+
</ref>
|
|
711
|
+
</zeroOrMore>
|
|
712
|
+
</define>
|
|
713
|
+
<define name="PreNoIdBody">
|
|
714
|
+
<optional>
|
|
715
|
+
<ref name="tname">
|
|
716
|
+
<a:documentation>The caption of the block</a:documentation>
|
|
717
|
+
</ref>
|
|
718
|
+
</optional>
|
|
719
|
+
<text>
|
|
720
|
+
<a:documentation>The pre-formatted text presented in the block, as a single unformatted string. (Whitespace is treated as significant)</a:documentation>
|
|
721
|
+
</text>
|
|
722
|
+
<zeroOrMore>
|
|
723
|
+
<ref name="note-no-id">
|
|
724
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
725
|
+
</ref>
|
|
726
|
+
</zeroOrMore>
|
|
727
|
+
</define>
|
|
381
728
|
<define name="table">
|
|
729
|
+
<a:documentation>Tabular arrangement of text</a:documentation>
|
|
382
730
|
<element name="table">
|
|
383
|
-
<
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
<optional>
|
|
387
|
-
<attribute name="unnumbered">
|
|
388
|
-
<data type="boolean"/>
|
|
389
|
-
</attribute>
|
|
390
|
-
</optional>
|
|
391
|
-
<optional>
|
|
392
|
-
<attribute name="subsequence"/>
|
|
393
|
-
</optional>
|
|
394
|
-
<optional>
|
|
395
|
-
<attribute name="alt"/>
|
|
396
|
-
</optional>
|
|
397
|
-
<optional>
|
|
398
|
-
<attribute name="summary"/>
|
|
399
|
-
</optional>
|
|
400
|
-
<optional>
|
|
401
|
-
<attribute name="uri">
|
|
402
|
-
<data type="anyURI"/>
|
|
403
|
-
</attribute>
|
|
404
|
-
</optional>
|
|
405
|
-
<optional>
|
|
406
|
-
<ref name="tname"/>
|
|
407
|
-
</optional>
|
|
408
|
-
<optional>
|
|
409
|
-
<ref name="thead"/>
|
|
410
|
-
</optional>
|
|
411
|
-
<ref name="tbody"/>
|
|
412
|
-
<optional>
|
|
413
|
-
<ref name="tfoot"/>
|
|
414
|
-
</optional>
|
|
415
|
-
<zeroOrMore>
|
|
416
|
-
<ref name="table-note"/>
|
|
417
|
-
</zeroOrMore>
|
|
418
|
-
<optional>
|
|
419
|
-
<ref name="dl"/>
|
|
420
|
-
</optional>
|
|
731
|
+
<ref name="RequiredId"/>
|
|
732
|
+
<ref name="TableAttributes"/>
|
|
733
|
+
<ref name="TableBody"/>
|
|
421
734
|
</element>
|
|
422
735
|
</define>
|
|
736
|
+
<define name="table-no-id">
|
|
737
|
+
<a:documentation>Tabular arrangement of text: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
738
|
+
<element name="table">
|
|
739
|
+
<ref name="OptionalId"/>
|
|
740
|
+
<ref name="TableAttributes"/>
|
|
741
|
+
<ref name="TableNoIdBody"/>
|
|
742
|
+
</element>
|
|
743
|
+
</define>
|
|
744
|
+
<define name="TableAttributes">
|
|
745
|
+
<ref name="NumberingAttributes"/>
|
|
746
|
+
<optional>
|
|
747
|
+
<attribute name="alt">
|
|
748
|
+
<a:documentation>Accessible description of the tabular text, in case the table cannot be rendered accessibly (HTML 5)</a:documentation>
|
|
749
|
+
</attribute>
|
|
750
|
+
</optional>
|
|
751
|
+
<optional>
|
|
752
|
+
<attribute name="summary">
|
|
753
|
+
<a:documentation>Alternative more extensive summary of table to be provided for accessibility purposes,
|
|
754
|
+
in case the table cannot be rendered accessibly (HTML 5)</a:documentation>
|
|
755
|
+
</attribute>
|
|
756
|
+
</optional>
|
|
757
|
+
<optional>
|
|
758
|
+
<attribute name="uri">
|
|
759
|
+
<a:documentation>Online location of content of table (in case the table is available as a separate external document) (HTML 5)</a:documentation>
|
|
760
|
+
<data type="anyURI"/>
|
|
761
|
+
</attribute>
|
|
762
|
+
</optional>
|
|
763
|
+
</define>
|
|
764
|
+
<define name="TableBody">
|
|
765
|
+
<a:documentation>Elements of table</a:documentation>
|
|
766
|
+
<optional>
|
|
767
|
+
<ref name="tname">
|
|
768
|
+
<a:documentation>Caption for the table</a:documentation>
|
|
769
|
+
</ref>
|
|
770
|
+
</optional>
|
|
771
|
+
<optional>
|
|
772
|
+
<ref name="thead">
|
|
773
|
+
<a:documentation>Table rows constituting the table header</a:documentation>
|
|
774
|
+
</ref>
|
|
775
|
+
</optional>
|
|
776
|
+
<ref name="tbody">
|
|
777
|
+
<a:documentation>Table rows constituting the table body</a:documentation>
|
|
778
|
+
</ref>
|
|
779
|
+
<optional>
|
|
780
|
+
<ref name="tfoot">
|
|
781
|
+
<a:documentation>Table rows constituting the table footer</a:documentation>
|
|
782
|
+
</ref>
|
|
783
|
+
</optional>
|
|
784
|
+
<optional>
|
|
785
|
+
<ref name="dl">
|
|
786
|
+
<a:documentation>Definitions list defining any symbols used in the table</a:documentation>
|
|
787
|
+
</ref>
|
|
788
|
+
</optional>
|
|
789
|
+
<zeroOrMore>
|
|
790
|
+
<ref name="table-note">
|
|
791
|
+
<a:documentation>Notes specific to this block</a:documentation>
|
|
792
|
+
</ref>
|
|
793
|
+
</zeroOrMore>
|
|
794
|
+
</define>
|
|
795
|
+
<define name="TableNoIdBody">
|
|
796
|
+
<a:documentation>Elements of table: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
797
|
+
<optional>
|
|
798
|
+
<ref name="tname">
|
|
799
|
+
<a:documentation>Caption for the table</a:documentation>
|
|
800
|
+
</ref>
|
|
801
|
+
</optional>
|
|
802
|
+
<optional>
|
|
803
|
+
<ref name="thead-no-id">
|
|
804
|
+
<a:documentation>Table rows constituting the table header</a:documentation>
|
|
805
|
+
</ref>
|
|
806
|
+
</optional>
|
|
807
|
+
<ref name="tbody-no-id">
|
|
808
|
+
<a:documentation>Table rows constituting the table body</a:documentation>
|
|
809
|
+
</ref>
|
|
810
|
+
<optional>
|
|
811
|
+
<ref name="tfoot-no-id">
|
|
812
|
+
<a:documentation>Table rows constituting the table footer</a:documentation>
|
|
813
|
+
</ref>
|
|
814
|
+
</optional>
|
|
815
|
+
<optional>
|
|
816
|
+
<ref name="dl-no-id">
|
|
817
|
+
<a:documentation>Definitions list defining any symbols used in the table</a:documentation>
|
|
818
|
+
</ref>
|
|
819
|
+
</optional>
|
|
820
|
+
<zeroOrMore>
|
|
821
|
+
<ref name="table-note-no-id">
|
|
822
|
+
<a:documentation>Notes specific to this block</a:documentation>
|
|
823
|
+
</ref>
|
|
824
|
+
</zeroOrMore>
|
|
825
|
+
</define>
|
|
423
826
|
<define name="tname">
|
|
424
827
|
<element name="name">
|
|
425
828
|
<oneOrMore>
|
|
426
|
-
<
|
|
427
|
-
<ref name="PureTextElement"/>
|
|
428
|
-
<ref name="eref"/>
|
|
429
|
-
<ref name="stem"/>
|
|
430
|
-
<ref name="keyword"/>
|
|
431
|
-
<ref name="xref"/>
|
|
432
|
-
<ref name="hyperlink"/>
|
|
433
|
-
<ref name="index"/>
|
|
434
|
-
<ref name="index-xref"/>
|
|
435
|
-
</choice>
|
|
829
|
+
<ref name="NestedTextElement"/>
|
|
436
830
|
</oneOrMore>
|
|
437
831
|
</element>
|
|
438
832
|
</define>
|
|
@@ -441,11 +835,21 @@
|
|
|
441
835
|
<ref name="tr"/>
|
|
442
836
|
</element>
|
|
443
837
|
</define>
|
|
838
|
+
<define name="thead-no-id">
|
|
839
|
+
<element name="thead">
|
|
840
|
+
<ref name="tr-no-id"/>
|
|
841
|
+
</element>
|
|
842
|
+
</define>
|
|
444
843
|
<define name="tfoot">
|
|
445
844
|
<element name="tfoot">
|
|
446
845
|
<ref name="tr"/>
|
|
447
846
|
</element>
|
|
448
847
|
</define>
|
|
848
|
+
<define name="tfoot-no-id">
|
|
849
|
+
<element name="tfoot">
|
|
850
|
+
<ref name="tr-no-id"/>
|
|
851
|
+
</element>
|
|
852
|
+
</define>
|
|
449
853
|
<define name="tbody">
|
|
450
854
|
<element name="tbody">
|
|
451
855
|
<oneOrMore>
|
|
@@ -453,209 +857,413 @@
|
|
|
453
857
|
</oneOrMore>
|
|
454
858
|
</element>
|
|
455
859
|
</define>
|
|
860
|
+
<define name="tbody-no-id">
|
|
861
|
+
<element name="tbody">
|
|
862
|
+
<oneOrMore>
|
|
863
|
+
<ref name="tr-no-id"/>
|
|
864
|
+
</oneOrMore>
|
|
865
|
+
</element>
|
|
866
|
+
</define>
|
|
456
867
|
<define name="table-note">
|
|
457
868
|
<element name="note">
|
|
458
869
|
<ref name="paragraph"/>
|
|
459
870
|
</element>
|
|
460
871
|
</define>
|
|
872
|
+
<define name="table-note-no-id">
|
|
873
|
+
<element name="note">
|
|
874
|
+
<ref name="paragraph-no-id"/>
|
|
875
|
+
</element>
|
|
876
|
+
</define>
|
|
461
877
|
<define name="tr">
|
|
878
|
+
<a:documentation>Sequence of cells to be displayed as a row in a table</a:documentation>
|
|
462
879
|
<element name="tr">
|
|
880
|
+
<ref name="TrAttributes"/>
|
|
463
881
|
<oneOrMore>
|
|
464
882
|
<choice>
|
|
465
|
-
<ref name="td"
|
|
466
|
-
|
|
883
|
+
<ref name="td">
|
|
884
|
+
<a:documentation>Data cells in a table row</a:documentation>
|
|
885
|
+
</ref>
|
|
886
|
+
<ref name="th">
|
|
887
|
+
<a:documentation>Header cells in a table row</a:documentation>
|
|
888
|
+
</ref>
|
|
889
|
+
</choice>
|
|
890
|
+
</oneOrMore>
|
|
891
|
+
</element>
|
|
892
|
+
</define>
|
|
893
|
+
<define name="TrAttributes">
|
|
894
|
+
<empty/>
|
|
895
|
+
</define>
|
|
896
|
+
<define name="tr-no-id">
|
|
897
|
+
<a:documentation>Sequence of cells to be displayed as a row in a table: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
898
|
+
<element name="tr">
|
|
899
|
+
<oneOrMore>
|
|
900
|
+
<choice>
|
|
901
|
+
<ref name="td-no-id"/>
|
|
902
|
+
<ref name="th-no-id"/>
|
|
467
903
|
</choice>
|
|
468
904
|
</oneOrMore>
|
|
469
905
|
</element>
|
|
470
906
|
</define>
|
|
471
907
|
<define name="td">
|
|
908
|
+
<a:documentation>Textual content constituting a basic building block of a table: data cell</a:documentation>
|
|
472
909
|
<element name="td">
|
|
473
|
-
<
|
|
474
|
-
|
|
475
|
-
</optional>
|
|
476
|
-
<optional>
|
|
477
|
-
<attribute name="rowspan"/>
|
|
478
|
-
</optional>
|
|
479
|
-
<optional>
|
|
480
|
-
<attribute name="align">
|
|
481
|
-
<choice>
|
|
482
|
-
<value>left</value>
|
|
483
|
-
<value>right</value>
|
|
484
|
-
<value>center</value>
|
|
485
|
-
</choice>
|
|
486
|
-
</attribute>
|
|
487
|
-
</optional>
|
|
488
|
-
<optional>
|
|
489
|
-
<attribute name="valign">
|
|
490
|
-
<choice>
|
|
491
|
-
<value>top</value>
|
|
492
|
-
<value>middle</value>
|
|
493
|
-
<value>bottom</value>
|
|
494
|
-
<value>baseline</value>
|
|
495
|
-
</choice>
|
|
496
|
-
</attribute>
|
|
497
|
-
</optional>
|
|
498
|
-
<choice>
|
|
499
|
-
<zeroOrMore>
|
|
500
|
-
<ref name="TextElement"/>
|
|
501
|
-
</zeroOrMore>
|
|
502
|
-
<oneOrMore>
|
|
503
|
-
<ref name="paragraph-with-footnote"/>
|
|
504
|
-
</oneOrMore>
|
|
505
|
-
</choice>
|
|
910
|
+
<ref name="TdAttributes"/>
|
|
911
|
+
<ref name="TdBody"/>
|
|
506
912
|
</element>
|
|
507
913
|
</define>
|
|
508
|
-
<define name="
|
|
509
|
-
<
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
<optional>
|
|
514
|
-
<attribute name="rowspan"/>
|
|
515
|
-
</optional>
|
|
516
|
-
<optional>
|
|
517
|
-
<attribute name="align">
|
|
518
|
-
<choice>
|
|
519
|
-
<value>left</value>
|
|
520
|
-
<value>right</value>
|
|
521
|
-
<value>center</value>
|
|
522
|
-
</choice>
|
|
523
|
-
</attribute>
|
|
524
|
-
</optional>
|
|
525
|
-
<optional>
|
|
526
|
-
<attribute name="valign">
|
|
527
|
-
<choice>
|
|
528
|
-
<value>top</value>
|
|
529
|
-
<value>middle</value>
|
|
530
|
-
<value>bottom</value>
|
|
531
|
-
<value>baseline</value>
|
|
532
|
-
</choice>
|
|
533
|
-
</attribute>
|
|
534
|
-
</optional>
|
|
535
|
-
<choice>
|
|
536
|
-
<zeroOrMore>
|
|
537
|
-
<ref name="TextElement"/>
|
|
538
|
-
</zeroOrMore>
|
|
539
|
-
<oneOrMore>
|
|
540
|
-
<ref name="paragraph-with-footnote"/>
|
|
541
|
-
</oneOrMore>
|
|
542
|
-
</choice>
|
|
914
|
+
<define name="td-no-id">
|
|
915
|
+
<a:documentation>Data cell: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
916
|
+
<element name="td">
|
|
917
|
+
<ref name="TdAttributes"/>
|
|
918
|
+
<ref name="TdNoIdBody"/>
|
|
543
919
|
</element>
|
|
544
920
|
</define>
|
|
545
|
-
<define name="
|
|
546
|
-
<
|
|
547
|
-
<attribute name="
|
|
548
|
-
<
|
|
921
|
+
<define name="TdAttributes">
|
|
922
|
+
<optional>
|
|
923
|
+
<attribute name="colspan">
|
|
924
|
+
<a:documentation>Number of columns in the underlying table grid which the cell spans</a:documentation>
|
|
549
925
|
</attribute>
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
</
|
|
554
|
-
</
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
<
|
|
560
|
-
|
|
561
|
-
|
|
926
|
+
</optional>
|
|
927
|
+
<optional>
|
|
928
|
+
<attribute name="rowspan">
|
|
929
|
+
<a:documentation>Number of rows in the underlying table grid which the cell spans</a:documentation>
|
|
930
|
+
</attribute>
|
|
931
|
+
</optional>
|
|
932
|
+
<optional>
|
|
933
|
+
<attribute name="align">
|
|
934
|
+
<a:documentation>Horizontal textual alignment of the cell against the underlying table grid</a:documentation>
|
|
935
|
+
<choice>
|
|
936
|
+
<value>left</value>
|
|
937
|
+
<value>right</value>
|
|
938
|
+
<value>center</value>
|
|
939
|
+
</choice>
|
|
940
|
+
</attribute>
|
|
941
|
+
</optional>
|
|
942
|
+
<optional>
|
|
943
|
+
<attribute name="valign">
|
|
944
|
+
<a:documentation>Vertical alignment of the cell against the underlying table grid</a:documentation>
|
|
562
945
|
<choice>
|
|
563
|
-
<
|
|
564
|
-
<
|
|
565
|
-
<
|
|
566
|
-
<
|
|
567
|
-
<ref name="quote"/>
|
|
568
|
-
<ref name="sourcecode"/>
|
|
569
|
-
<ref name="paragraph-with-footnote"/>
|
|
946
|
+
<value>top</value>
|
|
947
|
+
<value>middle</value>
|
|
948
|
+
<value>bottom</value>
|
|
949
|
+
<value>baseline</value>
|
|
570
950
|
</choice>
|
|
951
|
+
</attribute>
|
|
952
|
+
</optional>
|
|
953
|
+
</define>
|
|
954
|
+
<define name="TdBody">
|
|
955
|
+
<choice>
|
|
956
|
+
<zeroOrMore>
|
|
957
|
+
<group>
|
|
958
|
+
<a:documentation>Table cell is a block</a:documentation>
|
|
959
|
+
<ref name="TextElement"/>
|
|
960
|
+
</group>
|
|
961
|
+
</zeroOrMore>
|
|
962
|
+
<oneOrMore>
|
|
963
|
+
<ref name="paragraph-with-footnote">
|
|
964
|
+
<a:documentation>Table cell contains a block</a:documentation>
|
|
965
|
+
</ref>
|
|
571
966
|
</oneOrMore>
|
|
967
|
+
</choice>
|
|
968
|
+
</define>
|
|
969
|
+
<define name="TdNoIdBody">
|
|
970
|
+
<choice>
|
|
572
971
|
<zeroOrMore>
|
|
573
|
-
<
|
|
972
|
+
<group>
|
|
973
|
+
<a:documentation>Table cell is a block</a:documentation>
|
|
974
|
+
<ref name="TextElement"/>
|
|
975
|
+
</group>
|
|
574
976
|
</zeroOrMore>
|
|
977
|
+
<oneOrMore>
|
|
978
|
+
<ref name="paragraph-with-footnote-no-id">
|
|
979
|
+
<a:documentation>Table cell contains a block</a:documentation>
|
|
980
|
+
</ref>
|
|
981
|
+
</oneOrMore>
|
|
982
|
+
</choice>
|
|
983
|
+
</define>
|
|
984
|
+
<define name="th">
|
|
985
|
+
<a:documentation>Textual content constituting a basic building block of a table, treated as a header: header cell</a:documentation>
|
|
986
|
+
<element name="th">
|
|
987
|
+
<ref name="ThAttributes"/>
|
|
988
|
+
<ref name="ThBody"/>
|
|
989
|
+
</element>
|
|
990
|
+
</define>
|
|
991
|
+
<define name="th-no-id">
|
|
992
|
+
<a:documentation>Header cell: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
993
|
+
<element name="th">
|
|
994
|
+
<ref name="ThAttributes"/>
|
|
995
|
+
<ref name="ThNoIdBody"/>
|
|
996
|
+
</element>
|
|
997
|
+
</define>
|
|
998
|
+
<define name="ThAttributes">
|
|
999
|
+
<ref name="TdAttributes"/>
|
|
1000
|
+
</define>
|
|
1001
|
+
<define name="ThBody">
|
|
1002
|
+
<ref name="TdBody"/>
|
|
1003
|
+
</define>
|
|
1004
|
+
<define name="ThNoIdBody">
|
|
1005
|
+
<ref name="TdNoIdBody"/>
|
|
1006
|
+
</define>
|
|
1007
|
+
<define name="example">
|
|
1008
|
+
<a:documentation>Block containing an example illustrating a claim made in the main flow of text</a:documentation>
|
|
1009
|
+
<element name="example">
|
|
1010
|
+
<ref name="RequiredId"/>
|
|
1011
|
+
<ref name="ExampleAttributes"/>
|
|
1012
|
+
<ref name="ExampleBody"/>
|
|
1013
|
+
</element>
|
|
1014
|
+
</define>
|
|
1015
|
+
<define name="example-no-id">
|
|
1016
|
+
<a:documentation>Example block: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
1017
|
+
<element name="example">
|
|
1018
|
+
<ref name="OptionalId"/>
|
|
1019
|
+
<ref name="ExampleAttributes"/>
|
|
1020
|
+
<ref name="ExampleNoIdBody"/>
|
|
575
1021
|
</element>
|
|
576
1022
|
</define>
|
|
1023
|
+
<define name="ExampleAttributes">
|
|
1024
|
+
<ref name="NumberingAttributes"/>
|
|
1025
|
+
</define>
|
|
1026
|
+
<define name="ExampleBody">
|
|
1027
|
+
<optional>
|
|
1028
|
+
<ref name="tname">
|
|
1029
|
+
<a:documentation>The caption of the example</a:documentation>
|
|
1030
|
+
</ref>
|
|
1031
|
+
</optional>
|
|
1032
|
+
<oneOrMore>
|
|
1033
|
+
<choice>
|
|
1034
|
+
<a:documentation>Content of the example</a:documentation>
|
|
1035
|
+
<ref name="formula"/>
|
|
1036
|
+
<ref name="ul"/>
|
|
1037
|
+
<ref name="ol"/>
|
|
1038
|
+
<ref name="dl"/>
|
|
1039
|
+
<ref name="quote"/>
|
|
1040
|
+
<ref name="sourcecode"/>
|
|
1041
|
+
<ref name="paragraph-with-footnote"/>
|
|
1042
|
+
</choice>
|
|
1043
|
+
</oneOrMore>
|
|
1044
|
+
<zeroOrMore>
|
|
1045
|
+
<ref name="note">
|
|
1046
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
1047
|
+
</ref>
|
|
1048
|
+
</zeroOrMore>
|
|
1049
|
+
</define>
|
|
1050
|
+
<define name="ExampleNoIdBody">
|
|
1051
|
+
<optional>
|
|
1052
|
+
<ref name="tname">
|
|
1053
|
+
<a:documentation>The caption of the example</a:documentation>
|
|
1054
|
+
</ref>
|
|
1055
|
+
</optional>
|
|
1056
|
+
<oneOrMore>
|
|
1057
|
+
<choice>
|
|
1058
|
+
<a:documentation>Content of the example</a:documentation>
|
|
1059
|
+
<ref name="formula-no-id"/>
|
|
1060
|
+
<ref name="ul-no-id"/>
|
|
1061
|
+
<ref name="ol-no-id"/>
|
|
1062
|
+
<ref name="dl-no-id"/>
|
|
1063
|
+
<ref name="quote-no-id"/>
|
|
1064
|
+
<ref name="sourcecode-no-id"/>
|
|
1065
|
+
<ref name="paragraph-with-footnote-no-id"/>
|
|
1066
|
+
</choice>
|
|
1067
|
+
</oneOrMore>
|
|
1068
|
+
<zeroOrMore>
|
|
1069
|
+
<ref name="note-no-id">
|
|
1070
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
1071
|
+
</ref>
|
|
1072
|
+
</zeroOrMore>
|
|
1073
|
+
</define>
|
|
577
1074
|
<define name="admonition">
|
|
1075
|
+
<a:documentation>A sidebar block outside of the main flow of text, conveying particular warnings or supplementary text to the reader</a:documentation>
|
|
578
1076
|
<element name="admonition">
|
|
579
|
-
<
|
|
580
|
-
|
|
1077
|
+
<ref name="RequiredId"/>
|
|
1078
|
+
<ref name="AdmonitionAttributes"/>
|
|
1079
|
+
<ref name="AdmonitionBody"/>
|
|
1080
|
+
</element>
|
|
1081
|
+
</define>
|
|
1082
|
+
<define name="admonition-no-id">
|
|
1083
|
+
<a:documentation>A sidebar block outside of the main flow of text: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
1084
|
+
<element name="admonition">
|
|
1085
|
+
<ref name="OptionalId"/>
|
|
1086
|
+
<ref name="AdmonitionAttributes"/>
|
|
1087
|
+
<ref name="AdmonitionNoIdBody"/>
|
|
1088
|
+
</element>
|
|
1089
|
+
</define>
|
|
1090
|
+
<define name="AdmonitionAttributes">
|
|
1091
|
+
<attribute name="type">
|
|
1092
|
+
<a:documentation>Subclass of admonition determining how it is to be rendered.
|
|
1093
|
+
Distinct admonition types are often associated with distinct icons or rendering</a:documentation>
|
|
1094
|
+
<ref name="AdmonitionType"/>
|
|
1095
|
+
</attribute>
|
|
1096
|
+
<optional>
|
|
1097
|
+
<attribute name="class">
|
|
1098
|
+
<a:documentation>Subclass of admonition, allowing different runs of admonitions to be labelled
|
|
1099
|
+
and auto-numbered differently, even if they are of the same type.
|
|
1100
|
+
Typically is a subclass of an admonition type</a:documentation>
|
|
581
1101
|
</attribute>
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
<data type="
|
|
1102
|
+
</optional>
|
|
1103
|
+
<optional>
|
|
1104
|
+
<attribute name="uri">
|
|
1105
|
+
<a:documentation>Location where the content of the admonition is accessible as an external document</a:documentation>
|
|
1106
|
+
<data type="anyURI"/>
|
|
587
1107
|
</attribute>
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
1108
|
+
</optional>
|
|
1109
|
+
</define>
|
|
1110
|
+
<define name="AdmonitionBody">
|
|
1111
|
+
<optional>
|
|
1112
|
+
<ref name="tname">
|
|
1113
|
+
<a:documentation>Caption of admonition</a:documentation>
|
|
1114
|
+
</ref>
|
|
1115
|
+
</optional>
|
|
1116
|
+
<zeroOrMore>
|
|
1117
|
+
<ref name="paragraph-with-footnote">
|
|
1118
|
+
<a:documentation>Admonition content</a:documentation>
|
|
1119
|
+
</ref>
|
|
1120
|
+
</zeroOrMore>
|
|
1121
|
+
<zeroOrMore>
|
|
1122
|
+
<ref name="note">
|
|
1123
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
1124
|
+
</ref>
|
|
1125
|
+
</zeroOrMore>
|
|
1126
|
+
</define>
|
|
1127
|
+
<define name="AdmonitionNoIdBody">
|
|
1128
|
+
<optional>
|
|
1129
|
+
<ref name="tname">
|
|
1130
|
+
<a:documentation>Caption of admonition</a:documentation>
|
|
1131
|
+
</ref>
|
|
1132
|
+
</optional>
|
|
1133
|
+
<zeroOrMore>
|
|
1134
|
+
<ref name="paragraph-with-footnote-no-id">
|
|
1135
|
+
<a:documentation>Admonition content</a:documentation>
|
|
1136
|
+
</ref>
|
|
1137
|
+
</zeroOrMore>
|
|
1138
|
+
<zeroOrMore>
|
|
1139
|
+
<ref name="note-no-id">
|
|
1140
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
1141
|
+
</ref>
|
|
1142
|
+
</zeroOrMore>
|
|
603
1143
|
</define>
|
|
604
1144
|
<define name="AdmonitionType">
|
|
1145
|
+
<a:documentation>Subclass of admonition determining how it is to be rendered</a:documentation>
|
|
605
1146
|
<choice>
|
|
606
1147
|
<value>warning</value>
|
|
1148
|
+
<a:documentation>Warning to reader, note of risk to be avoided</a:documentation>
|
|
607
1149
|
<value>note</value>
|
|
1150
|
+
<a:documentation>Supplementary, explanatory information</a:documentation>
|
|
608
1151
|
<value>tip</value>
|
|
1152
|
+
<a:documentation>Instructive information to assist in the fulfilment of tasks related to content</a:documentation>
|
|
609
1153
|
<value>important</value>
|
|
1154
|
+
<a:documentation>Note to reader of something crucial to be borne in mind</a:documentation>
|
|
610
1155
|
<value>caution</value>
|
|
1156
|
+
<a:documentation>Caution to reader, note of potential surprise or difficulty</a:documentation>
|
|
611
1157
|
</choice>
|
|
612
1158
|
</define>
|
|
613
1159
|
<define name="figure">
|
|
1160
|
+
<a:documentation>Block containing a figure: a visual rather than textual asset, possibly with accompanying text</a:documentation>
|
|
614
1161
|
<element name="figure">
|
|
615
|
-
<
|
|
616
|
-
|
|
1162
|
+
<ref name="RequiredId"/>
|
|
1163
|
+
<ref name="FigureAttributes"/>
|
|
1164
|
+
<ref name="FigureBody"/>
|
|
1165
|
+
</element>
|
|
1166
|
+
</define>
|
|
1167
|
+
<define name="figure-no-id">
|
|
1168
|
+
<a:documentation>Block containing a figure: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
1169
|
+
<element name="figure">
|
|
1170
|
+
<ref name="OptionalId"/>
|
|
1171
|
+
<ref name="FigureAttributes"/>
|
|
1172
|
+
<ref name="FigureNoIdBody"/>
|
|
1173
|
+
</element>
|
|
1174
|
+
</define>
|
|
1175
|
+
<define name="FigureAttributes">
|
|
1176
|
+
<ref name="NumberingAttributes"/>
|
|
1177
|
+
<optional>
|
|
1178
|
+
<attribute name="class">
|
|
1179
|
+
<a:documentation>The semantic category of the figure. This is to allow different classes of figure (e.g. _Plate_, _Chart_, _Diagram_)
|
|
1180
|
+
to be auto-numbered and captioned differently</a:documentation>
|
|
617
1181
|
</attribute>
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
<
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
<
|
|
633
|
-
<ref name="
|
|
634
|
-
</
|
|
635
|
-
<choice>
|
|
636
|
-
<ref name="image"/>
|
|
637
|
-
<ref name="video"/>
|
|
638
|
-
<ref name="audio"/>
|
|
639
|
-
<ref name="pre"/>
|
|
640
|
-
<oneOrMore>
|
|
641
|
-
<ref name="paragraph-with-footnote"/>
|
|
642
|
-
</oneOrMore>
|
|
643
|
-
<zeroOrMore>
|
|
644
|
-
<ref name="figure"/>
|
|
645
|
-
</zeroOrMore>
|
|
646
|
-
</choice>
|
|
1182
|
+
</optional>
|
|
1183
|
+
</define>
|
|
1184
|
+
<define name="FigureBody">
|
|
1185
|
+
<optional>
|
|
1186
|
+
<ref name="tname">
|
|
1187
|
+
<a:documentation>The caption of the block</a:documentation>
|
|
1188
|
+
</ref>
|
|
1189
|
+
</optional>
|
|
1190
|
+
<choice>
|
|
1191
|
+
<a:documentation>Content of the figure</a:documentation>
|
|
1192
|
+
<ref name="image"/>
|
|
1193
|
+
<ref name="video"/>
|
|
1194
|
+
<ref name="audio"/>
|
|
1195
|
+
<ref name="pre"/>
|
|
1196
|
+
<oneOrMore>
|
|
1197
|
+
<ref name="paragraph-with-footnote"/>
|
|
1198
|
+
</oneOrMore>
|
|
647
1199
|
<zeroOrMore>
|
|
648
|
-
<ref name="
|
|
1200
|
+
<ref name="figure"/>
|
|
649
1201
|
</zeroOrMore>
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
1202
|
+
</choice>
|
|
1203
|
+
<zeroOrMore>
|
|
1204
|
+
<ref name="fn">
|
|
1205
|
+
<a:documentation>Footnotes specific to the figure</a:documentation>
|
|
1206
|
+
</ref>
|
|
1207
|
+
</zeroOrMore>
|
|
1208
|
+
<optional>
|
|
1209
|
+
<ref name="dl">
|
|
1210
|
+
<a:documentation>An optional definitions list defining any symbols used in the figure</a:documentation>
|
|
1211
|
+
</ref>
|
|
1212
|
+
</optional>
|
|
1213
|
+
<zeroOrMore>
|
|
1214
|
+
<ref name="note">
|
|
1215
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
1216
|
+
</ref>
|
|
1217
|
+
</zeroOrMore>
|
|
1218
|
+
<optional>
|
|
1219
|
+
<ref name="source">
|
|
1220
|
+
<a:documentation>A URI or other reference intended to link to an externally hosted image (or equivalent)</a:documentation>
|
|
1221
|
+
</ref>
|
|
1222
|
+
</optional>
|
|
1223
|
+
</define>
|
|
1224
|
+
<define name="FigureNoIdBody">
|
|
1225
|
+
<optional>
|
|
1226
|
+
<ref name="source">
|
|
1227
|
+
<a:documentation>A URI or other reference intended to link to an externally hosted image (or equivalent)</a:documentation>
|
|
1228
|
+
</ref>
|
|
1229
|
+
</optional>
|
|
1230
|
+
<optional>
|
|
1231
|
+
<ref name="tname">
|
|
1232
|
+
<a:documentation>The caption of the block</a:documentation>
|
|
1233
|
+
</ref>
|
|
1234
|
+
</optional>
|
|
1235
|
+
<choice>
|
|
1236
|
+
<a:documentation>Content of the figure</a:documentation>
|
|
1237
|
+
<ref name="image-no-id"/>
|
|
1238
|
+
<ref name="video-no-id"/>
|
|
1239
|
+
<ref name="audio-no-id"/>
|
|
1240
|
+
<ref name="pre-no-id"/>
|
|
1241
|
+
<oneOrMore>
|
|
1242
|
+
<ref name="paragraph-with-footnote-no-id"/>
|
|
1243
|
+
</oneOrMore>
|
|
653
1244
|
<zeroOrMore>
|
|
654
|
-
<ref name="
|
|
1245
|
+
<ref name="figure-no-id"/>
|
|
655
1246
|
</zeroOrMore>
|
|
656
|
-
</
|
|
1247
|
+
</choice>
|
|
1248
|
+
<zeroOrMore>
|
|
1249
|
+
<ref name="fn">
|
|
1250
|
+
<a:documentation>Footnotes specific to the figure</a:documentation>
|
|
1251
|
+
</ref>
|
|
1252
|
+
</zeroOrMore>
|
|
1253
|
+
<optional>
|
|
1254
|
+
<ref name="dl-no-id">
|
|
1255
|
+
<a:documentation>An optional definitions list defining any symbols used in the figure</a:documentation>
|
|
1256
|
+
</ref>
|
|
1257
|
+
</optional>
|
|
1258
|
+
<zeroOrMore>
|
|
1259
|
+
<ref name="note-no-id">
|
|
1260
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
1261
|
+
</ref>
|
|
1262
|
+
</zeroOrMore>
|
|
657
1263
|
</define>
|
|
658
1264
|
<define name="TextElement">
|
|
1265
|
+
<a:documentation>Any inline element containing text and associated formatting information.
|
|
1266
|
+
Includes inline elements that are identifiers or references to identifiers</a:documentation>
|
|
659
1267
|
<choice>
|
|
660
1268
|
<text/>
|
|
661
1269
|
<ref name="em"/>
|
|
@@ -682,17 +1290,34 @@
|
|
|
682
1290
|
</choice>
|
|
683
1291
|
</define>
|
|
684
1292
|
<define name="PureTextElement">
|
|
1293
|
+
<a:documentation>Inline element containing text and associated formatting information,
|
|
1294
|
+
but which does not contain any associated identifiers or references to identifiers.
|
|
1295
|
+
Restricted recursively to contain only other such inline elements with no identifiers or references to identifiers</a:documentation>
|
|
685
1296
|
<choice>
|
|
686
1297
|
<text/>
|
|
687
|
-
<ref name="
|
|
688
|
-
<ref name="
|
|
1298
|
+
<ref name="pure_em"/>
|
|
1299
|
+
<ref name="pure_strong"/>
|
|
689
1300
|
<ref name="sub"/>
|
|
690
1301
|
<ref name="sup"/>
|
|
691
|
-
<ref name="
|
|
692
|
-
<ref name="
|
|
693
|
-
<ref name="
|
|
694
|
-
<ref name="
|
|
1302
|
+
<ref name="pure_tt"/>
|
|
1303
|
+
<ref name="pure_underline"/>
|
|
1304
|
+
<ref name="pure_strike"/>
|
|
1305
|
+
<ref name="pure_smallcap"/>
|
|
695
1306
|
<ref name="br"/>
|
|
1307
|
+
<ref name="stem"/>
|
|
1308
|
+
</choice>
|
|
1309
|
+
</define>
|
|
1310
|
+
<define name="NestedTextElement">
|
|
1311
|
+
<a:documentation>Contents of TextElement tags: leaves out tags that should occur only at top level of block: bookmark image hr pagebreak</a:documentation>
|
|
1312
|
+
<choice>
|
|
1313
|
+
<ref name="PureTextElement"/>
|
|
1314
|
+
<ref name="eref"/>
|
|
1315
|
+
<ref name="xref"/>
|
|
1316
|
+
<ref name="hyperlink"/>
|
|
1317
|
+
<ref name="index"/>
|
|
1318
|
+
<ref name="index-xref"/>
|
|
1319
|
+
<ref name="ruby"/>
|
|
1320
|
+
<ref name="keyword"/>
|
|
696
1321
|
</choice>
|
|
697
1322
|
</define>
|
|
698
1323
|
<define name="source">
|
|
@@ -701,50 +1326,55 @@
|
|
|
701
1326
|
</element>
|
|
702
1327
|
</define>
|
|
703
1328
|
<define name="em">
|
|
1329
|
+
<a:documentation>Emphasised text. Corresponds to HTML `em`, `i`</a:documentation>
|
|
704
1330
|
<element name="em">
|
|
705
1331
|
<zeroOrMore>
|
|
706
|
-
<
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
1332
|
+
<ref name="NestedTextElement"/>
|
|
1333
|
+
</zeroOrMore>
|
|
1334
|
+
</element>
|
|
1335
|
+
</define>
|
|
1336
|
+
<define name="pure_em">
|
|
1337
|
+
<a:documentation>Emphasised text for PureTextElement</a:documentation>
|
|
1338
|
+
<element name="em">
|
|
1339
|
+
<zeroOrMore>
|
|
1340
|
+
<ref name="PureTextElement"/>
|
|
715
1341
|
</zeroOrMore>
|
|
716
1342
|
</element>
|
|
717
1343
|
</define>
|
|
718
1344
|
<define name="strong">
|
|
1345
|
+
<a:documentation>Strong text. Corresponds to HTML `strong`, `b`</a:documentation>
|
|
719
1346
|
<element name="strong">
|
|
720
1347
|
<zeroOrMore>
|
|
721
|
-
<
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
1348
|
+
<ref name="NestedTextElement"/>
|
|
1349
|
+
</zeroOrMore>
|
|
1350
|
+
</element>
|
|
1351
|
+
</define>
|
|
1352
|
+
<define name="pure_strong">
|
|
1353
|
+
<a:documentation>Strong text for PureTextElement</a:documentation>
|
|
1354
|
+
<element name="strong">
|
|
1355
|
+
<zeroOrMore>
|
|
1356
|
+
<ref name="PureTextElement"/>
|
|
730
1357
|
</zeroOrMore>
|
|
731
1358
|
</element>
|
|
732
1359
|
</define>
|
|
733
1360
|
<define name="tt">
|
|
1361
|
+
<a:documentation>Monospace text. Corresponds to HTML `tt`, `code`</a:documentation>
|
|
734
1362
|
<element name="tt">
|
|
735
1363
|
<zeroOrMore>
|
|
736
|
-
<
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
1364
|
+
<ref name="NestedTextElement"/>
|
|
1365
|
+
</zeroOrMore>
|
|
1366
|
+
</element>
|
|
1367
|
+
</define>
|
|
1368
|
+
<define name="pure_tt">
|
|
1369
|
+
<a:documentation>Monospace text for PureTextElement</a:documentation>
|
|
1370
|
+
<element name="tt">
|
|
1371
|
+
<zeroOrMore>
|
|
1372
|
+
<ref name="PureTextElement"/>
|
|
744
1373
|
</zeroOrMore>
|
|
745
1374
|
</element>
|
|
746
1375
|
</define>
|
|
747
1376
|
<define name="keyword">
|
|
1377
|
+
<a:documentation>Keyword text</a:documentation>
|
|
748
1378
|
<element name="keyword">
|
|
749
1379
|
<zeroOrMore>
|
|
750
1380
|
<choice>
|
|
@@ -756,6 +1386,7 @@
|
|
|
756
1386
|
</element>
|
|
757
1387
|
</define>
|
|
758
1388
|
<define name="sub">
|
|
1389
|
+
<a:documentation>Subscript text. Corresponds to HTML `sub`</a:documentation>
|
|
759
1390
|
<element name="sub">
|
|
760
1391
|
<zeroOrMore>
|
|
761
1392
|
<ref name="PureTextElement"/>
|
|
@@ -763,6 +1394,7 @@
|
|
|
763
1394
|
</element>
|
|
764
1395
|
</define>
|
|
765
1396
|
<define name="sup">
|
|
1397
|
+
<a:documentation>Superscript text. Corresponds to HTML `sup`</a:documentation>
|
|
766
1398
|
<element name="sup">
|
|
767
1399
|
<zeroOrMore>
|
|
768
1400
|
<ref name="PureTextElement"/>
|
|
@@ -770,17 +1402,36 @@
|
|
|
770
1402
|
</element>
|
|
771
1403
|
</define>
|
|
772
1404
|
<define name="strike">
|
|
1405
|
+
<a:documentation>Strikethrough text. Corresponds to HTML 4 `s`</a:documentation>
|
|
773
1406
|
<element name="strike">
|
|
774
1407
|
<zeroOrMore>
|
|
775
|
-
<
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
1408
|
+
<ref name="NestedTextElement"/>
|
|
1409
|
+
</zeroOrMore>
|
|
1410
|
+
</element>
|
|
1411
|
+
</define>
|
|
1412
|
+
<define name="pure_strike">
|
|
1413
|
+
<a:documentation>Strikethrough for PureTextElement</a:documentation>
|
|
1414
|
+
<element name="strike">
|
|
1415
|
+
<zeroOrMore>
|
|
1416
|
+
<ref name="PureTextElement"/>
|
|
780
1417
|
</zeroOrMore>
|
|
781
1418
|
</element>
|
|
782
1419
|
</define>
|
|
783
1420
|
<define name="underline">
|
|
1421
|
+
<a:documentation>Underlined text. Corresponds to HTML 4 `u`</a:documentation>
|
|
1422
|
+
<element name="underline">
|
|
1423
|
+
<optional>
|
|
1424
|
+
<attribute name="style">
|
|
1425
|
+
<a:documentation>CSS style to apply to underline (intended for text-decoration-style attribute keyword values: solid double dotted dashed wavy)</a:documentation>
|
|
1426
|
+
</attribute>
|
|
1427
|
+
</optional>
|
|
1428
|
+
<zeroOrMore>
|
|
1429
|
+
<ref name="NestedTextElement"/>
|
|
1430
|
+
</zeroOrMore>
|
|
1431
|
+
</element>
|
|
1432
|
+
</define>
|
|
1433
|
+
<define name="pure_underline">
|
|
1434
|
+
<a:documentation>Underlined text for PureTextElement</a:documentation>
|
|
784
1435
|
<element name="underline">
|
|
785
1436
|
<optional>
|
|
786
1437
|
<attribute name="style"/>
|
|
@@ -791,6 +1442,15 @@
|
|
|
791
1442
|
</element>
|
|
792
1443
|
</define>
|
|
793
1444
|
<define name="smallcap">
|
|
1445
|
+
<a:documentation>Small caps text</a:documentation>
|
|
1446
|
+
<element name="smallcap">
|
|
1447
|
+
<zeroOrMore>
|
|
1448
|
+
<ref name="NestedTextElement"/>
|
|
1449
|
+
</zeroOrMore>
|
|
1450
|
+
</element>
|
|
1451
|
+
</define>
|
|
1452
|
+
<define name="pure_smallcap">
|
|
1453
|
+
<a:documentation>Small caps text for PureTextElement</a:documentation>
|
|
794
1454
|
<element name="smallcap">
|
|
795
1455
|
<zeroOrMore>
|
|
796
1456
|
<ref name="PureTextElement"/>
|
|
@@ -798,252 +1458,333 @@
|
|
|
798
1458
|
</element>
|
|
799
1459
|
</define>
|
|
800
1460
|
<define name="ruby">
|
|
1461
|
+
<a:documentation>Text with Ruby annotations in East Asian languages. Corresponds to HTML `ruby`</a:documentation>
|
|
801
1462
|
<element name="ruby">
|
|
802
1463
|
<choice>
|
|
803
|
-
<ref name="ruby_pronunciation"
|
|
804
|
-
|
|
1464
|
+
<ref name="ruby_pronunciation">
|
|
1465
|
+
<a:documentation>Ruby annotation giving pronunciation</a:documentation>
|
|
1466
|
+
</ref>
|
|
1467
|
+
<ref name="ruby_annotation">
|
|
1468
|
+
<a:documentation>Ruby annotation giving other (semantic) information</a:documentation>
|
|
1469
|
+
</ref>
|
|
805
1470
|
</choice>
|
|
806
1471
|
<choice>
|
|
807
|
-
<text
|
|
808
|
-
|
|
1472
|
+
<text>
|
|
1473
|
+
<a:documentation>Ruby annotated text which contains no further annotations</a:documentation>
|
|
1474
|
+
</text>
|
|
1475
|
+
<ref name="ruby">
|
|
1476
|
+
<a:documentation>Ruby annotated text which itself contains other Ruby annotations</a:documentation>
|
|
1477
|
+
</ref>
|
|
809
1478
|
</choice>
|
|
810
1479
|
</element>
|
|
811
1480
|
</define>
|
|
812
1481
|
<define name="ruby_pronunciation">
|
|
1482
|
+
<a:documentation>Ruby annotation giving pronunciation of text</a:documentation>
|
|
813
1483
|
<element name="pronunciation">
|
|
814
|
-
<attribute name="value"
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
<optional>
|
|
819
|
-
<attribute name="lang"/>
|
|
820
|
-
</optional>
|
|
1484
|
+
<attribute name="value">
|
|
1485
|
+
<a:documentation>Ruby annotation value</a:documentation>
|
|
1486
|
+
</attribute>
|
|
1487
|
+
<ref name="LocalizedStringAttributes"/>
|
|
821
1488
|
</element>
|
|
822
1489
|
</define>
|
|
823
1490
|
<define name="ruby_annotation">
|
|
1491
|
+
<a:documentation>Ruby annotation giving information other than pronunciation of text</a:documentation>
|
|
824
1492
|
<element name="annotation">
|
|
825
|
-
<attribute name="value"
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
<optional>
|
|
830
|
-
<attribute name="lang"/>
|
|
831
|
-
</optional>
|
|
1493
|
+
<attribute name="value">
|
|
1494
|
+
<a:documentation>Ruby annotation value</a:documentation>
|
|
1495
|
+
</attribute>
|
|
1496
|
+
<ref name="LocalizedStringAttributes"/>
|
|
832
1497
|
</element>
|
|
833
1498
|
</define>
|
|
834
1499
|
<define name="br">
|
|
1500
|
+
<a:documentation>Line break</a:documentation>
|
|
835
1501
|
<element name="br">
|
|
836
1502
|
<empty/>
|
|
837
1503
|
</element>
|
|
838
1504
|
</define>
|
|
839
1505
|
<define name="hr">
|
|
1506
|
+
<a:documentation>Horizontal rule</a:documentation>
|
|
840
1507
|
<element name="hr">
|
|
841
1508
|
<empty/>
|
|
842
1509
|
</element>
|
|
843
1510
|
</define>
|
|
844
1511
|
<define name="pagebreak">
|
|
1512
|
+
<a:documentation>Page break. Only applicable in paged layouts (e.g. PDF, Word), and not flow layouts (e.g. HTML)</a:documentation>
|
|
845
1513
|
<element name="pagebreak">
|
|
846
1514
|
<empty/>
|
|
847
1515
|
</element>
|
|
848
1516
|
</define>
|
|
849
1517
|
<define name="index">
|
|
1518
|
+
<a:documentation>Index term, defined as applying to the location in the text where the index element appears, as a milestone</a:documentation>
|
|
850
1519
|
<element name="index">
|
|
851
1520
|
<optional>
|
|
852
1521
|
<attribute name="to">
|
|
853
|
-
<
|
|
1522
|
+
<a:documentation>A reference to an anchor element (typically a bookmark),
|
|
1523
|
+
to indicate that the index range covers a range of locations between the current index element and the `to` anchor</a:documentation>
|
|
1524
|
+
<ref name="IdRefType"/>
|
|
854
1525
|
</attribute>
|
|
855
1526
|
</optional>
|
|
856
|
-
<
|
|
857
|
-
<
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
</oneOrMore>
|
|
866
|
-
</element>
|
|
867
|
-
</optional>
|
|
868
|
-
<optional>
|
|
869
|
-
<element name="tertiary">
|
|
870
|
-
<oneOrMore>
|
|
871
|
-
<ref name="PureTextElement"/>
|
|
872
|
-
</oneOrMore>
|
|
873
|
-
</element>
|
|
874
|
-
</optional>
|
|
1527
|
+
<ref name="index-primary">
|
|
1528
|
+
<a:documentation>Primary index term to be recorded at the current location</a:documentation>
|
|
1529
|
+
</ref>
|
|
1530
|
+
<ref name="index-secondary">
|
|
1531
|
+
<a:documentation>Secondary index term to be recorded at the current location</a:documentation>
|
|
1532
|
+
</ref>
|
|
1533
|
+
<ref name="index-tertiary">
|
|
1534
|
+
<a:documentation>Tertiary index term to be recorded at the current </a:documentation>
|
|
1535
|
+
</ref>
|
|
875
1536
|
</element>
|
|
876
1537
|
</define>
|
|
877
1538
|
<define name="index-xref">
|
|
1539
|
+
<a:documentation>A reference to an index term, cross-referenced within an index as an
|
|
1540
|
+
alternative index entry, either as a "see" or a "see also" cross-reference.
|
|
1541
|
+
The text in the inline element is the primary index term to be be cross-referenced</a:documentation>
|
|
878
1542
|
<element name="index-xref">
|
|
879
1543
|
<attribute name="also">
|
|
1544
|
+
<a:documentation>The cross-reference is to be treated as "see also" rather than as "see"</a:documentation>
|
|
880
1545
|
<data type="boolean"/>
|
|
881
1546
|
</attribute>
|
|
882
|
-
<
|
|
883
|
-
<
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
</oneOrMore>
|
|
892
|
-
</element>
|
|
893
|
-
</optional>
|
|
894
|
-
<optional>
|
|
895
|
-
<element name="tertiary">
|
|
896
|
-
<oneOrMore>
|
|
897
|
-
<ref name="PureTextElement"/>
|
|
898
|
-
</oneOrMore>
|
|
899
|
-
</element>
|
|
900
|
-
</optional>
|
|
1547
|
+
<ref name="index-primary">
|
|
1548
|
+
<a:documentation>The primary index term to be cross-referenced</a:documentation>
|
|
1549
|
+
</ref>
|
|
1550
|
+
<ref name="index-secondary">
|
|
1551
|
+
<a:documentation>The secondary index term to be cross-referenced</a:documentation>
|
|
1552
|
+
</ref>
|
|
1553
|
+
<ref name="index-tertiary">
|
|
1554
|
+
<a:documentation>The tertiary index term to be cross-referenced</a:documentation>
|
|
1555
|
+
</ref>
|
|
901
1556
|
<element name="target">
|
|
1557
|
+
<a:documentation>The index term to be cross-referenced to</a:documentation>
|
|
902
1558
|
<oneOrMore>
|
|
903
1559
|
<ref name="PureTextElement"/>
|
|
904
1560
|
</oneOrMore>
|
|
905
1561
|
</element>
|
|
906
1562
|
</element>
|
|
907
1563
|
</define>
|
|
908
|
-
|
|
1564
|
+
<define name="index-primary">
|
|
1565
|
+
<element name="primary">
|
|
1566
|
+
<oneOrMore>
|
|
1567
|
+
<ref name="PureTextElement"/>
|
|
1568
|
+
</oneOrMore>
|
|
1569
|
+
</element>
|
|
1570
|
+
</define>
|
|
1571
|
+
<define name="index-secondary">
|
|
1572
|
+
<element name="secondary">
|
|
1573
|
+
<oneOrMore>
|
|
1574
|
+
<ref name="PureTextElement"/>
|
|
1575
|
+
</oneOrMore>
|
|
1576
|
+
</element>
|
|
1577
|
+
</define>
|
|
1578
|
+
<define name="index-tertiary">
|
|
1579
|
+
<element name="tertiary">
|
|
1580
|
+
<oneOrMore>
|
|
1581
|
+
<ref name="PureTextElement"/>
|
|
1582
|
+
</oneOrMore>
|
|
1583
|
+
</element>
|
|
1584
|
+
</define>
|
|
909
1585
|
<define name="bookmark">
|
|
1586
|
+
<a:documentation>Anchors within a block under the BasicDocument model cannot span across a number of inline elements;
|
|
1587
|
+
bookmarks are intended as point anchors. For that reason, the Review block has a starting reference and an optional ending reference,
|
|
1588
|
+
which can be bookmarks as well as block or section references</a:documentation>
|
|
910
1589
|
<element name="bookmark">
|
|
911
|
-
<
|
|
912
|
-
<data type="ID"/>
|
|
913
|
-
</attribute>
|
|
1590
|
+
<ref name="RequiredId"/>
|
|
914
1591
|
<empty/>
|
|
915
1592
|
</element>
|
|
916
1593
|
</define>
|
|
917
1594
|
<define name="ReferenceFormat">
|
|
1595
|
+
<a:documentation>The type of Reference Element, prescribing how it is to be rendered</a:documentation>
|
|
918
1596
|
<choice>
|
|
919
1597
|
<value>external</value>
|
|
1598
|
+
<a:documentation>Reference to an external document</a:documentation>
|
|
920
1599
|
<value>inline</value>
|
|
1600
|
+
<a:documentation>Reference to another element in the same document</a:documentation>
|
|
921
1601
|
<value>footnote</value>
|
|
1602
|
+
<a:documentation>Inline reference to a block to be rendered as a footnote</a:documentation>
|
|
922
1603
|
<value>callout</value>
|
|
1604
|
+
<a:documentation>Inline reference to a block to be referenced as a sourcecode callout</a:documentation>
|
|
923
1605
|
</choice>
|
|
924
1606
|
</define>
|
|
925
1607
|
<define name="eref">
|
|
1608
|
+
<a:documentation>An external reference to a bibliographic entity</a:documentation>
|
|
926
1609
|
<element name="eref">
|
|
927
1610
|
<ref name="erefType"/>
|
|
928
1611
|
</element>
|
|
929
1612
|
</define>
|
|
930
1613
|
<define name="erefType">
|
|
1614
|
+
<ref name="erefAttributes"/>
|
|
1615
|
+
<ref name="CitationType">
|
|
1616
|
+
<a:documentation>Reference cross-reference: modelled as cross-reference to the corresponding bibliographical item in a References section</a:documentation>
|
|
1617
|
+
</ref>
|
|
1618
|
+
<ref name="ErefBody">
|
|
1619
|
+
<a:documentation>The textual content of the element. The `text` is what we wish to show the link as (e.g., the "content" of `<xx>my link text</xx>`)</a:documentation>
|
|
1620
|
+
</ref>
|
|
1621
|
+
</define>
|
|
1622
|
+
<define name="erefAttributes">
|
|
931
1623
|
<optional>
|
|
932
1624
|
<attribute name="normative">
|
|
1625
|
+
<a:documentation>Whether the reference is to be treated as normative or informative, particularly in the context of normative documents such as standards</a:documentation>
|
|
933
1626
|
<data type="boolean"/>
|
|
934
1627
|
</attribute>
|
|
935
1628
|
</optional>
|
|
936
|
-
<attribute name="citeas"
|
|
937
|
-
|
|
938
|
-
<ref name="ReferenceFormat"/>
|
|
1629
|
+
<attribute name="citeas">
|
|
1630
|
+
<a:documentation>Form that the bibliographic citation should take when it is rendered</a:documentation>
|
|
939
1631
|
</attribute>
|
|
940
1632
|
<optional>
|
|
941
|
-
<attribute name="
|
|
1633
|
+
<attribute name="type">
|
|
1634
|
+
<a:documentation>The type of Reference Element, prescribing how it is to be rendered</a:documentation>
|
|
1635
|
+
<ref name="ReferenceFormat"/>
|
|
1636
|
+
</attribute>
|
|
1637
|
+
</optional>
|
|
1638
|
+
<optional>
|
|
1639
|
+
<attribute name="alt">
|
|
1640
|
+
<a:documentation>Alternate text, used for accessibility</a:documentation>
|
|
1641
|
+
</attribute>
|
|
942
1642
|
</optional>
|
|
943
|
-
<ref name="CitationType"/>
|
|
944
|
-
<oneOrMore>
|
|
945
|
-
<ref name="PureTextElement"/>
|
|
946
|
-
</oneOrMore>
|
|
947
1643
|
</define>
|
|
948
1644
|
<define name="hyperlink">
|
|
1645
|
+
<a:documentation>A reference to an external document or resource</a:documentation>
|
|
949
1646
|
<element name="link">
|
|
950
|
-
<
|
|
951
|
-
<data type="anyURI"/>
|
|
952
|
-
</attribute>
|
|
953
|
-
<attribute name="type">
|
|
954
|
-
<ref name="ReferenceFormat"/>
|
|
955
|
-
</attribute>
|
|
956
|
-
<optional>
|
|
957
|
-
<attribute name="alt"/>
|
|
958
|
-
</optional>
|
|
1647
|
+
<ref name="HyperlinkAttributes"/>
|
|
959
1648
|
<oneOrMore>
|
|
960
|
-
<ref name="PureTextElement"
|
|
1649
|
+
<ref name="PureTextElement">
|
|
1650
|
+
<a:documentation>The textual content of the element. The `text` is what we wish to show the link as (e.g., the "content" of `<xx>my link text</xx>`)</a:documentation>
|
|
1651
|
+
</ref>
|
|
961
1652
|
</oneOrMore>
|
|
962
1653
|
</element>
|
|
963
1654
|
</define>
|
|
1655
|
+
<define name="HyperlinkAttributes">
|
|
1656
|
+
<attribute name="target">
|
|
1657
|
+
<a:documentation>The location or online identifier of the external document or resource</a:documentation>
|
|
1658
|
+
<data type="anyURI"/>
|
|
1659
|
+
</attribute>
|
|
1660
|
+
<optional>
|
|
1661
|
+
<attribute name="type">
|
|
1662
|
+
<a:documentation>The type of Reference Element, prescribing how it is to be rendered</a:documentation>
|
|
1663
|
+
<ref name="ReferenceFormat"/>
|
|
1664
|
+
</attribute>
|
|
1665
|
+
</optional>
|
|
1666
|
+
<optional>
|
|
1667
|
+
<attribute name="alt">
|
|
1668
|
+
<a:documentation>Alternate text, used for accessibility</a:documentation>
|
|
1669
|
+
</attribute>
|
|
1670
|
+
</optional>
|
|
1671
|
+
</define>
|
|
964
1672
|
<define name="xref">
|
|
1673
|
+
<a:documentation>Inline element, which references an identifier of a document, a block in a document, or an element in a document</a:documentation>
|
|
965
1674
|
<element name="xref">
|
|
966
|
-
<
|
|
967
|
-
|
|
968
|
-
|
|
1675
|
+
<ref name="XrefAttributes"/>
|
|
1676
|
+
<ref name="XrefBody"/>
|
|
1677
|
+
</element>
|
|
1678
|
+
</define>
|
|
1679
|
+
<define name="XrefAttributes">
|
|
1680
|
+
<attribute name="target">
|
|
1681
|
+
<a:documentation>The identifier of a section, block or inlined element being referenced</a:documentation>
|
|
1682
|
+
<ref name="IdRefType"/>
|
|
1683
|
+
</attribute>
|
|
1684
|
+
<optional>
|
|
969
1685
|
<attribute name="type">
|
|
1686
|
+
<a:documentation>The type of Reference Element, prescribing how it is to be rendered</a:documentation>
|
|
970
1687
|
<ref name="ReferenceFormat"/>
|
|
971
1688
|
</attribute>
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
1689
|
+
</optional>
|
|
1690
|
+
<optional>
|
|
1691
|
+
<attribute name="alt">
|
|
1692
|
+
<a:documentation>Alternate text, used for accessibility</a:documentation>
|
|
1693
|
+
</attribute>
|
|
1694
|
+
</optional>
|
|
1695
|
+
</define>
|
|
1696
|
+
<define name="XrefBody">
|
|
1697
|
+
<a:documentation>The textual content of the element. The `text` is what we wish to show the link as (e.g., the "content" of `<xx>my link text</xx>`)</a:documentation>
|
|
1698
|
+
<optional>
|
|
1699
|
+
<element name="display-text">
|
|
1700
|
+
<oneOrMore>
|
|
1701
|
+
<ref name="PureTextElement"/>
|
|
1702
|
+
</oneOrMore>
|
|
1703
|
+
</element>
|
|
1704
|
+
</optional>
|
|
1705
|
+
</define>
|
|
1706
|
+
<define name="ErefBody">
|
|
1707
|
+
<optional>
|
|
1708
|
+
<element name="display-text">
|
|
1709
|
+
<oneOrMore>
|
|
1710
|
+
<ref name="PureTextElement">
|
|
1711
|
+
<a:documentation>The textual content of the element. The `text` is what we wish to show the link as (e.g., the "content" of `<xx>my link text</xx>`)</a:documentation>
|
|
1712
|
+
</ref>
|
|
1713
|
+
</oneOrMore>
|
|
1714
|
+
</element>
|
|
1715
|
+
</optional>
|
|
979
1716
|
</define>
|
|
980
1717
|
<define name="fn">
|
|
1718
|
+
<a:documentation>Inline reference to a paragraph or paragraphs, appearing as a footnote.
|
|
1719
|
+
The target of a footnote is the location it is embedded in within the text</a:documentation>
|
|
981
1720
|
<element name="fn">
|
|
982
|
-
<
|
|
983
|
-
<
|
|
984
|
-
<ref name="paragraph"/>
|
|
985
|
-
</oneOrMore>
|
|
1721
|
+
<ref name="FnAttributes"/>
|
|
1722
|
+
<ref name="FnBody"/>
|
|
986
1723
|
</element>
|
|
987
1724
|
</define>
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
1725
|
+
<define name="FnBody">
|
|
1726
|
+
<oneOrMore>
|
|
1727
|
+
<ref name="paragraph">
|
|
1728
|
+
<a:documentation>The content of the footnote</a:documentation>
|
|
1729
|
+
</ref>
|
|
1730
|
+
</oneOrMore>
|
|
1731
|
+
</define>
|
|
1732
|
+
<define name="FnAttributes">
|
|
1733
|
+
<attribute name="reference">
|
|
1734
|
+
<a:documentation>The number of the footnote, used to identify it visually</a:documentation>
|
|
1735
|
+
</attribute>
|
|
1736
|
+
</define>
|
|
995
1737
|
<define name="callout">
|
|
1738
|
+
<a:documentation>Inline reference to a paragraph or paragraphs, appearing as annotation of source code</a:documentation>
|
|
996
1739
|
<element name="callout">
|
|
997
1740
|
<attribute name="target">
|
|
998
|
-
<
|
|
1741
|
+
<a:documentation>The target of the callout is understood to be the location of the callout within the source code;
|
|
1742
|
+
the extent of the target is not expressed overtly</a:documentation>
|
|
1743
|
+
<ref name="IdRefType"/>
|
|
999
1744
|
</attribute>
|
|
1000
|
-
<text
|
|
1745
|
+
<text>
|
|
1746
|
+
<a:documentation>The label of the callout, used to identify its target within the source code</a:documentation>
|
|
1747
|
+
</text>
|
|
1001
1748
|
</element>
|
|
1002
1749
|
</define>
|
|
1003
|
-
<!--
|
|
1004
|
-
This is xref with fixed @type="callout"; the target by convention is in an annotation in the same source code snippet
|
|
1005
|
-
so <callout target="xyz">1</callout>
|
|
1006
|
-
corresponds to <xref type="callout" target="xyz">1</xref>
|
|
1007
|
-
-->
|
|
1008
1750
|
<define name="image">
|
|
1751
|
+
<a:documentation>Container for image content</a:documentation>
|
|
1009
1752
|
<element name="image">
|
|
1010
|
-
<ref name="
|
|
1753
|
+
<ref name="RequiredId"/>
|
|
1754
|
+
<ref name="ImageAttributes"/>
|
|
1011
1755
|
</element>
|
|
1012
1756
|
</define>
|
|
1013
|
-
<define name="
|
|
1014
|
-
<
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
<
|
|
1022
|
-
|
|
1023
|
-
</optional>
|
|
1757
|
+
<define name="image-no-id">
|
|
1758
|
+
<a:documentation>Container for image content: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
1759
|
+
<element name="image">
|
|
1760
|
+
<ref name="OptionalId"/>
|
|
1761
|
+
<ref name="ImageAttributes"/>
|
|
1762
|
+
</element>
|
|
1763
|
+
</define>
|
|
1764
|
+
<define name="ImageAttributes">
|
|
1765
|
+
<ref name="MediaAttributes"/>
|
|
1766
|
+
<ref name="MediaAccessibilityAttributes"/>
|
|
1024
1767
|
<optional>
|
|
1025
1768
|
<attribute name="width">
|
|
1769
|
+
<a:documentation>Height of image</a:documentation>
|
|
1026
1770
|
<ref name="ImageSize"/>
|
|
1027
1771
|
</attribute>
|
|
1028
1772
|
</optional>
|
|
1029
1773
|
<optional>
|
|
1030
1774
|
<attribute name="height">
|
|
1775
|
+
<a:documentation>Width of image</a:documentation>
|
|
1031
1776
|
<ref name="ImageSize"/>
|
|
1032
1777
|
</attribute>
|
|
1033
1778
|
</optional>
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
</
|
|
1037
|
-
<
|
|
1038
|
-
<attribute name="title"/>
|
|
1039
|
-
</optional>
|
|
1040
|
-
<optional>
|
|
1041
|
-
<attribute name="longdesc">
|
|
1042
|
-
<data type="anyURI"/>
|
|
1043
|
-
</attribute>
|
|
1044
|
-
</optional>
|
|
1779
|
+
</define>
|
|
1780
|
+
<define name="MIMEType">
|
|
1781
|
+
<a:documentation>MIME encoding of media type</a:documentation>
|
|
1782
|
+
<text/>
|
|
1045
1783
|
</define>
|
|
1046
1784
|
<define name="ImageSize">
|
|
1785
|
+
<a:documentation>Legal values for image height and width.
|
|
1786
|
+
Attributes are realised as a real number, with optional percent sign,
|
|
1787
|
+
or as the string "auto"</a:documentation>
|
|
1047
1788
|
<choice>
|
|
1048
1789
|
<data type="string">
|
|
1049
1790
|
<param name="pattern">\d+([.]\d+)?(%?)</param>
|
|
@@ -1052,177 +1793,328 @@
|
|
|
1052
1793
|
</choice>
|
|
1053
1794
|
</define>
|
|
1054
1795
|
<define name="video">
|
|
1796
|
+
<a:documentation>Container for video content</a:documentation>
|
|
1055
1797
|
<element name="video">
|
|
1056
|
-
<
|
|
1057
|
-
|
|
1798
|
+
<ref name="RequiredId"/>
|
|
1799
|
+
<ref name="VideoAttributes"/>
|
|
1800
|
+
<ref name="VideoBody"/>
|
|
1801
|
+
</element>
|
|
1802
|
+
</define>
|
|
1803
|
+
<define name="video-no-id">
|
|
1804
|
+
<a:documentation>Container for video content: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
1805
|
+
<element name="video">
|
|
1806
|
+
<ref name="OptionalId"/>
|
|
1807
|
+
<ref name="VideoAttributes"/>
|
|
1808
|
+
<ref name="VideoBody"/>
|
|
1809
|
+
</element>
|
|
1810
|
+
</define>
|
|
1811
|
+
<define name="VideoAttributes">
|
|
1812
|
+
<ref name="MediaAttributes"/>
|
|
1813
|
+
<ref name="MediaAccessibilityAttributes"/>
|
|
1814
|
+
<optional>
|
|
1815
|
+
<attribute name="width">
|
|
1816
|
+
<a:documentation>Width of video</a:documentation>
|
|
1817
|
+
<ref name="ImageSize"/>
|
|
1058
1818
|
</attribute>
|
|
1059
|
-
|
|
1060
|
-
|
|
1819
|
+
</optional>
|
|
1820
|
+
<optional>
|
|
1821
|
+
<attribute name="height">
|
|
1822
|
+
<a:documentation>Height of video</a:documentation>
|
|
1823
|
+
<ref name="ImageSize"/>
|
|
1061
1824
|
</attribute>
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
<
|
|
1067
|
-
<
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
<value>auto</value>
|
|
1071
|
-
</choice>
|
|
1072
|
-
</attribute>
|
|
1073
|
-
</optional>
|
|
1074
|
-
<optional>
|
|
1075
|
-
<attribute name="height">
|
|
1076
|
-
<choice>
|
|
1077
|
-
<data type="int"/>
|
|
1078
|
-
<value>auto</value>
|
|
1079
|
-
</choice>
|
|
1080
|
-
</attribute>
|
|
1081
|
-
</optional>
|
|
1082
|
-
<optional>
|
|
1083
|
-
<attribute name="alt"/>
|
|
1084
|
-
</optional>
|
|
1085
|
-
<optional>
|
|
1086
|
-
<attribute name="title"/>
|
|
1087
|
-
</optional>
|
|
1088
|
-
<optional>
|
|
1089
|
-
<attribute name="longdesc">
|
|
1090
|
-
<data type="anyURI"/>
|
|
1091
|
-
</attribute>
|
|
1092
|
-
</optional>
|
|
1093
|
-
<zeroOrMore>
|
|
1094
|
-
<ref name="altsource"/>
|
|
1095
|
-
</zeroOrMore>
|
|
1096
|
-
</element>
|
|
1825
|
+
</optional>
|
|
1826
|
+
</define>
|
|
1827
|
+
<define name="VideoBody">
|
|
1828
|
+
<zeroOrMore>
|
|
1829
|
+
<ref name="altsource">
|
|
1830
|
+
<a:documentation>Alternative files to use as media</a:documentation>
|
|
1831
|
+
</ref>
|
|
1832
|
+
</zeroOrMore>
|
|
1097
1833
|
</define>
|
|
1098
1834
|
<define name="audio">
|
|
1835
|
+
<a:documentation>Container for audio content</a:documentation>
|
|
1099
1836
|
<element name="audio">
|
|
1100
|
-
<
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
<
|
|
1111
|
-
<attribute name="alt"/>
|
|
1112
|
-
</optional>
|
|
1113
|
-
<optional>
|
|
1114
|
-
<attribute name="title"/>
|
|
1115
|
-
</optional>
|
|
1116
|
-
<optional>
|
|
1117
|
-
<attribute name="longdesc">
|
|
1118
|
-
<data type="anyURI"/>
|
|
1119
|
-
</attribute>
|
|
1120
|
-
</optional>
|
|
1121
|
-
<zeroOrMore>
|
|
1122
|
-
<ref name="altsource"/>
|
|
1123
|
-
</zeroOrMore>
|
|
1837
|
+
<ref name="RequiredId"/>
|
|
1838
|
+
<ref name="AudioAttributes"/>
|
|
1839
|
+
<ref name="AudioBody"/>
|
|
1840
|
+
</element>
|
|
1841
|
+
</define>
|
|
1842
|
+
<define name="audio-no-id">
|
|
1843
|
+
<a:documentation>Container for audio content: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
1844
|
+
<element name="audio">
|
|
1845
|
+
<ref name="OptionalId"/>
|
|
1846
|
+
<ref name="AudioAttributes"/>
|
|
1847
|
+
<ref name="AudioBody"/>
|
|
1124
1848
|
</element>
|
|
1125
1849
|
</define>
|
|
1850
|
+
<define name="AudioAttributes">
|
|
1851
|
+
<ref name="MediaAttributes"/>
|
|
1852
|
+
<ref name="MediaAccessibilityAttributes"/>
|
|
1853
|
+
</define>
|
|
1854
|
+
<define name="AudioBody">
|
|
1855
|
+
<zeroOrMore>
|
|
1856
|
+
<ref name="altsource">
|
|
1857
|
+
<a:documentation>Alternative files to use as media</a:documentation>
|
|
1858
|
+
</ref>
|
|
1859
|
+
</zeroOrMore>
|
|
1860
|
+
</define>
|
|
1126
1861
|
<define name="altsource">
|
|
1862
|
+
<a:documentation>Alternative file to use as media</a:documentation>
|
|
1127
1863
|
<element name="altsource">
|
|
1128
|
-
<
|
|
1864
|
+
<ref name="MediaAttributes"/>
|
|
1865
|
+
</element>
|
|
1866
|
+
</define>
|
|
1867
|
+
<define name="MediaAttributes">
|
|
1868
|
+
<attribute name="src">
|
|
1869
|
+
<a:documentation>URI of the media file</a:documentation>
|
|
1870
|
+
<data type="anyURI"/>
|
|
1871
|
+
</attribute>
|
|
1872
|
+
<attribute name="mimetype">
|
|
1873
|
+
<a:documentation>Type of the media file, in MIME</a:documentation>
|
|
1874
|
+
<ref name="MIMEType"/>
|
|
1875
|
+
</attribute>
|
|
1876
|
+
<optional>
|
|
1877
|
+
<attribute name="filename">
|
|
1878
|
+
<a:documentation>File name corresponding to the media, to which the media can be extracted if it is represented inline
|
|
1879
|
+
(e.g. in Base64 encoding in the URI)</a:documentation>
|
|
1880
|
+
</attribute>
|
|
1881
|
+
</optional>
|
|
1882
|
+
</define>
|
|
1883
|
+
<define name="MediaAccessibilityAttributes">
|
|
1884
|
+
<optional>
|
|
1885
|
+
<attribute name="alt">
|
|
1886
|
+
<a:documentation>Alternate text, supplied for accessibility</a:documentation>
|
|
1887
|
+
</attribute>
|
|
1888
|
+
</optional>
|
|
1889
|
+
<optional>
|
|
1890
|
+
<attribute name="title">
|
|
1891
|
+
<a:documentation>Title, supplied for accessibility</a:documentation>
|
|
1892
|
+
</attribute>
|
|
1893
|
+
</optional>
|
|
1894
|
+
<optional>
|
|
1895
|
+
<attribute name="longdesc">
|
|
1896
|
+
<a:documentation>URI pointing to more extensive alternate text description, supplied for accessibility</a:documentation>
|
|
1129
1897
|
<data type="anyURI"/>
|
|
1130
1898
|
</attribute>
|
|
1131
|
-
|
|
1132
|
-
<optional>
|
|
1133
|
-
<attribute name="filename"/>
|
|
1134
|
-
</optional>
|
|
1135
|
-
</element>
|
|
1899
|
+
</optional>
|
|
1136
1900
|
</define>
|
|
1137
1901
|
<define name="stem">
|
|
1902
|
+
<a:documentation>Mathematically formatted text</a:documentation>
|
|
1138
1903
|
<element name="stem">
|
|
1139
|
-
<
|
|
1140
|
-
<choice>
|
|
1141
|
-
<value>MathML</value>
|
|
1142
|
-
<value>AsciiMath</value>
|
|
1143
|
-
</choice>
|
|
1144
|
-
</attribute>
|
|
1904
|
+
<ref name="StemAttributes"/>
|
|
1145
1905
|
<oneOrMore>
|
|
1146
1906
|
<choice>
|
|
1907
|
+
<a:documentation>The content of the mathematically formatted text</a:documentation>
|
|
1147
1908
|
<text/>
|
|
1148
1909
|
<ref name="AnyElement"/>
|
|
1149
1910
|
</choice>
|
|
1150
1911
|
</oneOrMore>
|
|
1151
1912
|
</element>
|
|
1152
1913
|
</define>
|
|
1914
|
+
<define name="StemAttributes">
|
|
1915
|
+
<attribute name="type">
|
|
1916
|
+
<a:documentation>The notation used to mathematically format the text</a:documentation>
|
|
1917
|
+
<choice>
|
|
1918
|
+
<value>MathML</value>
|
|
1919
|
+
<value>AsciiMath</value>
|
|
1920
|
+
<value>LaTeX</value>
|
|
1921
|
+
</choice>
|
|
1922
|
+
</attribute>
|
|
1923
|
+
</define>
|
|
1153
1924
|
<define name="annotation">
|
|
1154
1925
|
<element name="annotation">
|
|
1155
|
-
<
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1926
|
+
<ref name="RequiredId"/>
|
|
1927
|
+
<oneOrMore>
|
|
1928
|
+
<ref name="paragraph"/>
|
|
1929
|
+
</oneOrMore>
|
|
1159
1930
|
</element>
|
|
1160
1931
|
</define>
|
|
1161
1932
|
<define name="ul">
|
|
1933
|
+
<a:documentation>Unordered list block</a:documentation>
|
|
1162
1934
|
<element name="ul">
|
|
1163
|
-
<
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1935
|
+
<ref name="RequiredId"/>
|
|
1936
|
+
<ref name="UlAttributes"/>
|
|
1937
|
+
<ref name="UlBody"/>
|
|
1938
|
+
</element>
|
|
1939
|
+
</define>
|
|
1940
|
+
<define name="ul-no-id">
|
|
1941
|
+
<a:documentation>Unordered list block: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
1942
|
+
<element name="ul">
|
|
1943
|
+
<ref name="OptionalId"/>
|
|
1944
|
+
<ref name="UlAttributes"/>
|
|
1945
|
+
<ref name="UlNoIdBody"/>
|
|
1172
1946
|
</element>
|
|
1173
1947
|
</define>
|
|
1948
|
+
<define name="UlAttributes">
|
|
1949
|
+
<empty/>
|
|
1950
|
+
</define>
|
|
1951
|
+
<define name="UlBody">
|
|
1952
|
+
<oneOrMore>
|
|
1953
|
+
<ref name="li">
|
|
1954
|
+
<a:documentation>List items</a:documentation>
|
|
1955
|
+
</ref>
|
|
1956
|
+
</oneOrMore>
|
|
1957
|
+
<zeroOrMore>
|
|
1958
|
+
<ref name="note">
|
|
1959
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
1960
|
+
</ref>
|
|
1961
|
+
</zeroOrMore>
|
|
1962
|
+
</define>
|
|
1963
|
+
<define name="UlNoIdBody">
|
|
1964
|
+
<oneOrMore>
|
|
1965
|
+
<ref name="li-no-id">
|
|
1966
|
+
<a:documentation>List items</a:documentation>
|
|
1967
|
+
</ref>
|
|
1968
|
+
</oneOrMore>
|
|
1969
|
+
<zeroOrMore>
|
|
1970
|
+
<ref name="note-no-id">
|
|
1971
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
1972
|
+
</ref>
|
|
1973
|
+
</zeroOrMore>
|
|
1974
|
+
</define>
|
|
1174
1975
|
<define name="li">
|
|
1976
|
+
<a:documentation>Item in a list block</a:documentation>
|
|
1175
1977
|
<element name="li">
|
|
1176
|
-
<
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1978
|
+
<ref name="OptionalId"/>
|
|
1979
|
+
<ref name="LiAttributes"/>
|
|
1980
|
+
<ref name="LiBody"/>
|
|
1981
|
+
</element>
|
|
1982
|
+
</define>
|
|
1983
|
+
<define name="li-no-id">
|
|
1984
|
+
<a:documentation>Item in a list block: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
1985
|
+
<element name="li">
|
|
1986
|
+
<ref name="OptionalId"/>
|
|
1987
|
+
<ref name="LiAttributes"/>
|
|
1988
|
+
<ref name="LiNoIdBody"/>
|
|
1184
1989
|
</element>
|
|
1185
1990
|
</define>
|
|
1991
|
+
<define name="LiAttributes">
|
|
1992
|
+
<empty/>
|
|
1993
|
+
</define>
|
|
1994
|
+
<define name="LiBody">
|
|
1995
|
+
<oneOrMore>
|
|
1996
|
+
<ref name="paragraph-with-footnote"/>
|
|
1997
|
+
</oneOrMore>
|
|
1998
|
+
</define>
|
|
1999
|
+
<define name="LiNoIdBody">
|
|
2000
|
+
<oneOrMore>
|
|
2001
|
+
<ref name="paragraph-with-footnote-no-id"/>
|
|
2002
|
+
</oneOrMore>
|
|
2003
|
+
</define>
|
|
1186
2004
|
<define name="ol">
|
|
2005
|
+
<a:documentation>Ordered list, with numbering applied to the list items</a:documentation>
|
|
1187
2006
|
<element name="ol">
|
|
1188
|
-
<
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
</attribute>
|
|
1200
|
-
<optional>
|
|
1201
|
-
<attribute name="start"/>
|
|
1202
|
-
</optional>
|
|
1203
|
-
<oneOrMore>
|
|
1204
|
-
<ref name="li"/>
|
|
1205
|
-
</oneOrMore>
|
|
1206
|
-
<zeroOrMore>
|
|
1207
|
-
<ref name="note"/>
|
|
1208
|
-
</zeroOrMore>
|
|
2007
|
+
<ref name="RequiredId"/>
|
|
2008
|
+
<ref name="OlAttributes"/>
|
|
2009
|
+
<ref name="OlBody"/>
|
|
2010
|
+
</element>
|
|
2011
|
+
</define>
|
|
2012
|
+
<define name="ol-no-id">
|
|
2013
|
+
<a:documentation>Ordered list: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
2014
|
+
<element name="ol">
|
|
2015
|
+
<ref name="OptionalId"/>
|
|
2016
|
+
<ref name="OlAttributes"/>
|
|
2017
|
+
<ref name="OlNoIdBody"/>
|
|
1209
2018
|
</element>
|
|
1210
2019
|
</define>
|
|
2020
|
+
<define name="OlAttributes">
|
|
2021
|
+
<attribute name="type">
|
|
2022
|
+
<a:documentation>Type of numbering to be applied to the list items</a:documentation>
|
|
2023
|
+
<choice>
|
|
2024
|
+
<value>roman</value>
|
|
2025
|
+
<value>alphabet</value>
|
|
2026
|
+
<value>arabic</value>
|
|
2027
|
+
<value>roman_upper</value>
|
|
2028
|
+
<value>alphabet_upper</value>
|
|
2029
|
+
</choice>
|
|
2030
|
+
</attribute>
|
|
2031
|
+
<optional>
|
|
2032
|
+
<attribute name="start">
|
|
2033
|
+
<a:documentation>Starting value for numbering of the list items; is a number, regardless of the type,
|
|
2034
|
+
and is mapped to the ordinal represented in the type</a:documentation>
|
|
2035
|
+
</attribute>
|
|
2036
|
+
</optional>
|
|
2037
|
+
</define>
|
|
2038
|
+
<define name="OlBody">
|
|
2039
|
+
<oneOrMore>
|
|
2040
|
+
<ref name="li">
|
|
2041
|
+
<a:documentation>List item</a:documentation>
|
|
2042
|
+
</ref>
|
|
2043
|
+
</oneOrMore>
|
|
2044
|
+
<zeroOrMore>
|
|
2045
|
+
<ref name="note">
|
|
2046
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
2047
|
+
</ref>
|
|
2048
|
+
</zeroOrMore>
|
|
2049
|
+
</define>
|
|
2050
|
+
<define name="OlNoIdBody">
|
|
2051
|
+
<oneOrMore>
|
|
2052
|
+
<ref name="li-no-id">
|
|
2053
|
+
<a:documentation>List item</a:documentation>
|
|
2054
|
+
</ref>
|
|
2055
|
+
</oneOrMore>
|
|
2056
|
+
<zeroOrMore>
|
|
2057
|
+
<ref name="note-no-id">
|
|
2058
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
2059
|
+
</ref>
|
|
2060
|
+
</zeroOrMore>
|
|
2061
|
+
</define>
|
|
1211
2062
|
<define name="dl">
|
|
2063
|
+
<a:documentation>Definition list, composed of definitions rather than list items</a:documentation>
|
|
1212
2064
|
<element name="dl">
|
|
1213
|
-
<
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
2065
|
+
<ref name="RequiredId"/>
|
|
2066
|
+
<ref name="DlAttributes"/>
|
|
2067
|
+
<ref name="DlBody"/>
|
|
2068
|
+
</element>
|
|
2069
|
+
</define>
|
|
2070
|
+
<define name="dl-no-id">
|
|
2071
|
+
<a:documentation>Definition list: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
2072
|
+
<element name="dl">
|
|
2073
|
+
<ref name="OptionalId"/>
|
|
2074
|
+
<ref name="DlNoIdBody"/>
|
|
1223
2075
|
</element>
|
|
1224
2076
|
</define>
|
|
2077
|
+
<define name="DlAttributes">
|
|
2078
|
+
<empty/>
|
|
2079
|
+
</define>
|
|
2080
|
+
<define name="DlBody">
|
|
2081
|
+
<oneOrMore>
|
|
2082
|
+
<group>
|
|
2083
|
+
<a:documentation>Entry-Definition pair used to constitute a definition list</a:documentation>
|
|
2084
|
+
<ref name="dt">
|
|
2085
|
+
<a:documentation>Entry being defined in the definition</a:documentation>
|
|
2086
|
+
</ref>
|
|
2087
|
+
<ref name="dd">
|
|
2088
|
+
<a:documentation>Definition of the entry</a:documentation>
|
|
2089
|
+
</ref>
|
|
2090
|
+
</group>
|
|
2091
|
+
</oneOrMore>
|
|
2092
|
+
<zeroOrMore>
|
|
2093
|
+
<ref name="note">
|
|
2094
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
2095
|
+
</ref>
|
|
2096
|
+
</zeroOrMore>
|
|
2097
|
+
</define>
|
|
2098
|
+
<define name="DlNoIdBody">
|
|
2099
|
+
<oneOrMore>
|
|
2100
|
+
<group>
|
|
2101
|
+
<a:documentation>Entry-Definition pair used to constitute a definition list</a:documentation>
|
|
2102
|
+
<ref name="dt">
|
|
2103
|
+
<a:documentation>Entry being defined in the definition</a:documentation>
|
|
2104
|
+
</ref>
|
|
2105
|
+
<ref name="dd-no-id">
|
|
2106
|
+
<a:documentation>Definition of the entry</a:documentation>
|
|
2107
|
+
</ref>
|
|
2108
|
+
</group>
|
|
2109
|
+
</oneOrMore>
|
|
2110
|
+
<zeroOrMore>
|
|
2111
|
+
<ref name="note-no-id">
|
|
2112
|
+
<a:documentation>Notes whose scope is the current block</a:documentation>
|
|
2113
|
+
</ref>
|
|
2114
|
+
</zeroOrMore>
|
|
2115
|
+
</define>
|
|
1225
2116
|
<define name="dt">
|
|
2117
|
+
<a:documentation>Entry in a definition list</a:documentation>
|
|
1226
2118
|
<element name="dt">
|
|
1227
2119
|
<zeroOrMore>
|
|
1228
2120
|
<ref name="TextElement"/>
|
|
@@ -1230,10 +2122,19 @@
|
|
|
1230
2122
|
</element>
|
|
1231
2123
|
</define>
|
|
1232
2124
|
<define name="dd">
|
|
2125
|
+
<a:documentation>Definition in a definition list</a:documentation>
|
|
1233
2126
|
<element name="dd">
|
|
1234
2127
|
<zeroOrMore>
|
|
1235
2128
|
<ref name="paragraph-with-footnote"/>
|
|
1236
2129
|
</zeroOrMore>
|
|
1237
2130
|
</element>
|
|
1238
2131
|
</define>
|
|
2132
|
+
<define name="dd-no-id">
|
|
2133
|
+
<a:documentation>Definition in a definition list: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
|
2134
|
+
<element name="dd">
|
|
2135
|
+
<zeroOrMore>
|
|
2136
|
+
<ref name="paragraph-with-footnote-no-id"/>
|
|
2137
|
+
</zeroOrMore>
|
|
2138
|
+
</element>
|
|
2139
|
+
</define>
|
|
1239
2140
|
</grammar>
|