metanorma-iec 1.3.12 → 1.3.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f456bfade78154eea4e64af8c86bcaa2f6f5b5392a19d931be4e1de386fb138
4
- data.tar.gz: fbbae56036a4c7179fc100775cc04a9ccc07d53c6b7826b91169c229001d8d3e
3
+ metadata.gz: b51046ee2b4e5d29d837265595d89d6f6601c73f15beaeba18625912619e5fdb
4
+ data.tar.gz: 619dd4dcbafc822109e7ff0c84027979aeb85f0abbce9c5a0e8aa1ad2c09e23d
5
5
  SHA512:
6
- metadata.gz: 62f2abd80f747ffbef1e4517e31bfbc1d926fc4dd9e0c883d4a8b57c8a35b3fc8d0f9d0b8e4a14f481ccc756b62cc379083a6b6570762cb3c7c37f6f50c8cf41
7
- data.tar.gz: 153770b971964def76a96541a9c81135b342caaff0330085df0acf8080a84701f9c6aad8f127efcd204bdd64914e0cb51ae4b77e7940ab9dd4a8b9b274315a64
6
+ metadata.gz: cc584b9bfcb447f04e734635663cd78352cf50ca68017c9680e9120519c53ec9ad64f439233ae6f808800a741412dfbd24c76831086808399b1716556bdd471d
7
+ data.tar.gz: bf17ef358d040747a3b43754533609c7cfe5e6aedf35bd397eb06a669e8b97de8ee8dd7b8d446b2694aef619dc48fe77b22eb45058200319c310d43982d36d2a
@@ -624,6 +624,9 @@
624
624
  <choice>
625
625
  <ref name="PureTextElement"/>
626
626
  <ref name="stem"/>
627
+ <ref name="eref"/>
628
+ <ref name="xref"/>
629
+ <ref name="hyperlink"/>
627
630
  </choice>
628
631
  </zeroOrMore>
629
632
  </element>
@@ -634,6 +637,9 @@
634
637
  <choice>
635
638
  <ref name="PureTextElement"/>
636
639
  <ref name="stem"/>
640
+ <ref name="eref"/>
641
+ <ref name="xref"/>
642
+ <ref name="hyperlink"/>
637
643
  </choice>
638
644
  </zeroOrMore>
639
645
  </element>
@@ -641,7 +647,12 @@
641
647
  <define name="tt">
642
648
  <element name="tt">
643
649
  <zeroOrMore>
644
- <ref name="PureTextElement"/>
650
+ <choice>
651
+ <ref name="PureTextElement"/>
652
+ <ref name="eref"/>
653
+ <ref name="xref"/>
654
+ <ref name="hyperlink"/>
655
+ </choice>
645
656
  </zeroOrMore>
646
657
  </element>
647
658
  </define>
@@ -822,7 +833,9 @@
822
833
  <attribute name="alt"/>
823
834
  </optional>
824
835
  <ref name="CitationType"/>
825
- <text/>
836
+ <oneOrMore>
837
+ <ref name="PureTextElement"/>
838
+ </oneOrMore>
826
839
  </define>
827
840
  <define name="hyperlink">
828
841
  <element name="link">
@@ -835,7 +848,9 @@
835
848
  <optional>
836
849
  <attribute name="alt"/>
837
850
  </optional>
838
- <text/>
851
+ <oneOrMore>
852
+ <ref name="PureTextElement"/>
853
+ </oneOrMore>
839
854
  </element>
840
855
  </define>
841
856
  <define name="xref">
@@ -849,7 +864,9 @@
849
864
  <optional>
850
865
  <attribute name="alt"/>
851
866
  </optional>
852
- <text/>
867
+ <oneOrMore>
868
+ <ref name="PureTextElement"/>
869
+ </oneOrMore>
853
870
  </element>
854
871
  </define>
855
872
  <define name="fn">
@@ -205,10 +205,6 @@ module Asciidoctor
205
205
  a = node.attr("function") and xml.function a
206
206
  end
207
207
 
208
- def relaton_relations
209
- super + %w(obsoletes)
210
- end
211
-
212
208
  def metadata_ext(node, xml)
213
209
  super
214
210
  a = node.attr("accessibility-color-inside") and
@@ -62,7 +62,9 @@
62
62
  <data type="boolean"/>
63
63
  </attribute>
64
64
  </optional>
65
- <text/>
65
+ <oneOrMore>
66
+ <ref name="PureTextElement"/>
67
+ </oneOrMore>
66
68
  </element>
67
69
  </define>
68
70
  <define name="xref">
@@ -100,7 +102,9 @@
100
102
  <data type="boolean"/>
101
103
  </attribute>
102
104
  </optional>
103
- <text/>
105
+ <oneOrMore>
106
+ <ref name="PureTextElement"/>
107
+ </oneOrMore>
104
108
  </element>
105
109
  </define>
106
110
  <define name="erefType">
@@ -130,7 +134,9 @@
130
134
  </attribute>
131
135
  </optional>
132
136
  <ref name="CitationType"/>
133
- <text/>
137
+ <oneOrMore>
138
+ <ref name="PureTextElement"/>
139
+ </oneOrMore>
134
140
  </define>
135
141
  <define name="ul">
136
142
  <element name="ul">
@@ -147,6 +153,14 @@
147
153
  <data type="boolean"/>
148
154
  </attribute>
149
155
  </optional>
156
+ <optional>
157
+ <attribute name="tag"/>
158
+ </optional>
159
+ <optional>
160
+ <attribute name="multilingual-rendering">
161
+ <ref name="MultilingualRenderingType"/>
162
+ </attribute>
163
+ </optional>
150
164
  <oneOrMore>
151
165
  <ref name="ul_li"/>
152
166
  </oneOrMore>
@@ -170,6 +184,14 @@
170
184
  <data type="boolean"/>
171
185
  </attribute>
172
186
  </optional>
187
+ <optional>
188
+ <attribute name="tag"/>
189
+ </optional>
190
+ <optional>
191
+ <attribute name="multilingual-rendering">
192
+ <ref name="MultilingualRenderingType"/>
193
+ </attribute>
194
+ </optional>
173
195
  <optional>
174
196
  <attribute name="type">
175
197
  <choice>
@@ -209,6 +231,14 @@
209
231
  <data type="boolean"/>
210
232
  </attribute>
211
233
  </optional>
234
+ <optional>
235
+ <attribute name="tag"/>
236
+ </optional>
237
+ <optional>
238
+ <attribute name="multilingual-rendering">
239
+ <ref name="MultilingualRenderingType"/>
240
+ </attribute>
241
+ </optional>
212
242
  <oneOrMore>
