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