metanorma-jis 0.0.2 → 0.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ff66d75cdb79e4e5c5ac3ce3710fa330b966cb593b3091445a7a40e74c06d524
4
- data.tar.gz: f85726ebe333f7d1195689ca2028f4cde3c2a4dc948a1de9307ebd5d5e0943bd
3
+ metadata.gz: 7202e095e949d4def144db9e549bfaa78fc453096fb6607d83024924da0bd0b8
4
+ data.tar.gz: 765d9791c6428d6e8f55db74d14c6fbea884502ae78b8590c0435d4370f91ea9
5
5
  SHA512:
6
- metadata.gz: 6f6554baeda3c8ab8e82da6f36e6500eb89d5d639dbaaba3e3970845e3d9e0ec007c931d8f5ca4a1b1b8060bf11ef46eb4d3ab4a9074d77e042fbaedb3141140
7
- data.tar.gz: 7e3e2a87a2070fb32c477b6cb1dc678ef110f349a32a227f79a11b5b495e264adebab14babbfe6ac68602c5431c4d5f9be3aaa573ca113b0ec3d7f447b7a6096
6
+ metadata.gz: 331443ed139aa8c3c6024781d1723d2965ef45a4714eba88294898bbffa2bab14ab6af52963da9e6b98f07389b582362a3fe637bec13da2c95bb9de30c3109bb
7
+ data.tar.gz: 71d1aeacef86ad9a9113f28327ac88a4acb56f1ffdad9a2c98a7a9233e235b50446f1fb314bbd05665644dc12beb418e4bbbe43f89d6d6d9708d95ade43a1f03
@@ -24,8 +24,10 @@ class Html2Doc
24
24
  def list2para_nest(item, level, list)
25
25
  item["class"] = list2para_style(list.name, level)
26
26
  item.xpath("./p").each do |p|
27
- p["class"] = list2para_style(list.name, level)
27
+ p["class"] = list2para_class(list.name, level)
28
28
  p["style"] = item["style"]
29
+ (a = list2para_style(list.name, level)) && !a.empty? and
30
+ p["style"] = "#{a};#{p['style']}"
29
31
  p["id"] = item["id"]
30
32
  end
31
33
  item.at("./p") or return
@@ -56,17 +58,50 @@ class Html2Doc
56
58
  end
57
59
  end
58
60
 
59
- def list2para_style(listtype, depth)
61
+ def list2para_class(listtype, depth)
60
62
  case listtype
61
- when "ul", "ol"
63
+ when "ol" then "MsoList"
64
+ when "ul"
62
65
  case depth
63
- when "1" then "MsoList"
64
- when "2", "3", "4", "5" then "MsoList#{depth}"
65
- else "MsoList6"
66
+ when "1" then "MsoListBullet"
67
+ when "2", "3", "4", "5" then "MsoListBullet#{depth}"
68
+ else "MsoListBullet6"
66
69
  end
67
70
  end
68
71
  end
69
72
 
73
+ def list2para_style(listtype, depth)
74
+ case listtype
75
+ when "ol"
76
+ ret = case depth
77
+ when "1" then "margin-left: 36.0pt;"
78
+ when "2" then "margin-left: 54.0pt;"
79
+ when "3" then "margin-left: 72.0pt;"
80
+ when "4" then "margin-left: 90.0pt;"
81
+ when "5" then "margin-left: 108.0pt;"
82
+ when "6" then "margin-left: 126.0pt;"
83
+ when "7" then "margin-left: 144.0pt;"
84
+ when "8" then "margin-left: 162.0pt;"
85
+ else "margin-left: 180.0pt;"
86
+ end
87
+ "#{ret}text-indent:-18.0pt;"
88
+ when "ul"
89
+ ret = case depth
90
+ when "1" then "margin-left: 36.0pt;"
91
+ when "2" then "margin-left: 45.95pt;"
92
+ when "3" then "margin-left: 72.0pt;"
93
+ when "4" then "margin-left: 90.0pt;"
94
+ when "5" then "margin-left: 108.0pt;"
95
+ when "6" then "margin-left: 126.0pt;"
96
+ when "7" then "margin-left: 144.0pt;"
97
+ when "8" then "margin-left: 162.0pt;"
98
+ else "margin-left: 180.0pt;"
99
+ end
100
+ "#{ret}text-indent:-18.0pt;"
101
+
102
+ end
103
+ end
104
+
70
105
  def lists(docxml, liststyles)