213
243
  <ref name="dt"/>
214
244
  <ref name="dd"/>
@@ -256,6 +286,14 @@
256
286
  <data type="boolean"/>
257
287
  </attribute>
258
288
  </optional>
289
+ <optional>
290
+ <attribute name="tag"/>
291
+ </optional>
292
+ <optional>
293
+ <attribute name="multilingual-rendering">
294
+ <ref name="MultilingualRenderingType"/>
295
+ </attribute>
296
+ </optional>
259
297
  <optional>
260
298
  <ref name="tname"/>
261
299
  </optional>
@@ -316,6 +354,14 @@
316
354
  <optional>
317
355
  <attribute name="width"/>
318
356
  </optional>
357
+ <optional>
358
+ <attribute name="tag"/>
359
+ </optional>
360
+ <optional>
361
+ <attribute name="multilingual-rendering">
362
+ <ref name="MultilingualRenderingType"/>
363
+ </attribute>
364
+ </optional>
319
365
  <optional>
320
366
  <ref name="colgroup"/>
321
367
  </optional>
@@ -366,6 +412,14 @@
366
412
  <optional>
367
413
  <attribute name="class"/>
368
414
  </optional>
415
+ <optional>
416
+ <attribute name="tag"/>
417
+ </optional>
418
+ <optional>
419
+ <attribute name="multilingual-rendering">
420
+ <ref name="MultilingualRenderingType"/>
421
+ </attribute>
422
+ </optional>
369
423
  <optional>
370
424
  <ref name="source"/>
371
425
  </optional>
@@ -424,6 +478,14 @@
424
478
  <optional>
425
479
  <attribute name="lang"/>
426
480
  </optional>
481
+ <optional>
482
+ <attribute name="tag"/>
483
+ </optional>
484
+ <optional>
485
+ <attribute name="multilingual-rendering">
486
+ <ref name="MultilingualRenderingType"/>
487
+ </attribute>
488
+ </optional>
427
489
  <optional>
428
490
  <ref name="tname"/>
429
491
  </optional>
@@ -472,6 +534,14 @@
472
534
  <data type="boolean"/>
473
535
  </attribute>
474
536
  </optional>
537
+ <optional>
538
+ <attribute name="tag"/>
539
+ </optional>
540
+ <optional>
541
+ <attribute name="multilingual-rendering">
542
+ <ref name="MultilingualRenderingType"/>
543
+ </attribute>
544
+ </optional>
475
545
  <ref name="stem"/>
476
546
  <optional>
477
547
  <ref name="dl"/>
@@ -500,6 +570,14 @@
500
570
  <data type="boolean"/>
501
571
  </attribute>
502
572
  </optional>
573
+ <optional>
574
+ <attribute name="tag"/>
575
+ </optional>
576
+ <optional>
577
+ <attribute name="multilingual-rendering">
578
+ <ref name="MultilingualRenderingType"/>
579
+ </attribute>
580
+ </optional>
503
581
  <zeroOrMore>
504
582
  <ref name="TextElement"/>
505
583
  </zeroOrMore>
@@ -527,6 +605,14 @@
527
605
  <data type="boolean"/>
528
606
  </attribute>
529
607
  </optional>
608
+ <optional>
609
+ <attribute name="tag"/>
610
+ </optional>
611
+ <optional>
612
+ <attribute name="multilingual-rendering">
613
+ <ref name="MultilingualRenderingType"/>
614
+ </attribute>
615
+ </optional>
530
616
  <zeroOrMore>
531
617
  <choice>
532
618
  <ref name="TextElement"/>
@@ -558,6 +644,14 @@
558
644
  <data type="boolean"/>
559
645
  </attribute>
560
646
  </optional>
647
+ <optional>
648
+ <attribute name="tag"/>
649
+ </optional>
650
+ <optional>
651
+ <attribute name="multilingual-rendering">
652
+ <ref name="MultilingualRenderingType"/>
653
+ </attribute>
654
+ </optional>
561
655
  <optional>
562
656
  <ref name="quote-source"/>
563
657
  </optional>
@@ -624,9 +718,6 @@
624
718
  <zeroOrMore>
625
719
  <ref name="BasicBlock"/>
626
720
  </zeroOrMore>
627
- <zeroOrMore>
628
- <ref name="note"/>
629
- </zeroOrMore>
630
721
  <zeroOrMore>
631
722
  <ref name="bibitem"/>
632
723
  <zeroOrMore>
@@ -667,6 +758,14 @@
667
758
  <optional>
668
759
  <attribute name="type"/>
669
760
  </optional>
761
+ <optional>
762
+ <attribute name="tag"/>
763
+ </optional>
764
+ <optional>
765
+ <attribute name="multilingual-rendering">
766
+ <ref name="MultilingualRenderingType"/>
767
+ </attribute>
768
+ </optional>
670
769
  <oneOrMore>
671
770
  <choice>
672
771
  <ref name="paragraph"/>
@@ -703,14 +802,9 @@
703
802
  <optional>
704
803
  <ref name="section-title"/>
705
804
  </optional>
706
- <group>
707
- <oneOrMore>
708
- <ref name="BasicBlock"/>
709
- </oneOrMore>
710
- <zeroOrMore>
711
- <ref name="note"/>
712
- </zeroOrMore>
713
- </group>
805
+ <oneOrMore>
806
+ <ref name="BasicBlock"/>
807
+ </oneOrMore>
714
808
  </define>
715
809
  <define name="li">
716
810
  <element name="li">
@@ -845,6 +939,9 @@
845
939
  <ref name="PureTextElement"/>
846
940
  <ref name="stem"/>
847
941
  <ref name="index"/>
942
+ <ref name="eref"/>
943
+ <ref name="xref"/>
944
+ <ref name="hyperlink"/>
848
945
  </choice>
849
946
  </zeroOrMore>
850
947
  </element>
@@ -856,6 +953,9 @@
856
953
  <ref name="PureTextElement"/>
857
954
  <ref name="stem"/>
858
955
  <ref name="index"/>
956
+ <ref name="eref"/>
957
+ <ref name="xref"/>
958
+ <ref name="hyperlink"/>
859
959
  </choice>
860
960
  </zeroOrMore>
861
961
  </element>
@@ -866,6 +966,9 @@
866
966
  <choice>
867
967
  <ref name="PureTextElement"/>
868
968
  <ref name="index"/>
969
+ <ref name="eref"/>
970
+ <ref name="xref"/>
971
+ <ref name="hyperlink"/>
869
972
  </choice>
870
973
  </zeroOrMore>
871
974
  </element>
@@ -924,6 +1027,14 @@
924
1027
  </define>
925
1028
  </include>
926
1029
  <!-- end overrides -->
1030
+ <define name="MultilingualRenderingType">
1031
+ <choice>
1032
+ <value>common</value>
1033
+ <value>all-columns</value>
1034
+ <value>parallel</value>
1035
+ <value>tag</value>
1036
+ </choice>
1037
+ </define>
927
1038
  <define name="docsubtype">
928
1039
  <element name="subdoctype">
929
1040
  <ref name="DocumentSubtype"/>
@@ -1062,6 +1173,14 @@
1062
1173
  <optional>
1063
1174
  <attribute name="class"/>
1064
1175
  </optional>
1176
+ <optional>
1177
+ <attribute name="tag"/>
1178
+ </optional>
1179
+ <optional>
1180
+ <attribute name="multilingual-rendering">
1181
+ <ref name="MultilingualRenderingType"/>
1182
+ </attribute>
1183
+ </optional>
1065
1184
  <zeroOrMore>
1066
1185
  <choice>
1067
1186
  <ref name="TextElement"/>
@@ -1261,9 +1380,6 @@
1261
1380
  <zeroOrMore>
1262
1381
  <ref name="BasicBlock"/>
1263
1382
  </zeroOrMore>
1264
- <zeroOrMore>
1265
- <ref name="note"/>
1266
- </zeroOrMore>
1267
1383
  <choice>
1268
1384
  <oneOrMore>
1269
1385
  <ref name="reference-clause"/>
@@ -1446,9 +1562,6 @@
1446
1562
  <zeroOrMore>
1447
1563
  <ref name="BasicBlock"/>
1448
1564
  </zeroOrMore>
1449
- <zeroOrMore>
1450
- <ref name="note"/>
1451
- </zeroOrMore>
1452
1565
  <ref name="dl"/>
1453
1566
  </oneOrMore>
1454
1567
  </element>
@@ -1508,14 +1621,9 @@
1508
1621
  <ref name="section-title"/>
1509
1622
  </optional>
1510
1623
  <group>
1511
- <group>
1512
- <zeroOrMore>
1513
- <ref name="BasicBlock"/>
1514
- </zeroOrMore>
1515
- <zeroOrMore>
1516
- <ref name="note"/>
1517
- </zeroOrMore>
1518
- </group>
1624
+ <zeroOrMore>
1625
+ <ref name="BasicBlock"/>
1626
+ </zeroOrMore>
1519
1627
  <zeroOrMore>
1520
1628
  <ref name="content-subsection"/>
1521
1629
  </zeroOrMore>
@@ -1562,14 +1670,9 @@
1562
1670
  </optional>
1563
1671
  <choice>
1564
1672
  <choice>
1565
- <group>
1566
- <oneOrMore>
1567
- <ref name="BasicBlock"/>
1568
- </oneOrMore>
1569
- <zeroOrMore>
1570
- <ref name="note"/>
1571
- </zeroOrMore>
1572
- </group>
1673
+ <oneOrMore>
1674
+ <ref name="BasicBlock"/>
1675
+ </oneOrMore>
1573
1676
  <ref name="amend"/>
1574
1677
  </choice>
1575
1678
  <oneOrMore>
@@ -1610,14 +1713,9 @@
1610
1713
  <ref name="section-title"/>
1611
1714
  </optional>
1612
1715
  <group>
1613
- <group>
1614
- <zeroOrMore>
1615
- <ref name="BasicBlock"/>
1616
- </zeroOrMore>
1617
- <zeroOrMore>
1618
- <ref name="note"/>
1619
- </zeroOrMore>
1620
- </group>
1716
+ <zeroOrMore>
1717
+ <ref name="BasicBlock"/>
1718
+ </zeroOrMore>
1621
1719
  <zeroOrMore>
1622
1720
  <choice>
1623
1721
  <ref name="annex-subsection"/>
@@ -1676,9 +1774,6 @@
1676
1774
  <zeroOrMore>
1677
1775
  <ref name="BasicBlock"/>
1678
1776
  </zeroOrMore>
1679
- <zeroOrMore>
1680
- <ref name="note"/>
1681
- </zeroOrMore>
1682
1777
  <choice>
1683
1778
  <oneOrMore>
1684
1779
  <ref name="term"/>
@@ -1824,6 +1919,14 @@
1824
1919
  <data type="boolean"/>
1825
1920
  </attribute>
1826
1921
  </optional>
1922
+ <optional>
1923
+ <attribute name="tag"/>
1924
+ </optional>
1925
+ <optional>
1926
+ <attribute name="multilingual-rendering">
1927
+ <ref name="MultilingualRenderingType"/>
1928
+ </attribute>
1929
+ </optional>
1827
1930
  <oneOrMore>
1828
1931
  <choice>
1829
1932
  <ref name="paragraph"/>
@@ -1840,6 +1943,24 @@
1840
1943
  <attribute name="id">
1841
1944
  <data type="ID"/>
1842
1945
  </attribute>
1946
+ <optional>
1947
+ <attribute name="keep-with-next">
1948
+ <data type="boolean"/>
1949
+ </attribute>
1950
+ </optional>
1951
+ <optional>
1952
+ <attribute name="keep-lines-together">
1953
+ <data type="boolean"/>
1954
+ </attribute>
1955
+ </optional>
1956
+ <optional>
1957
+ <attribute name="tag"/>
1958
+ </optional>
1959
+ <optional>
1960
+ <attribute name="multilingual-rendering">
1961
+ <ref name="MultilingualRenderingType"/>
1962
+ </attribute>
1963
+ </optional>
1843
1964
  <ref name="paragraph"/>
1844
1965
  </element>
1845
1966
  </define>
@@ -1966,9 +2087,6 @@
1966
2087
  <zeroOrMore>
1967
2088
  <ref name="BasicBlock"/>
1968
2089
  </zeroOrMore>
1969
- <zeroOrMore>
1970
- <ref name="note"/>
1971
- </zeroOrMore>
1972
2090
  <zeroOrMore>
1973
2091
  <choice>
1974
2092
  <ref name="term-clause"/>
@@ -2007,6 +2125,14 @@
2007
2125
  <optional>
2008
2126
  <attribute name="title"/>
2009
2127
  </optional>