71
106
  super
72
107
  docxml.xpath("//p[ol | ul]").each do |p|
@@ -36,6 +36,44 @@ module IsoDoc
36
36
  p << "<br/><b>#{a}</b>"
37
37
  end
38
38
  end
39
+
40
+ def termnote_parse(node, out)
41
+ name = node&.at(ns("./name"))&.remove
42
+ out.div **note_attrs(node) do |div|
43
+ div.p do |p|
44
+ if name
45
+ p.span class: "note_label" do |s|
46
+ name.children.each { |n| parse(n, s) }
47
+ end
48
+ p << termnote_delim
49
+ end
50
+ para_then_remainder(node.first_element_child, node, p, div)
51
+ end
52
+ end
53
+ end
54
+
55
+ def admonition_name_parse(_node, div, name)
56
+ div.span class: "note_label" do |s|
57
+ name.children.each { |n| parse(n, s) }
58
+ s << " &#x2014; "
59
+ end
60
+ end
61
+
62
+ def admitted_term_parse(node, out)
63
+ out.p class: "Terms", style: "text-align:left;" do |p|
64
+ p << l10n("#{@i18n.alternative}: ")
65
+ node.children.each { |c| parse(c, p) }
66
+ end
67
+ end
68
+
69
+ def para_class(node)
70
+ super || node["class"]
71
+ end
72
+
73
+ def make_tr_attr(cell, row, totalrows, header, bordered)
74
+ cell["border"] == "0" and bordered = false
75
+ super
76
+ end
39
77
  end
40
78
  end
41
79
  end