2128
+ <optional>
2129
+ <attribute name="tag"/>
2130
+ </optional>
2131
+ <optional>
2132
+ <attribute name="multilingual-rendering">
2133
+ <ref name="MultilingualRenderingType"/>
2134
+ </attribute>
2135
+ </optional>
2010
2136
  <optional>
2011
2137
  <element name="location">
2012
2138
  <zeroOrMore>
@@ -2066,6 +2192,14 @@
2066
2192
  </define>
2067
2193
  <define name="imagemap">
2068
2194
  <element name="imagemap">
2195
+ <optional>
2196
+ <attribute name="tag"/>
2197
+ </optional>
2198
+ <optional>
2199
+ <attribute name="multilingual-rendering">
2200
+ <ref name="MultilingualRenderingType"/>
2201
+ </attribute>
2202
+ </optional>
2069
2203
  <ref name="figure"/>
2070
2204
  <zeroOrMore>
2071
2205
  <element name="area">
@@ -2110,6 +2244,14 @@
2110
2244
  </define>
2111
2245
  <define name="svgmap">
2112
2246
  <element name="svgmap">
2247
+ <optional>
2248
+ <attribute name="tag"/>
2249
+ </optional>
2250
+ <optional>
2251
+ <attribute name="multilingual-rendering">
2252
+ <ref name="MultilingualRenderingType"/>
2253
+ </attribute>
2254
+ </optional>
2113
2255
  <ref name="figure"/>
2114
2256
  <zeroOrMore>
2115
2257
  <element name="target">
@@ -142,14 +142,9 @@
142
142
  </optional>
143
143
  <choice>
144
144
  <choice>
145
- <group>
146
- <oneOrMore>
147
- <ref name="BasicBlock"/>
148
- </oneOrMore>
149
- <zeroOrMore>
150
- <ref name="note"/>
151
- </zeroOrMore>
152
- </group>
145
+ <oneOrMore>
146
+ <ref name="BasicBlock"/>
147
+ </oneOrMore>
153
148
  <ref name="amend"/>
154
149
  </choice>
155
150
  <oneOrMore>
@@ -225,9 +220,6 @@
225
220
  -->
226
221
  <ref name="BasicBlock"/>
227
222
  </zeroOrMore>
228
- <zeroOrMore>
229
- <ref name="note"/>
230
- </zeroOrMore>
231
223
  <zeroOrMore>
232
224
  <ref name="clause-hanging-paragraph-with-footnote"/>
233
225
  </zeroOrMore>
@@ -351,14 +343,9 @@
351
343
  <ref name="section-title"/>
352
344
  </optional>
353
345
  <choice>
354
- <group>
355
- <zeroOrMore>
356
- <ref name="BasicBlock"/>
357
- </zeroOrMore>
358
- <zeroOrMore>
359
- <ref name="note"/>
360
- </zeroOrMore>
361
- </group>
346
+ <zeroOrMore>
347
+ <ref name="BasicBlock"/>
348
+ </zeroOrMore>
362
349
  <oneOrMore>
363
350
  <ref name="content-subsection"/>
364
351
  </oneOrMore>
@@ -475,9 +462,6 @@
475
462
  <!-- allow hanging paragraphs in annexes: they introduce lists -->
476
463
  <ref name="BasicBlock"/>
477
464
  </zeroOrMore>
478
- <zeroOrMore>
479
- <ref name="note"/>
480
- </zeroOrMore>
481
465
  <zeroOrMore>
482
466
  <ref name="clause-hanging-paragraph-with-footnote"/>
483
467
  </zeroOrMore>
@@ -58,6 +58,14 @@
58
58
  <optional>
59
59
  <attribute name="type"/>
60
60
  </optional>
61
+ <optional>
62
+ <attribute name="tag"/>
63
+ </optional>
64
+ <optional>
65
+ <attribute name="multilingual-rendering">
66
+ <ref name="MultilingualRenderingType"/>
67
+ </attribute>
68
+ </optional>
61
69
  <optional>
62
70
  <ref name="reqtitle"/>
63
71
  </optional>
@@ -101,7 +109,9 @@
101
109
  </define>
102
110
  <define name="label">
103
111
  <element name="label">
104
- <text/>
112
+ <oneOrMore>
113
+ <ref name="TextElement"/>
114
+ </oneOrMore>
105
115
  </element>
106
116
  </define>
107
117
  <define name="subject">
@@ -175,8 +185,19 @@
175
185
  <data type="boolean"/>
176
186
  </attribute>
177
187
  </optional>
188
+ <optional>
189
+ <attribute name="tag"/>
190
+ </optional>
191
+ <optional>
192
+ <attribute name="multilingual-rendering">
193
+ <ref name="MultilingualRenderingType"/>
194
+ </attribute>
195
+ </optional>
178
196
  <oneOrMore>
179
- <ref name="BasicBlock"/>
197
+ <choice>
198
+ <ref name="BasicBlock"/>
199
+ <ref name="component"/>
200
+ </choice>
180
201
  </oneOrMore>
181
202
  </define>
182
203
  <define name="ObligationType">
@@ -1,6 +1,7 @@
1
1
  /* IEC: CODE */
2
2
  p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode {
3
3
  mso-style-unhide: no;
4
+ mso-style-name: "CODE";
4
5
  mso-style-unhide: no;
5
6
  margin-top: 5.0pt;
6
7
  margin-right: 0cm;
@@ -191,6 +192,7 @@ p.TableTitle {
191
192
  /* IEC: NOTE */
192
193
  p.Note, div.Note, li.Note {
193
194
  mso-style-unhide: no;
195
+ mso-style-name: "NOTE";
194
196
  mso-style-qformat: yes;
195
197
  mso-style-next: Normal;
196
198
  margin-top: 5.0pt;
@@ -304,7 +306,7 @@ p.TitlePageSubhead, li.TitlePageSubhead, div.TitlePageSubhead {
304
306
 
305
307
  /* IEC: TERM */
306
308
  p.Terms, li.Terms, div.Terms {
307
- mso-style-name: "Term\(s\)";
309
+ mso-style-name: "TERM";
308
310
  mso-style-unhide: no;
309
311
  mso-style-qformat: yes;
310
312
  mso-style-next: TERM-definition;
@@ -494,7 +496,7 @@ p.TABLE-col-heading, li.TABLE-col-heading, div.TABLE-col-heading {
494
496
  mso-style-name: TABLE-col-heading;
495
497
  mso-style-unhide: no;
496
498
  mso-style-qformat: yes;
497
- mso-style-parent: PARAGRAPH;
499
+ mso-style-parent: Normal;
498
500
  margin-top: 3.0pt;
499
501
  margin-right: 0cm;
500
502
  margin-bottom: 3.0pt;
@@ -515,7 +517,7 @@ p.TABLE-cell, li.TABLE-cell, div.TABLE-cell {
515
517
  mso-style-name: TABLE-cell;
516
518
  mso-style-unhide: no;
517
519
  mso-style-qformat: yes;
518
- mso-style-parent: PARAGRAPH;
520
+ mso-style-parent: Normal;
519
521
  margin-top: 3.0pt;
520
522
  margin-right: 0cm;
521
523
  margin-bottom: 3.0pt;
@@ -1,6 +1,7 @@
1
1
  /* IEC: CODE */
2
2
  p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode
3
3
  {mso-style-unhide:no;
4
+ mso-style-name:"CODE";
4
5
  mso-style-unhide:no;
5
6
  margin-top:5.0pt;
6
7
  margin-right:0cm;
@@ -182,6 +183,7 @@ p.TableTitle
182
183
  /* IEC: NOTE */
183
184
  p.Note, div.Note, li.Note
184
185
  {mso-style-unhide:no;
186
+ mso-style-name:"NOTE";
185
187
  mso-style-qformat:yes;
186
188
  mso-style-next:Normal;
187
189
  margin-top:5.0pt;
@@ -293,7 +295,7 @@ p.TitlePageSubhead, li.TitlePageSubhead, div.TitlePageSubhead {
293
295
  }
294
296
  /* IEC: TERM */
295
297
  p.Terms, li.Terms, div.Terms
296
- {mso-style-name:"Term\(s\)";
298
+ {mso-style-name:"TERM";
297
299
  mso-style-unhide:no;
298
300
  mso-style-qformat:yes;
299
301
  mso-style-next:TERM-definition;
@@ -473,7 +475,7 @@ p.TABLE-col-heading, li.TABLE-col-heading, div.TABLE-col-heading
473
475
  {mso-style-name:TABLE-col-heading;
474
476
  mso-style-unhide:no;
475
477
  mso-style-qformat:yes;
476
- mso-style-parent:PARAGRAPH;
478
+ mso-style-parent:Normal;
477
479
  margin-top:3.0pt;
478
480
  margin-right:0cm;
479
481
  margin-bottom:3.0pt;
@@ -493,7 +495,7 @@ p.TABLE-cell, li.TABLE-cell, div.TABLE-cell
493
495
  {mso-style-name:TABLE-cell;
494
496
  mso-style-unhide:no;
495
497
  mso-style-qformat:yes;
496
- mso-style-parent:PARAGRAPH;
498
+ mso-style-parent:Normal;
497
499
  margin-top:3.0pt;
498
500
  margin-right:0cm;
499
501
  margin-bottom:3.0pt;
@@ -210,6 +210,7 @@ div.figure, p.figure {
210
210
  h1.main {
211
211
  mso-style-unhide: no;
212
212
  mso-style-qformat: yes;
213
+ mso-style-name: "Heading 1";
213
214
  mso-style-parent: Normal;
214
215
  mso-style-next: Normal;
215
216
  margin-top: {{normalfontsize}};
@@ -268,6 +269,7 @@ h1
268
269
  mso-style-unhide: no;
269
270
  mso-style-qformat: yes;
270
271
  mso-style-parent: "Heading 1";
272
+ mso-style-name: "Heading 2";
271
273
  mso-style-next: Normal;
272
274
  margin-top: 5.0pt;
273
275
  margin-right: 0cm;
@@ -294,6 +296,7 @@ h2 {
294
296
  .h3Annex, h3 {
295
297
  mso-style-unhide: no;
296
298
  mso-style-qformat: yes;
299
+ mso-style-name: "Heading 3";
297
300
  mso-style-parent: "Heading 2";
298
301
  mso-style-next: Normal;
299
302
  margin-top: 5.0pt;
@@ -321,6 +324,7 @@ h3 {
321
324
  .h4Annex, h4 {
322
325
  mso-style-unhide: no;
323
326
  mso-style-qformat: yes;
327
+ mso-style-name: "Heading 4";
324
328
  mso-style-parent: "Heading 3";
325
329
  mso-style-next: Normal;
326
330
  margin-top: 5.0pt;
@@ -348,6 +352,7 @@ h4 {
348
352
  .h5Annex, h5 {
349
353
  mso-style-unhide: no;
350
354
  mso-style-qformat: yes;
355
+ mso-style-name: "Heading 5";
351
356
  mso-style-parent: "Heading 4";
352
357
  mso-style-next: Normal;
353
358
  margin-top: 5.0pt;
@@ -375,6 +380,7 @@ h5 {
375
380
  h6 {
376
381
  mso-style-unhide: no;
377
382
  mso-style-qformat: yes;
383
+ mso-style-name: "Heading 6";
378
384
  mso-style-parent: "Heading 5";
379
385
  mso-style-next: Normal;
380
386
  margin-top: 5.0pt;
@@ -402,6 +408,7 @@ h6 {
402
408
  p.MsoHeading7, li.MsoHeading7, div.MsoHeading7 {
403
409
  mso-style-unhide: no;
404
410
  mso-style-qformat: yes;
411
+ mso-style-name: "Heading 7";
405
412
  mso-style-parent: "Heading 6";
406
413
  mso-style-next: Normal;
407
414
  margin-top: 5.0pt;
@@ -430,6 +437,7 @@ p.MsoHeading7 {
430
437
  p.MsoHeading8, li.MsoHeading8, div.MsoHeading8 {
431
438
  mso-style-unhide: no;
432
439
  mso-style-qformat: yes;
440
+ mso-style-name: "Heading 8";
433
441
  mso-style-parent: "Heading 7";
434
442
  mso-style-next: Normal;
435
443
  margin-top: 5.0pt;
@@ -458,6 +466,7 @@ p.MsoHeading8 {
458
466
  p.MsoHeading9, li.MsoHeading9, div.MsoHeading9 {
459
467
  mso-style-unhide: no;
460
468
  mso-style-qformat: yes;
469
+ mso-style-name: "Heading 9";
461
470
  mso-style-parent: "Heading 8";
462
471
  mso-style-next: Normal;
463
472
  margin-top: 5.0pt;
@@ -486,6 +495,7 @@ p.MsoHeading9 {
486
495
  p.MsoToc1, li.MsoToc1, div.MsoToc1 {
487
496
  mso-style-priority: 39;
488
497
  mso-style-unhide: no;
498
+ mso-style-name: "TOC 1";
489
499
  margin-top: 0cm;
490
500
  margin-right: 34.0pt;
491
501
  margin-bottom: 5.0pt;
@@ -507,6 +517,7 @@ p.MsoToc1, li.MsoToc1, div.MsoToc1 {
507
517
  p.MsoToc2, li.MsoToc2, div.MsoToc2 {
508
518
  mso-style-priority: 39;
509
519
  mso-style-unhide: no;
520
+ mso-style-name: "TOC 2";
510
521
  mso-style-parent: "TOC 1";
511
522
  margin-top: 0cm;
512
523
  margin-right: 34.0pt;
@@ -529,6 +540,7 @@ p.MsoToc2, li.MsoToc2, div.MsoToc2 {
529
540
  p.MsoToc3, li.MsoToc3, div.MsoToc3 {
530
541
  mso-style-priority: 39;
531
542
  mso-style-unhide: no;
543
+ mso-style-name: "TOC 3";
532
544
  mso-style-parent: "TOC 2";
533
545
  margin-top: 0cm;
534
546
  margin-right: 34.0pt;
@@ -551,6 +563,7 @@ p.MsoToc3, li.MsoToc3, div.MsoToc3 {
551
563
  p.MsoToc4, li.MsoToc4, div.MsoToc4 {
552
564
  mso-style-noshow: yes;
553
565
  mso-style-unhide: no;
566
+ mso-style-name: "TOC 4";
554
567
  mso-style-parent: "TOC 3";
555
568
  margin-top: 0cm;
556
569
  margin-right: 34.0pt;
@@ -573,6 +586,7 @@ p.MsoToc4, li.MsoToc4, div.MsoToc4 {
573
586
  p.MsoToc5, li.MsoToc5, div.MsoToc5 {
574
587
  mso-style-noshow: yes;
575
588
  mso-style-unhide: no;
589
+ mso-style-name: "TOC 5";
576
590
  mso-style-parent: "TOC 4";
577
591
  margin-top: 0cm;
578
592
  margin-right: 34.0pt;
@@ -595,6 +609,7 @@ p.MsoToc5, li.MsoToc5, div.MsoToc5 {
595
609
  p.MsoToc6, li.MsoToc6, div.MsoToc6 {
596
610
  mso-style-noshow: yes;
597
611
  mso-style-unhide: no;
612
+ mso-style-name: "TOC 6";
598
613
  mso-style-parent: "TOC 5";
599
614
  margin-top: 0cm;
600
615
  margin-right: 34.0pt;
@@ -617,6 +632,7 @@ p.MsoToc6, li.MsoToc6, div.MsoToc6 {
617
632
  p.MsoToc7, li.MsoToc7, div.MsoToc7 {
618
633
  mso-style-noshow: yes;
619
634
  mso-style-unhide: no;
635
+ mso-style-name: "TOC 7";
620
636
  mso-style-parent: "TOC 6";
621
637
  margin-top: 0cm;
622
638
  margin-right: 34.0pt;
@@ -639,6 +655,7 @@ p.MsoToc7, li.MsoToc7, div.MsoToc7 {
639
655
  p.MsoToc8, li.MsoToc8, div.MsoToc8 {
640
656
  mso-style-noshow: yes;
641
657
  mso-style-unhide: no;
658
+ mso-style-name: "TOC 8";
642
659
  mso-style-parent: "TOC 7";
643
660
  margin-top: 0cm;
644
661
  margin-right: 34.0pt;
@@ -661,6 +678,7 @@ p.MsoToc8, li.MsoToc8, div.MsoToc8 {
661
678
  p.MsoToc9, li.MsoToc9, div.MsoToc9 {
662
679
  mso-style-noshow: yes;
663
680
  mso-style-unhide: no;
681
+ mso-style-name: "TOC 9";
664
682
  mso-style-parent: "TOC 8";
665
683
  margin-top: 0cm;
666
684
  margin-right: 34.0pt;
@@ -682,6 +700,7 @@ p.MsoToc9, li.MsoToc9, div.MsoToc9 {
682
700
 
683
701
  p.MsoHeader, li.MsoHeader, div.MsoHeader {
684
702
  mso-style-unhide: no;
703
+ mso-style-name: "Header";
685
704
  margin: 0cm;
686
705
  margin-bottom: .0001pt;
687
706
  text-align: justify;
@@ -750,6 +769,7 @@ span.MsoFootnoteReference {
750
769
  mso-style-noshow: yes;
751
770
  mso-style-unhide: no;
752
771
  mso-style-parent: "";
772
+ mso-style-name: "Footnote Reference";
753
773
  mso-ansi-font-size: 8.0pt;
754
774
  mso-bidi-font-size: 8.0pt;
755
775
  font-family: {{bodyfont}};
@@ -763,6 +783,7 @@ span.MsoFootnoteReference {
763
783
  p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText {
764
784
  mso-style-noshow: yes;
765
785
  mso-style-unhide: no;
786
+ mso-style-name: "MsoFootnoteText";
766
787
  margin-top: 0cm;
767
788
  margin-right: 0cm;
768
789
  margin-bottom: 5.0pt;
@@ -782,6 +803,7 @@ a:link, span.MsoHyperlink {
782
803
  mso-style-priority: 99;
783
804
  mso-style-unhide: no;
784
805
  mso-style-parent: "";
806
+ mso-style-name: "Hyperlink";
785
807
  color: windowtext;
786
808
  text-decoration: none;
787
809
  text-underline: none; }
@@ -1058,6 +1080,7 @@ span.BodyTextChar {
1058
1080
  p.MsoCommentText, li.MsoCommentText, div.MsoCommentText {
1059
1081
  mso-style-noshow: yes;
1060
1082
  mso-style-priority: 99;
1083
+ mso-style-name: "Comment Text";
1061
1084
  mso-style-link: "Comment Text Char";
1062
1085
  margin-top: 0cm;
1063
1086
  margin-right: 0cm;
@@ -1130,6 +1153,7 @@ p.Tablebody, li.Tablebody, div.Tablebody {
1130
1153
  p.MsoList, li.MsoList, div.MsoList {
1131
1154
  mso-style-unhide: no;
1132
1155
  mso-style-qformat: yes;
1156
+ mso-style-name: "List";
1133
1157
  margin-top: 0cm;
1134
1158
  margin-right: 0cm;
1135
1159
  margin-bottom: 5.0pt;
@@ -193,6 +193,7 @@ div.figure, p.figure
193
193
  h1.main
194
194
  {mso-style-unhide:no;
195
195
  mso-style-qformat:yes;
196
+ mso-style-name:"Heading 1";
196
197
  mso-style-parent:Normal;
197
198
  mso-style-next:Normal;
198
199
  margin-top:$normalfontsize;
@@ -249,6 +250,7 @@ h1
249
250
  {mso-style-unhide:no;
250
251
  mso-style-qformat:yes;
251
252
  mso-style-parent:"Heading 1";
253
+ mso-style-name:"Heading 2";
252
254
  mso-style-next:Normal;
253
255
  margin-top:5.0pt;
254
256
  margin-right:0cm;
@@ -274,6 +276,7 @@ h2
274
276
  .h3Annex, h3
275
277
  {mso-style-unhide:no;
276
278
  mso-style-qformat:yes;
279
+ mso-style-name:"Heading 3";
277
280
  mso-style-parent:"Heading 2";
278
281
  mso-style-next:Normal;
279
282
  margin-top:5.0pt;
@@ -299,6 +302,7 @@ h3 {mso-list:l26 level3 lfo40;
299
302
  .h4Annex, h4
300
303
  {mso-style-unhide:no;
301
304
  mso-style-qformat:yes;
305
+ mso-style-name:"Heading 4";
302
306
  mso-style-parent:"Heading 3";
303
307
  mso-style-next:Normal;
304
308
  margin-top:5.0pt;
@@ -324,6 +328,7 @@ h4 {mso-list:l26 level2 lfo40;
324
328
  .h5Annex, h5
325
329
  {mso-style-unhide:no;
326
330
  mso-style-qformat:yes;
331
+ mso-style-name:"Heading 5";
327
332
  mso-style-parent:"Heading 4";
328
333
  mso-style-next:Normal;
329
334
  margin-top:5.0pt;
@@ -349,6 +354,7 @@ h5 {mso-list:l26 level5 lfo40;
349
354
  h6
350
355
  {mso-style-unhide:no;
351
356
  mso-style-qformat:yes;
357
+ mso-style-name:"Heading 6";
352
358
  mso-style-parent:"Heading 5";
353
359
  mso-style-next:Normal;
354
360
  margin-top:5.0pt;
@@ -374,6 +380,7 @@ h6 {mso-list:l26 level6 lfo40;
374
380
  p.MsoHeading7, li.MsoHeading7, div.MsoHeading7
375
381
  {mso-style-unhide:no;
376
382
  mso-style-qformat:yes;
383
+ mso-style-name:"Heading 7";
377
384
  mso-style-parent:"Heading 6";
378
385
  mso-style-next:Normal;
379
386
  margin-top:5.0pt;
@@ -399,6 +406,7 @@ p.MsoHeading7 {mso-list:l26 level7 lfo40;}
399
406
  p.MsoHeading8, li.MsoHeading8, div.MsoHeading8
400
407
  {mso-style-unhide:no;
401
408
  mso-style-qformat:yes;
409
+ mso-style-name:"Heading 8";
402
410
  mso-style-parent:"Heading 7";
403
411
  mso-style-next:Normal;
404
412
  margin-top:5.0pt;
@@ -424,6 +432,7 @@ p.MsoHeading8 {mso-list:l26 level8 lfo40;}
424
432
  p.MsoHeading9, li.MsoHeading9, div.MsoHeading9
425
433
  {mso-style-unhide:no;
426
434
  mso-style-qformat:yes;
435
+ mso-style-name:"Heading 9";
427
436
  mso-style-parent:"Heading 8";
428
437
  mso-style-next:Normal;
429
438
  margin-top:5.0pt;
@@ -449,6 +458,7 @@ p.MsoHeading9 {mso-list:l26 level9 lfo40;}
449
458
  p.MsoToc1, li.MsoToc1, div.MsoToc1
450
459
  { mso-style-priority:39;
451
460
  mso-style-unhide:no;
461
+ mso-style-name:"TOC 1";
452
462
  margin-top:0cm;
453
463
  margin-right:34.0pt;
454
464
  margin-bottom:5.0pt;
@@ -469,6 +479,7 @@ p.MsoToc1, li.MsoToc1, div.MsoToc1
469
479
  p.MsoToc2, li.MsoToc2, div.MsoToc2
470
480
  {mso-style-priority:39;
471
481
  mso-style-unhide:no;
482
+ mso-style-name:"TOC 2";
472
483
  mso-style-parent:"TOC 1";
473
484
  margin-top:0cm;
474
485
  margin-right:34.0pt;
@@ -490,6 +501,7 @@ p.MsoToc2, li.MsoToc2, div.MsoToc2
490
501
  p.MsoToc3, li.MsoToc3, div.MsoToc3
491
502
  {mso-style-priority:39;
492
503
  mso-style-unhide:no;
504
+ mso-style-name:"TOC 3";
493
505
  mso-style-parent:"TOC 2";
494
506
  margin-top:0cm;
495
507
  margin-right:34.0pt;
@@ -511,6 +523,7 @@ p.MsoToc3, li.MsoToc3, div.MsoToc3
511
523
  p.MsoToc4, li.MsoToc4, div.MsoToc4
512
524
  {mso-style-noshow:yes;
513
525
  mso-style-unhide:no;
526
+ mso-style-name:"TOC 4";
514
527
  mso-style-parent:"TOC 3";
515
528
  margin-top:0cm;
516
529
  margin-right:34.0pt;
@@ -532,6 +545,7 @@ p.MsoToc4, li.MsoToc4, div.MsoToc4
532
545
  p.MsoToc5, li.MsoToc5, div.MsoToc5
533
546
  {mso-style-noshow:yes;
534
547
  mso-style-unhide:no;
548
+ mso-style-name:"TOC 5";
535
549
  mso-style-parent:"TOC 4";
536
550
  margin-top:0cm;
537
551
  margin-right:34.0pt;
@@ -553,6 +567,7 @@ p.MsoToc5, li.MsoToc5, div.MsoToc5
553
567
  p.MsoToc6, li.MsoToc6, div.MsoToc6
554
568
  {mso-style-noshow:yes;
555
569
  mso-style-unhide:no;
570
+ mso-style-name:"TOC 6";
556
571
  mso-style-parent:"TOC 5";
557
572
  margin-top:0cm;
558
573
  margin-right:34.0pt;
@@ -574,6 +589,7 @@ p.MsoToc6, li.MsoToc6, div.MsoToc6
574
589
  p.MsoToc7, li.MsoToc7, div.MsoToc7
575
590
  {mso-style-noshow:yes;
576
591
  mso-style-unhide:no;
592
+ mso-style-name:"TOC 7";
577
593
  mso-style-parent:"TOC 6";
578
594
  margin-top:0cm;
579
595
  margin-right:34.0pt;
@@ -595,6 +611,7 @@ p.MsoToc7, li.MsoToc7, div.MsoToc7
595
611
  p.MsoToc8, li.MsoToc8, div.MsoToc8
596
612
  {mso-style-noshow:yes;
597
613
  mso-style-unhide:no;
614
+ mso-style-name:"TOC 8";
598
615
  mso-style-parent:"TOC 7";
599
616
  margin-top:0cm;
600
617
  margin-right:34.0pt;
@@ -616,6 +633,7 @@ p.MsoToc8, li.MsoToc8, div.MsoToc8
616
633
  p.MsoToc9, li.MsoToc9, div.MsoToc9
617
634
  {mso-style-noshow:yes;
618
635
  mso-style-unhide:no;
636
+ mso-style-name:"TOC 9";
619
637
  mso-style-parent:"TOC 8";
620
638
  margin-top:0cm;
621
639
  margin-right:34.0pt;
@@ -636,6 +654,7 @@ p.MsoToc9, li.MsoToc9, div.MsoToc9
636
654
  mso-no-proof:yes;}
637
655
  p.MsoHeader, li.MsoHeader, div.MsoHeader
638
656
  {mso-style-unhide:no;
657
+ mso-style-name:"Header";
639
658
  margin:0cm;
640
659
  margin-bottom:.0001pt;
641
660
  text-align:justify;
@@ -700,6 +719,7 @@ span.MsoFootnoteReference
700
719
  {mso-style-noshow:yes;
701
720
  mso-style-unhide:no;
702
721
  mso-style-parent:"";
722
+ mso-style-name:"Footnote Reference";
703
723
  mso-ansi-font-size:8.0pt;
704
724
  mso-bidi-font-size:8.0pt;
705
725
  font-family:$bodyfont;
@@ -712,6 +732,7 @@ span.MsoFootnoteReference
712
732
  p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
713
733
  {mso-style-noshow:yes;
714
734
  mso-style-unhide:no;
735
+ mso-style-name:"MsoFootnoteText";
715
736
  margin-top:0cm;
716
737
  margin-right:0cm;
717
738
  margin-bottom:5.0pt;
@@ -730,6 +751,7 @@ a:link, span.MsoHyperlink
730
751
  {mso-style-priority:99;
731
752
  mso-style-unhide:no;
732
753
  mso-style-parent:"";
754
+ mso-style-name:"Hyperlink";
733
755
  color:windowtext;
734
756
  text-decoration:none;
735
757
  text-underline:none;}
@@ -990,6 +1012,7 @@ span.BodyTextChar
990
1012
  p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
991
1013
  {mso-style-noshow:yes;
992
1014
  mso-style-priority:99;
1015
+ mso-style-name:"Comment Text";
993
1016
  mso-style-link:"Comment Text Char";
994
1017
  margin-top:0cm;
995
1018
  margin-right:0cm;
@@ -1057,6 +1080,7 @@ p.Tablebody, li.Tablebody, div.Tablebody
1057
1080
  p.MsoList, li.MsoList, div.MsoList
1058
1081
  {mso-style-unhide:no;
1059
1082
  mso-style-qformat:yes;
1083
+ mso-style-name:"List";
1060
1084
  margin-top:0cm;
1061
1085
  margin-right:0cm;
1062
1086
  margin-bottom:5.0pt;
@@ -2873,6 +2873,11 @@
2873
2873
 
2874
2874
 
2875
2875
 
2876
+ </xsl:attribute-set><xsl:attribute-set name="table-note-name-style">
2877
+
2878
+
2879
+
2880
+
2876
2881
  </xsl:attribute-set><xsl:attribute-set name="note-p-style">
2877
2882
 
2878
2883
 
@@ -4023,9 +4028,8 @@
4023
4028
 
4024
4029
  <!-- Table's note name (NOTE, for example) -->
4025
4030
 
4026
- <fo:inline padding-right="2mm">
4031
+ <fo:inline padding-right="2mm" xsl:use-attribute-sets="table-note-name-style">
4027
4032
 
4028
-
4029
4033
 
4030
4034
 
4031
4035
 
@@ -4676,6 +4680,8 @@
4676
4680
  <xsl:if test="$font-size != ''">
4677
4681
  <xsl:attribute name="font-size">
4678
4682
  <xsl:choose>
4683
+ <xsl:when test="$font-size = 'inherit'"><xsl:value-of select="$font-size"/></xsl:when>
4684
+ <xsl:when test="contains($font-size, '%')"><xsl:value-of select="$font-size"/></xsl:when>
4679
4685
  <xsl:when test="ancestor::*[local-name()='note']"><xsl:value-of select="$font-size * 0.91"/>pt</xsl:when>
4680
4686
  <xsl:otherwise><xsl:value-of select="$font-size"/>pt</xsl:otherwise>
4681
4687
  </xsl:choose>
@@ -6138,12 +6144,16 @@
6138
6144
  <xsl:if test="$font-size != ''">
6139
6145
  <xsl:attribute name="font-size">
6140
6146
  <xsl:choose>
6147
+ <xsl:when test="$font-size = 'inherit'"><xsl:value-of select="$font-size"/></xsl:when>
6148
+ <xsl:when test="contains($font-size, '%')"><xsl:value-of select="$font-size"/></xsl:when>
6141
6149
  <xsl:when test="ancestor::*[local-name()='note']"><xsl:value-of select="$font-size * 0.91"/>pt</xsl:when>
6142
6150
  <xsl:otherwise><xsl:value-of select="$font-size"/>pt</xsl:otherwise>
6143
6151
  </xsl:choose>
6144
6152
  </xsl:attribute>
6145
6153
  </xsl:if>
6146
6154
 
6155
+
6156
+
6147
6157
  <xsl:apply-templates/>
6148
6158
  </fo:block>
6149
6159
 
@@ -1,6 +1,6 @@
1
1
  module Metanorma
2
2
  module Iec
3
- VERSION = "1.3.12".freeze
3
+ VERSION = "1.3.13".freeze
4
4
  end
5
5
  end
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-iec
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.12
4
+ version: 1.3.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-27 00:00:00.000000000 Z
11
+ date: 2021-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: metanorma-iso