@@ -1186,7 +1186,7 @@ table.MsoISOTable td, table.MsoISOTableBig td {
1186
1186
  table.MsoISOTable p, table.MsoISOTableBig p {
1187
1187
  font-size: {{smallerfontsize}}; }
1188
1188
 
1189
- table.MsoTableGrid {
1189
+ table.MsoTableGrid, table.MsoTableGridBig {
1190
1190
  mso-style-name: "Table Grid";
1191
1191
  mso-tstyle-rowband-size: 0;
1192
1192
  mso-tstyle-colband-size: 0;
@@ -1203,6 +1203,15 @@ table.MsoTableGrid {
1203
1203
  font-size: {{smallerfontsize}};
1204
1204
  font-family: {{bodyfont}}; }
1205
1205
 
1206
+ table.MsoTableGrid tr {
1207
+ page-break-inside: avoid; }
1208
+
1209
+ table.MsoTableGridBig tr {
1210
+ page-break-inside: auto; }
1211
+
1212
+ table.MsoTableGridBig td {
1213
+ page-break-inside: auto; }
1214
+
1206
1215
  div.formula {
1207
1216
  tab-stops: right 487.45pt; }
1208
1217
 
@@ -1415,7 +1424,7 @@ div.Note table.dl {
1415
1424
 
1416
1425
  span.note_label, span.example_label, td.example_label, td.note_label {
1417
1426
  font-size: {{smallerfontsize}};
1418
- font-family: {{bodyfont}}; }
1427
+ font-family: {{headerfont}}; }
1419
1428
 
1420
1429
  /* styles as yet unallocated */
1421
1430
  p.a, li.a, div.a {
@@ -2049,7 +2058,7 @@ p.a3, li.a3, div.a3 {
2049
2058
  mso-fareast-language: JA;
2050
2059
  mso-no-proof: yes; }
2051
2060
 
2052
- p.a4, li.a4, div.a4 {
2061
+ p.MsoListBullet, li.MsoListBullet, div.MsoListBullet {
2053
2062
  mso-style-name: ダーシ1;
2054
2063
  /* Darcy 1 */
2055
2064
  mso-style-unhide: no;
@@ -2095,7 +2104,7 @@ p.a5, li.a5, div.a5 {
2095
2104
  mso-fareast-language: JA;
2096
2105
  mso-no-proof: yes; }
2097
2106
 
2098
- p.a6, li.a6, div.a6 {
2107
+ p.MsoListBullet2, li.MsoListBullet2, div.MsoListBullet2 {
2099
2108
  mso-style-name: ダーシ2;
2100
2109
  /* Darcy 2 */
2101
2110
  mso-style-unhide: no;
@@ -2141,7 +2150,7 @@ p.a7, li.a7, div.a7 {
2141
2150
  mso-fareast-language: JA;
2142
2151
  mso-no-proof: yes; }
2143
2152
 
2144
- p.a8, li.a8, div.a8 {
2153
+ p.MsoListBullet3, li.MsoListBullet3, div.MsoListBullet3 {
2145
2154
  mso-style-name: ダーシ3;
2146
2155
  /* Darcy 3 */
2147
2156
  mso-style-unhide: no;
@@ -2187,7 +2196,7 @@ p.a9, li.a9, div.a9 {
2187
2196
  mso-fareast-language: JA;
2188
2197
  mso-no-proof: yes; }
2189
2198
 
2190
- p.aa, li.aa, div.aa {
2199
+ p.MsoListBullet4, li.MsoListBullet4, div.MsoListBullet4 {
2191
2200
  mso-style-name: ダーシ4;
2192
2201
  /* Darcy 4 */
2193
2202
  mso-style-unhide: no;
@@ -2233,7 +2242,7 @@ p.ab, li.ab, div.ab {
2233
2242
  mso-fareast-language: JA;
2234
2243
  mso-no-proof: yes; }
2235
2244
 
2236
- p.ac, li.ac, div.ac {
2245
+ p.MsoListBullet5, li.MsoListBullet5, div.MsoListBullet5 {
2237
2246
  mso-style-name: ダーシ5;
2238
2247
  /* Darcy 5 */
2239
2248
  mso-style-unhide: no;
@@ -2279,7 +2288,7 @@ p.ad, li.ad, div.ad {
2279
2288
  mso-fareast-language: JA;
2280
2289
  mso-no-proof: yes; }
2281
2290
 
2282
- p.ae, li.ae, div.ae {
2291
+ p.MsoListBullet6, li.MsoListBullet6, div.MsoListBullet6 {
2283
2292
  mso-style-name: ダーシ6;
2284
2293
  /* Darcy 6 */
2285
2294
  mso-style-unhide: no;
@@ -2843,29 +2852,6 @@ span.TR0 {
2843
2852
  mso-style-unhide: no;
2844
2853
  mso-style-parent: ""; }
2845
2854
 
2846
- p.afffa, li.afffa, div.afffa {
2847
- mso-style-name: 段落;
2848
- /* paragraph */
2849
- mso-style-unhide: no;
2850
- mso-style-parent: "";
2851
- margin-top: 10.0pt;
2852
- margin-right: 0cm;
2853
- margin-bottom: 0cm;
2854
- margin-left: 0cm;
2855
- text-align: justify;
2856
- text-justify: inter-ideograph;
2857
- text-indent: 9.95pt;
2858
- line-height: 15.0pt;
2859
- mso-line-height-rule: exactly;
2860
- mso-pagination: none;
2861
- font-size: {{normalfontsize}};
2862
- font-family: "Times New Roman",serif;
2863
- mso-fareast-font-family: {{bodyfont}};
2864
- mso-font-kerning: 1.0pt;
2865
- mso-ansi-language: EN-US;
2866
- mso-fareast-language: JA;
2867
- mso-no-proof: yes; }
2868
-
2869
2855
  p.afffb, li.afffb, div.afffb {
2870
2856
  mso-style-name: 罫線段落;
2871
2857
  /* ruled paragraph */
@@ -3923,7 +3909,7 @@ p.afffffffd, li.afffffffd, div.afffffffd {
3923
3909
  mso-bidi-font-weight: normal;
3924
3910
  mso-no-proof: yes; }
3925
3911
 
3926
- p.affffffff, li.affffffff, div.affffffff {
3912
+ p.SubfigureCaption, li.SubfigureCaption, div.SubfigureCaption {
3927
3913
  mso-style-name: 図題(付図);
3928
3914
  /* Subtitle (Appendix) */
3929
3915
  mso-style-unhide: no;
@@ -5428,7 +5414,7 @@ span.affffffffffff5 {
5428
5414
  mso-fareast-font-family: {{headerfont}};
5429
5415
  mso-hansi-font-family: Arial; }
5430
5416
 
5431
- p.affffffffffff6, li.affffffffffff6, div.affffffffffff6 {
5417
+ p.UnitStatement, li.UnitStatement, div.UnitStatement {
5432
5418
  mso-style-name: 単位;
5433
5419
  /* unit */
5434
5420
  mso-style-unhide: no;
@@ -1132,7 +1132,7 @@ table.MsoISOTable td, table.MsoISOTableBig td
1132
1132
  padding:0cm 2.85pt 0cm 2.85pt;}
1133
1133
  table.MsoISOTable p, table.MsoISOTableBig p
1134
1134
  {font-size:$smallerfontsize; }
1135
- table.MsoTableGrid
1135
+ table.MsoTableGrid, table.MsoTableGridBig
1136
1136
  {mso-style-name:"Table Grid";
1137
1137
  mso-tstyle-rowband-size:0;
1138
1138
  mso-tstyle-colband-size:0;
@@ -1148,6 +1148,12 @@ table.MsoTableGrid
1148
1148
  mso-pagination:widow-orphan;
1149
1149
  font-size:$smallerfontsize;
1150
1150
  font-family:$bodyfont;}
1151
+ table.MsoTableGrid tr
1152
+ {page-break-inside:avoid;}
1153
+ table.MsoTableGridBig tr
1154
+ {page-break-inside:auto;}
1155
+ table.MsoTableGridBig td
1156
+ {page-break-inside:auto;}
1151
1157
  div.formula
1152
1158
  {tab-stops:right 487.45pt;}
1153
1159
  body
@@ -1377,7 +1383,7 @@ div.Note table.dl {
1377
1383
  span.note_label, span.example_label, td.example_label, td.note_label
1378
1384
  {
1379
1385
  font-size: $smallerfontsize;
1380
- font-family:$bodyfont;
1386
+ font-family:$headerfont;
1381
1387
  }
1382
1388
 
1383
1389
 
@@ -1986,7 +1992,7 @@ p.a3, li.a3, div.a3
1986
1992
  mso-ansi-language:EN-US;
1987
1993
  mso-fareast-language:JA;
1988
1994
  mso-no-proof:yes;}
1989
- p.a4, li.a4, div.a4
1995
+ p.MsoListBullet, li.MsoListBullet, div.MsoListBullet
1990
1996
  {mso-style-name:ダーシ1;
1991
1997
  /* Darcy 1 */
1992
1998
  mso-style-unhide:no;
@@ -2030,7 +2036,7 @@ p.a5, li.a5, div.a5
2030
2036
  mso-ansi-language:EN-US;
2031
2037
  mso-fareast-language:JA;
2032
2038
  mso-no-proof:yes;}
2033
- p.a6, li.a6, div.a6
2039
+ p.MsoListBullet2, li.MsoListBullet2, div.MsoListBullet2
2034
2040
  {mso-style-name:ダーシ2;
2035
2041
  /* Darcy 2 */
2036
2042
  mso-style-unhide:no;
@@ -2074,7 +2080,7 @@ p.a7, li.a7, div.a7
2074
2080
  mso-ansi-language:EN-US;
2075
2081
  mso-fareast-language:JA;
2076
2082
  mso-no-proof:yes;}
2077
- p.a8, li.a8, div.a8
2083
+ p.MsoListBullet3, li.MsoListBullet3, div.MsoListBullet3
2078
2084
  {mso-style-name:ダーシ3;
2079
2085
  /* Darcy 3 */
2080
2086
  mso-style-unhide:no;
@@ -2118,7 +2124,7 @@ p.a9, li.a9, div.a9
2118
2124
  mso-ansi-language:EN-US;
2119
2125
  mso-fareast-language:JA;
2120
2126
  mso-no-proof:yes;}
2121
- p.aa, li.aa, div.aa
2127
+ p.MsoListBullet4, li.MsoListBullet4, div.MsoListBullet4
2122
2128
  {mso-style-name:ダーシ4;
2123
2129
  /* Darcy 4 */
2124
2130
  mso-style-unhide:no;
@@ -2162,7 +2168,7 @@ p.ab, li.ab, div.ab
2162
2168
  mso-ansi-language:EN-US;
2163
2169
  mso-fareast-language:JA;
2164
2170
  mso-no-proof:yes;}
2165
- p.ac, li.ac, div.ac
2171
+ p.MsoListBullet5, li.MsoListBullet5, div.MsoListBullet5
2166
2172
  {mso-style-name:ダーシ5;
2167
2173
  /* Darcy 5 */
2168
2174
  mso-style-unhide:no;
@@ -2206,7 +2212,7 @@ p.ad, li.ad, div.ad
2206
2212
  mso-ansi-language:EN-US;
2207
2213
  mso-fareast-language:JA;
2208
2214
  mso-no-proof:yes;}
2209
- p.ae, li.ae, div.ae
2215
+ p.MsoListBullet6, li.MsoListBullet6, div.MsoListBullet6
2210
2216
  {mso-style-name:ダーシ6;
2211
2217
  /* Darcy 6 */
2212
2218
  mso-style-unhide:no;
@@ -2738,28 +2744,6 @@ span.TR0
2738
2744
  /* continuation date TR */
2739
2745
  mso-style-unhide:no;
2740
2746
  mso-style-parent:"";}
2741
- p.afffa, li.afffa, div.afffa
2742
- {mso-style-name:段落;
2743
- /* paragraph */
2744
- mso-style-unhide:no;
2745
- mso-style-parent:"";
2746
- margin-top:10.0pt;
2747
- margin-right:0cm;
2748
- margin-bottom:0cm;
2749
- margin-left:0cm;
2750
- text-align:justify;
2751
- text-justify:inter-ideograph;
2752
- text-indent:9.95pt;
2753
- line-height:15.0pt;
2754
- mso-line-height-rule:exactly;
2755
- mso-pagination:none;
2756
- font-size:$normalfontsize;
2757
- font-family:"Times New Roman",serif;
2758
- mso-fareast-font-family:$bodyfont;
2759
- mso-font-kerning:1.0pt;
2760
- mso-ansi-language:EN-US;
2761
- mso-fareast-language:JA;
2762
- mso-no-proof:yes;}
2763
2747
  p.afffb, li.afffb, div.afffb
2764
2748
  {mso-style-name:罫線段落;
2765
2749
  /* ruled paragraph */
@@ -3758,7 +3742,7 @@ p.afffffffd, li.afffffffd, div.afffffffd
3758
3742
  font-weight:bold;
3759
3743
  mso-bidi-font-weight:normal;
3760
3744
  mso-no-proof:yes;}
3761
- p.affffffff, li.affffffff, div.affffffff
3745
+ p.SubfigureCaption, li.SubfigureCaption, div.SubfigureCaption
3762
3746
  {mso-style-name:図題(付図);
3763
3747
  /* Subtitle (Appendix) */
3764
3748
  mso-style-unhide:no;
@@ -5194,7 +5178,7 @@ span.affffffffffff5
5194
5178
  mso-ascii-font-family:Arial;
5195
5179
  mso-fareast-font-family:$headerfont;
5196
5180
  mso-hansi-font-family:Arial;}
5197
- p.affffffffffff6, li.affffffffffff6, div.affffffffffff6
5181
+ p.UnitStatement, li.UnitStatement, div.UnitStatement
5198
5182
  {mso-style-name:単位;
5199
5183
  /* unit */
5200
5184
  mso-style-unhide:no;
@@ -5,10 +5,11 @@ margin-left:5.1pt;margin-right:5.1pt'>
5
5
  <div id="boilerplate-copyright-destination"/>
6
6
  </div>
7
7
 
8
- {% if doctype == "Amendment" or doctype == "Technical Corrigendum" %}
9
- {% else %}
8
+
9
+ <p class="MsoNormal">
10
+ <br clear="all" style="mso-special-character:line-break;page-break-before:always"/>
11
+ </p>
10
12
 
11
13
  <p class="zzContents" style='margin-top:0cm'><span lang="EN-GB">{{ labels["table_of_contents"] }}</span></p>
12
14
 
13
15
  WORDTOC
14
- {% endif %}
@@ -125,4 +125,10 @@ documentation.</span><span lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-si
125
125
 
126
126
  <!--</div>-->
127
127
 
128
+ <p class="MsoNormal">
129
+ <br clear="all" style="mso-special-character:line-break;page-break-before:always"/>
130
+ </p>
131
+
132
+ <div id="boilerplate-inner-cover-note"/>
133
+ <div id="boilerplate-contributors"/>
128
134
 
@@ -116,6 +116,29 @@
116
116
 
117
117
  /* Style Definitions */
118
118
  p.MsoNormal, li.MsoNormal, div.MsoNormal {
119
+ mso-style-name: 段落;
120
+ /* paragraph */
121
+ mso-style-unhide: no;
122
+ mso-style-parent: "";
123
+ margin-top: 10.0pt;
124
+ margin-right: 0cm;
125
+ margin-bottom: 0cm;
126
+ margin-left: 0cm;
127
+ text-align: justify;
128
+ text-justify: inter-ideograph;
129
+ text-indent: 9.95pt;
130
+ line-height: 15.0pt;
131
+ mso-line-height-rule: exactly;
132
+ mso-pagination: none;
133
+ font-size: {{normalfontsize}};
134
+ font-family: "Times New Roman",serif;
135
+ mso-fareast-font-family: {{bodyfont}};
136
+ mso-font-kerning: 1.0pt;
137
+ mso-ansi-language: EN-US;
138
+ mso-fareast-language: JA;
139
+ mso-no-proof: yes; }
140
+
141
+ p.afffffff2, li.afffffff2, div.afffffff2 {
119
142
  mso-style-name: 字下げなし段落;
120
143
  /* unindented paragraph */
121
144
  mso-style-unhide: no;
@@ -183,8 +206,7 @@ p.MsoList, li.MsoList, div.MsoList {
183
206
  margin-right: 0cm;
184
207
  margin-bottom: 0cm;
185
208
  /* do not put in margin-left, it is specific to list level */
186
- /*margin-left:19.85pt;*/
187
- margin-left: 36.0pt;
209
+ margin-left: 19.85pt;
188
210
  text-align: justify;
189
211
  text-justify: inter-ideograph;
190
212
  text-indent: -19.85pt;
@@ -388,7 +410,7 @@ h1 {
388
410
  h1.ForewordTitle {
389
411
  }
390
412
  */
391
- h1, .h1 {
413
+ h1, .h1, .h2Annex {
392
414
  mso-style-name: 箇条1;
393
415
  /* Clause 1 */
394
416
  mso-style-unhide: no;
@@ -417,7 +439,7 @@ h1, .h1 {
417
439
  h1 {
418
440
  mso-outline-level: 1; }
419
441
 
420
- h1.Annex {
442
+ .h1Annex, .Annex {
421
443
  mso-style-name: 附属書見出し;
422
444
  /* Annex Heading */
423
445
  mso-style-unhide: no;
@@ -439,7 +461,7 @@ h1.Annex {
439
461
  mso-fareast-language: JA;
440
462
  mso-no-proof: yes; }
441
463
 
442
- .h2Annex, h2, .h2 {
464
+ h2, .h2, .h3Annex {
443
465
  mso-style-name: 箇条2;
444
466
  /* Clause 2 */
445
467
  mso-style-unhide: no;
@@ -469,7 +491,7 @@ h2 {
469
491
  /*mso-list:l10 level2 lfo13;*/
470
492
  mso-outline-level: 2; }
471
493
 
472
- .h3Annex, h3, .h3 {
494
+ .h4Annex, h3, .h3 {
473
495
  mso-style-name: 箇条3;
474
496
  /* Clause 3 */
475
497
  mso-style-unhide: no;
@@ -499,7 +521,7 @@ h3 {
499
521
  /*mso-list:l10 level3 lfo13;*/
500
522
  mso-outline-level: 3; }
501
523
 
502
- .h4Annex, h4, .h4 {
524
+ .h5Annex, h4, .h4 {
503
525
  mso-style-name: 箇条4;
504
526
  /* Clause 4 */
505
527
  mso-style-unhide: no;
@@ -530,7 +552,7 @@ h4 {
530
552
  /*mso-list:l10 level4 lfo13;*/
531
553
  mso-outline-level: 4; }
532
554
 
533
- .h5Annex, h5, .h5 {
555
+ .h6Annex, h5, .h5 {
534
556
  mso-style-name: 箇条5;
535
557
  /* Clause 5 */
536
558
  mso-style-unhide: no;
@@ -1532,27 +1554,6 @@ p.MsoToaHeading, li.MsoToaHeading, div.MsoToaHeading {
1532
1554
  mso-ansi-language: EN-US;
1533
1555
  mso-fareast-language: JA; }
1534
1556
 
1535
- p.MsoListBullet, li.MsoListBullet, div.MsoListBullet {
1536
- mso-style-update: auto;
1537
- mso-style-unhide: no;
1538
- mso-style-next: 箇条7;
1539
- margin-top: 0cm;
1540
- margin-right: 0cm;
1541
- margin-bottom: 0cm;
1542
- margin-left: 18.0pt;
1543
- text-align: justify;
1544
- text-justify: inter-ideograph;
1545
- text-indent: 0cm;
1546
- mso-pagination: none;
1547
- mso-list: l9 level1 lfo8;
1548
- tab-stops: list 18.0pt;
1549
- font-size: {{normalfontsize}};
1550
- font-family: "Times New Roman",serif;
1551
- mso-fareast-font-family: {{bodyfont}};
1552
- mso-font-kerning: 1.0pt;
1553
- mso-ansi-language: EN-US;
1554
- mso-fareast-language: JA; }
1555
-
1556
1557
  p.MsoListNumber, li.MsoListNumber, div.MsoListNumber {
1557
1558
  mso-style-unhide: no;
1558
1559
  mso-style-next: 箇条5;
@@ -1703,78 +1704,6 @@ p.MsoList6, li.MsoList6, div.MsoList6 {
1703
1704
  mso-fareast-language: JA;
1704
1705
  mso-no-proof: yes; }
1705
1706
 
1706
- p.MsoListBullet2, li.MsoListBullet2, div.MsoListBullet2 {
1707
- mso-style-update: auto;
1708
- mso-style-unhide: no;
1709
- mso-style-next: 規格名称;
1710
- margin: 0cm;
1711
- text-align: justify;
1712
- text-justify: inter-ideograph;
1713
- text-indent: 0cm;
1714
- mso-pagination: none;
1715
- mso-list: l7 level1 lfo9;
1716
- tab-stops: list 39.25pt;
1717
- font-size: {{normalfontsize}};
1718
- font-family: "Times New Roman",serif;
1719
- mso-fareast-font-family: {{bodyfont}};
1720
- mso-font-kerning: 1.0pt;
1721
- mso-ansi-language: EN-US;
1722
- mso-fareast-language: JA; }
1723
-
1724
- p.MsoListBullet3, li.MsoListBullet3, div.MsoListBullet3 {
1725
- mso-style-update: auto;
1726
- mso-style-unhide: no;
1727
- mso-style-next: 規格名称(英語);
1728
- margin: 0cm;
1729
- text-align: justify;
1730
- text-justify: inter-ideograph;
1731
- text-indent: 0cm;
1732
- mso-pagination: none;
1733
- mso-list: l6 level1 lfo10;
1734
- tab-stops: list 60.55pt;
1735
- font-size: {{normalfontsize}};
1736
- font-family: "Times New Roman",serif;
1737
- mso-fareast-font-family: {{bodyfont}};
1738
- mso-font-kerning: 1.0pt;
1739
- mso-ansi-language: EN-US;
1740
- mso-fareast-language: JA; }
1741
-
1742
- p.MsoListBullet4, li.MsoListBullet4, div.MsoListBullet4 {
1743
- mso-style-update: auto;
1744
- mso-style-unhide: no;
1745
- mso-style-next: 段落;
1746
- margin: 0cm;
1747
- text-align: justify;
1748
- text-justify: inter-ideograph;
1749
- text-indent: 0cm;
1750
- mso-pagination: none;
1751
- mso-list: l5 level1 lfo11;
1752
- tab-stops: list 81.8pt;
1753
- font-size: {{normalfontsize}};
1754
- font-family: "Times New Roman",serif;
1755
- mso-fareast-font-family: {{bodyfont}};
1756
- mso-font-kerning: 1.0pt;
1757
- mso-ansi-language: EN-US;
1758
- mso-fareast-language: JA; }
1759
-
1760
- p.MsoListBullet5, li.MsoListBullet5, div.MsoListBullet5 {
1761
- mso-style-update: auto;
1762
- mso-style-unhide: no;
1763
- mso-style-next: 罫線段落;
1764
- margin: 0cm;
1765
- text-align: justify;
1766
- text-justify: inter-ideograph;
1767
- text-indent: 0cm;
1768
- mso-pagination: none;
1769
- mso-list: l4 level1 lfo12;
1770
- tab-stops: list 103.05pt;
1771
- font-size: {{normalfontsize}};
1772
- font-family: "Times New Roman",serif;
1773
- mso-fareast-font-family: {{bodyfont}};
1774
- mso-font-kerning: 1.0pt;
1775
- mso-ansi-language: EN-US;
1776
- mso-fareast-language: JA; }
1777
-
1778
1707
  p.MsoListNumber2, li.MsoListNumber2, div.MsoListNumber2 {
1779
1708
  mso-style-unhide: no;
1780
1709
  mso-style-next: 規格名称(英語);
@@ -2601,7 +2530,7 @@ div.WordSection3 {
2601
2530
  mso-level-text: "%1\)";
2602
2531
  mso-level-tab-stop: none;
2603
2532
  mso-level-number-position: left;
2604
- margin-left: 36.0pt;
2533
+ margin-left: 18.0pt;
2605
2534
  text-indent: -18.0pt; }
2606
2535
 
2607
2536
  @list l8:level2 {
@@ -2612,15 +2541,15 @@ div.WordSection3 {
2612
2541
  text-indent: -18.0pt; }
2613
2542
 
2614
2543
  @list l8:level3 {
2615
- mso-level-text: "%2.%3\)";
2544
+ mso-level-text: "%2\.%3\)";
2616
2545
  mso-level-tab-stop: none;
2617
2546
  mso-level-number-position: right;
2618
2547
  margin-left: 72.0pt;
2619
2548
  text-indent: -18.0pt; }
2620
2549
 
2621
2550
  @list l8:level4 {
2622
- mso-level-tab-stop: none;
2623
2551
  mso-level-text: "%4\)";
2552
+ mso-level-tab-stop: none;
2624
2553
  mso-level-number-position: left;
2625
2554
  margin-left: 90.0pt;
2626
2555
  text-indent: -18.0pt; }
@@ -2642,8 +2571,8 @@ div.WordSection3 {
2642
2571
  text-indent: -18.0pt; }
2643
2572
 
2644
2573
  @list l8:level7 {
2645
- mso-level-tab-stop: none;
2646
2574
  mso-level-text: "%7\)";
2575
+ mso-level-tab-stop: none;
2647
2576
  mso-level-number-position: left;
2648
2577
  margin-left: 144.0pt;
2649
2578
  text-indent: -18.0pt; }
@@ -2666,13 +2595,12 @@ div.WordSection3 {
2666
2595
 
2667
2596
  @list l9 {
2668
2597
  mso-list-id: -119;
2669
- mso-list-type: simple;
2670
2598
  mso-list-template-ids: -859032142; }
2671
2599
 
2672
2600
  @list l9:level1 {
2673
2601
  mso-level-start-at: 0;
2674
2602
  mso-level-number-format: bullet;
2675
- mso-level-text: ;
2603
+ mso-level-text: ;
2676
2604
  mso-level-tab-stop: none;
2677
2605
  mso-level-number-position: left;
2678
2606
  margin-left: 36.0pt;
@@ -2683,12 +2611,12 @@ div.WordSection3 {
2683
2611
 
2684
2612
  @list l9:level2 {
2685
2613
  mso-level-number-format: bullet;
2686
- mso-level-text: o;
2614
+ mso-level-text: ;
2687
2615
  mso-level-tab-stop: none;
2688
2616
  mso-level-number-position: left;
2689
2617
  margin-left: 54.0pt;
2690
2618
  text-indent: -18.0pt;
2691
- font-family: "Courier New"; }
2619
+ font-family: Symbol; }
2692
2620
 
2693
2621
  @list l9:level3 {
2694
2622
  mso-level-number-format: bullet;