metanorma-ieee 0.0.1 → 0.0.2
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/README.adoc +1 -1
- data/lib/html2doc/ieee/lists.rb +44 -0
- data/lib/html2doc/ieee/notes.rb +57 -0
- data/lib/html2doc/ieee.rb +4 -86
- data/lib/isodoc/ieee/base_convert.rb +56 -0
- data/lib/isodoc/ieee/html/header.html +1 -2
- data/lib/isodoc/ieee/html/html_ieee_titlepage.html +11 -0
- data/lib/isodoc/ieee/html/htmlstyle.css +2 -1
- data/lib/isodoc/ieee/html/htmlstyle.scss +1 -0
- data/lib/isodoc/ieee/html/ieee.css +23 -255
- data/lib/isodoc/ieee/html/ieee.scss +22 -239
- data/lib/isodoc/ieee/html/word_ieee_intro.html +1 -1
- data/lib/isodoc/ieee/html/wordstyle.css +20 -23
- data/lib/isodoc/ieee/html/wordstyle.scss +20 -17
- data/lib/isodoc/ieee/i18n-en.yaml +4 -0
- data/lib/isodoc/ieee/ieee.amendment.xsl +1835 -736
- data/lib/isodoc/ieee/ieee.standard.xsl +1835 -736
- data/lib/isodoc/ieee/metadata.rb +25 -4
- data/lib/isodoc/ieee/presentation_terms.rb +15 -2
- data/lib/isodoc/ieee/presentation_xml_convert.rb +85 -0
- data/lib/isodoc/ieee/word_authority.rb +54 -0
- data/lib/isodoc/ieee/word_cleanup.rb +55 -65
- data/lib/isodoc/ieee/word_cleanup_blocks.rb +151 -0
- data/lib/isodoc/ieee/word_convert.rb +86 -2
- data/lib/isodoc/ieee/xref.rb +31 -0
- data/lib/metanorma/ieee/boilerplate.xml +4 -4
- data/lib/metanorma/ieee/cleanup.rb +37 -73
- data/lib/metanorma/ieee/cleanup_ref.rb +117 -0
- data/lib/metanorma/ieee/front.rb +14 -10
- data/lib/metanorma/ieee/isodoc.rng +16 -0
- data/lib/metanorma/ieee/validate.rb +50 -6
- data/lib/metanorma/ieee/validate_section.rb +14 -7
- data/lib/metanorma/ieee/validate_style.rb +5 -1
- data/lib/metanorma/ieee/version.rb +1 -1
- data/lib/relaton/render/config.yml +44 -0
- data/lib/relaton/render/general.rb +13 -0
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62b3fb31f8a29788db44b8aefb6e0ba75b0d4da105b302c7d9e9d16f880edf25
|
4
|
+
data.tar.gz: 17249858abd09b880335dcaa870f65d3d63ea7498913a44684644248cefb0881
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42d3eadf027967c5c3aec693d6c83540fe4ee98bbe233e25dbc7baf4b3c1d6d67043e5772668fb704d2a27d5a801207c0df40b28f16adb7e4294d8cabc7912f9
|
7
|
+
data.tar.gz: 45d6313600eb090a0e74548089a2a2232f131c338b41bb212169a94b61ccf7bf95bff05c51d6056e7a6a2869589302f23a6db4f7f9854b2c2e85725827c75822
|
data/README.adoc
CHANGED
@@ -8,7 +8,7 @@ image:https://img.shields.io/github/commits-since/metanorma/metanorma-ieee/lates
|
|
8
8
|
|
9
9
|
== Functionality
|
10
10
|
|
11
|
-
This gem processes https://www.metanorma.com[Metanorma documents] following a template for generating
|
11
|
+
This gem processes https://www.metanorma.com[Metanorma documents] following a template for generating IEEE
|
12
12
|
standards and documents.
|
13
13
|
|
14
14
|
The implementation inherits from https://github.com/metanorma/metanorma-standoc.
|
@@ -0,0 +1,44 @@
|
|
1
|
+
class Html2Doc
|
2
|
+
class IEEE < ::Html2Doc
|
3
|
+
def style_list(elem, level, liststyle, listnumber)
|
4
|
+
super
|
5
|
+
elem.parent["level"] = level
|
6
|
+
end
|
7
|
+
|
8
|
+
def list2para(list)
|
9
|
+
return if list.xpath("./li").empty?
|
10
|
+
|
11
|
+
level = list["level"] || "1"
|
12
|
+
list.delete("level")
|
13
|
+
list2para1(list, level, list.name)
|
14
|
+
end
|
15
|
+
|
16
|
+
def list2para1(list, level, type)
|
17
|
+
list.xpath("./li").first["class"] ||= list_style(type, level, "First")
|
18
|
+
list.xpath("./li").last["class"] ||= list_style(type, level, "Last")
|
19
|
+
list.xpath("./li/p").each do |p|
|
20
|
+
p["class"] ||= list_style(type, level, "Middle")
|
21
|
+
end
|
22
|
+
list.xpath("./li").each do |l|
|
23
|
+
l.name = "p"
|
24
|
+
l["class"] ||= list_style(type, level, "Middle")
|
25
|
+
next unless l&.first_element_child&.name == "p"
|
26
|
+
|
27
|
+
l["style"] += (l.first_element_child["style"]&.sub(/mso-list[^;]+;/, "") || "")
|
28
|
+
l.first_element_child.replace(l.first_element_child.children)
|
29
|
+
end
|
30
|
+
list.replace(list.children)
|
31
|
+
end
|
32
|
+
|
33
|
+
def list_style(listtype, level, position)
|
34
|
+
case listtype
|
35
|
+
when "ol" then "IEEEStdsNumberedListLevel#{level}CxSp#{position}"
|
36
|
+
when "ul"
|
37
|
+
case level
|
38
|
+
when "1" then "IEEEStdsUnorderedListCxSp#{position}"
|
39
|
+
else "IEEEStdsUnorderedListLevel2"
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
class Html2Doc
|
2
|
+
class IEEE < ::Html2Doc
|
3
|
+
def process_footnote_texts(docxml, footnotes)
|
4
|
+
body = docxml.at("//body")
|
5
|
+
list = body.add_child("<div style='mso-element:footnote-list'/>")
|
6
|
+
footnotes.each_with_index do |f, i|
|
7
|
+
if i.zero?
|
8
|
+
fn = list.first.add_child(footnote_container_nofn(docxml, i + 1))
|
9
|
+
f.parent = fn.first
|
10
|
+
footnote_div_to_p_unstyled(f)
|
11
|
+
else
|
12
|
+
fn = list.first.add_child(footnote_container(docxml, i + 1))
|
13
|
+
f.parent = fn.first
|
14
|
+
footnote_div_to_p(f)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
footnote_cleanup(docxml)
|
18
|
+
end
|
19
|
+
|
20
|
+
def footnote_container_nofn(_docxml, idx)
|
21
|
+
<<~DIV
|
22
|
+
<div style='mso-element:footnote' id='ftn#{idx}'>
|
23
|
+
<a style='mso-footnote-id:ftn#{idx}' href='#_ftn#{idx}'
|
24
|
+
name='_ftnref#{idx}' title='' id='_ftnref#{idx}'></a></div>
|
25
|
+
DIV
|
26
|
+
end
|
27
|
+
|
28
|
+
def footnote_div_to_p_unstyled(elem)
|
29
|
+
if %w{div aside}.include? elem.name
|
30
|
+
if elem.at(".//p")
|
31
|
+
elem.replace(elem.children)
|
32
|
+
else
|
33
|
+
elem.name = "p"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def transform_footnote_text(note)
|
39
|
+
note["id"] = ""
|
40
|
+
note.xpath(".//div").each { |div| div.replace(div.children) }
|
41
|
+
note.xpath(".//aside | .//p").each do |p|
|
42
|
+
p.name = "p"
|
43
|
+
%w(IEEEStdsCRTextReg IEEEStdsCRTextItal).include?(p["class"]) or
|
44
|
+
p["class"] = "IEEEStdsFootnote"
|
45
|
+
end
|
46
|
+
note.remove
|
47
|
+
end
|
48
|
+
|
49
|
+
def cleanup(docxml)
|
50
|
+
super
|
51
|
+
docxml.xpath("//div[@class = 'Note']").each do |d|
|
52
|
+
d.delete("class")
|
53
|
+
end
|
54
|
+
docxml
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
data/lib/html2doc/ieee.rb
CHANGED
@@ -1,89 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
def process_footnote_texts(docxml, footnotes)
|
4
|
-
body = docxml.at("//body")
|
5
|
-
list = body.add_child("<div style='mso-element:footnote-list'/>")
|
6
|
-
footnotes.each_with_index do |f, i|
|
7
|
-
if i.zero?
|
8
|
-
fn = list.first.add_child(footnote_container_nofn(docxml, i + 1))
|
9
|
-
f.parent = fn.first
|
10
|
-
footnote_div_to_p_unstyled(f)
|
11
|
-
else
|
12
|
-
fn = list.first.add_child(footnote_container(docxml, i + 1))
|
13
|
-
f.parent = fn.first
|
14
|
-
footnote_div_to_p(f)
|
15
|
-
end
|
16
|
-
end
|
17
|
-
footnote_cleanup(docxml)
|
18
|
-
end
|
19
|
-
|
20
|
-
def footnote_container_nofn(_docxml, idx)
|
21
|
-
<<~DIV
|
22
|
-
<div style='mso-element:footnote' id='ftn#{idx}'>
|
23
|
-
<a style='mso-footnote-id:ftn#{idx}' href='#_ftn#{idx}'
|
24
|
-
name='_ftnref#{idx}' title='' id='_ftnref#{idx}'></a></div>
|
25
|
-
DIV
|
26
|
-
end
|
27
|
-
|
28
|
-
def footnote_div_to_p_unstyled(elem)
|
29
|
-
if %w{div aside}.include? elem.name
|
30
|
-
if elem.at(".//p")
|
31
|
-
elem.replace(elem.children)
|
32
|
-
else
|
33
|
-
elem.name = "p"
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
def transform_footnote_text(note)
|
39
|
-
note["id"] = ""
|
40
|
-
note.xpath(".//div").each { |div| div.replace(div.children) }
|
41
|
-
note.xpath(".//aside | .//p").each do |p|
|
42
|
-
p.name = "p"
|
43
|
-
%w(IEEEStdsCRTextReg IEEEStdsCRTextItal).include?(p["class"]) or
|
44
|
-
p["class"] = "IEEEStdsFootnote"
|
45
|
-
end
|
46
|
-
note.remove
|
47
|
-
end
|
1
|
+
require "html2doc/ieee/notes"
|
2
|
+
require "html2doc/ieee/lists"
|
48
3
|
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
if list.name == "ol"
|
53
|
-
list2para_ol(list)
|
54
|
-
else
|
55
|
-
list2para_ul(list)
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
def list2para_ul(list)
|
60
|
-
list.xpath("./li").first["class"] ||= "IEEEStdsUnorderedListCxSpFirst"
|
61
|
-
list.xpath("./li").last["class"] ||= "IEEEStdsUnorderedListCxSpLast"
|
62
|
-
list.xpath("./li/p").each do |p|
|
63
|
-
p["class"] ||= "IEEEStdsUnorderedListCxSpMiddle"
|
64
|
-
end
|
65
|
-
list.xpath("./li").each do |l|
|
66
|
-
l.name = "p"
|
67
|
-
l["class"] ||= "IEEEStdsUnorderedListCxSpMiddle"
|
68
|
-
l&.first_element_child&.name == "p" and
|
69
|
-
l.first_element_child.replace(l.first_element_child.children)
|
70
|
-
end
|
71
|
-
list.replace(list.children)
|
72
|
-
end
|
73
|
-
|
74
|
-
def list2para_ol(list)
|
75
|
-
list.xpath("./li").first["class"] ||= "IEEEStdsNumberedListLevel1CxSpFirst"
|
76
|
-
list.xpath("./li").last["class"] ||= "IEEEStdsNumberedListLevel1CxSpLast"
|
77
|
-
list.xpath("./li/p").each do |p|
|
78
|
-
p["class"] ||= "IEEEStdsNumberedListLevel1CxSpMiddle"
|
79
|
-
end
|
80
|
-
list.xpath("./li").each do |l|
|
81
|
-
l.name = "p"
|
82
|
-
l["class"] ||= "IEEEStdsNumberedListLevel1CxSpMiddle"
|
83
|
-
l&.first_element_child&.name == "p" and
|
84
|
-
l.first_element_child.replace(l.first_element_child.children)
|
85
|
-
end
|
86
|
-
list.replace(list.children)
|
87
|
-
end
|
4
|
+
class Html2Doc
|
5
|
+
class IEEE
|
88
6
|
end
|
89
7
|
end
|
@@ -28,6 +28,62 @@ module IsoDoc
|
|
28
28
|
def para_attrs(node)
|
29
29
|
super.merge(type: node["type"])
|
30
30
|
end
|
31
|
+
|
32
|
+
def note_delim
|
33
|
+
"—"
|
34
|
+
end
|
35
|
+
|
36
|
+
def note_p_parse(node, div)
|
37
|
+
name = node&.at(ns("./name"))&.remove
|
38
|
+
div.p do |p|
|
39
|
+
name and p.span **{ class: "note_label" } do |s|
|
40
|
+
name.children.each { |n| parse(n, s) }
|
41
|
+
s << note_delim
|
42
|
+
end
|
43
|
+
node.first_element_child.children.each { |n| parse(n, p) }
|
44
|
+
end
|
45
|
+
node.element_children[1..-1].each { |n| parse(n, div) }
|
46
|
+
end
|
47
|
+
|
48
|
+
def note_parse1(node, div)
|
49
|
+
name = node&.at(ns("./name"))&.remove
|
50
|
+
name and div.p do |p|
|
51
|
+
p.span **{ class: "note_label" } do |s|
|
52
|
+
name.children.each { |n| parse(n, s) }
|
53
|
+
s << note_delim
|
54
|
+
end
|
55
|
+
end
|
56
|
+
node.children.each { |n| parse(n, div) }
|
57
|
+
end
|
58
|
+
|
59
|
+
def termnote_delim
|
60
|
+
"—"
|
61
|
+
end
|
62
|
+
|
63
|
+
def formula_where(dlist, out)
|
64
|
+
return unless dlist
|
65
|
+
|
66
|
+
parse(dlist, out)
|
67
|
+
out.parent.at("./dl")["class"] = "formula_dl"
|
68
|
+
end
|
69
|
+
|
70
|
+
def bracket_if_num(num)
|
71
|
+
return nil if num.nil?
|
72
|
+
|
73
|
+
num = num.text.sub(/^\[/, "").sub(/\]$/, "")
|
74
|
+
return "[#{num}]" if /^B?\d+$/.match?(num)
|
75
|
+
|
76
|
+
num
|
77
|
+
end
|
78
|
+
|
79
|
+
def example_label(_node, div, name)
|
80
|
+
return if name.nil?
|
81
|
+
|
82
|
+
name << ":"
|
83
|
+
div.p **{ class: "example-title" } do |p|
|
84
|
+
name.children.each { |n| parse(n, p) }
|
85
|
+
end
|
86
|
+
end
|
31
87
|
end
|
32
88
|
end
|
33
89
|
end
|
@@ -62,8 +62,7 @@ xmlns="http://www.w3.org/TR/REC-html40">
|
|
62
62
|
<p class=MsoHeader><span lang=EN-US>P{{ docnumeric }}{% if draft %}/D{{ draft }},
|
63
63
|
{{ draft_month }} {{ draft_year }}{% endif %}</span></p>
|
64
64
|
|
65
|
-
<p class=MsoHeader><span lang=EN-US>{
|
66
|
-
{{ doctitle }}</span></p>
|
65
|
+
<p class=MsoHeader><span lang=EN-US>{{ full_doctitle }}</span></p>
|
67
66
|
|
68
67
|
</div>
|
69
68
|
|
@@ -8,6 +8,17 @@
|
|
8
8
|
{% if doctitlecorrlabel %}
|
9
9
|
<div class="doctitle-part">{{ doctitlecorrlabel }}</div>
|
10
10
|
{% endif %}
|
11
|
+
{%if updates or merges %}
|
12
|
+
<div class="doctitle-part">(Revision of {{ updates | join: ", " }}<br/>Incorporating {{ merges | join: ", " }})</div>
|
13
|
+
{%else%}
|
14
|
+
{%if updates %}
|
15
|
+
<div class="doctitle-part">(Revision of {{ updates | join: ", " }})</div>
|
16
|
+
{%else%}
|
17
|
+
{%if merges %}
|
18
|
+
<div class="doctitle-part">(Incorporating {{ merges | join: ", " }})</div>
|
19
|
+
{%endif%}
|
20
|
+
{%endif%}
|
21
|
+
{%endif%}
|
11
22
|
</div>
|
12
23
|
|
13
24
|
<div><p>Developed by the</p>
|
@@ -102,20 +102,6 @@ p.IEEEStdsTitleDraftCRBody, li.IEEEStdsTitleDraftCRBody, div.IEEEStdsTitleDraftC
|
|
102
102
|
mso-fareast-language: JA;
|
103
103
|
mso-no-proof: yes; }
|
104
104
|
|
105
|
-
p.IEEEStdsSans-Serif, li.IEEEStdsSans-Serif, div.IEEEStdsSans-Serif {
|
106
|
-
mso-style-name: "IEEEStds Sans-Serif";
|
107
|
-
mso-style-unhide: no;
|
108
|
-
mso-style-parent: "";
|
109
|
-
margin: 0cm;
|
110
|
-
text-align: justify;
|
111
|
-
mso-pagination: widow-orphan;
|
112
|
-
font-size: {{smallerfontsize}};
|
113
|
-
font-family: {{headerfont}};
|
114
|
-
mso-fareast-font-family: "Times New Roman";
|
115
|
-
mso-bidi-font-family: "Times New Roman";
|
116
|
-
mso-ansi-language: EN-US;
|
117
|
-
mso-fareast-language: JA; }
|
118
|
-
|
119
105
|
p.IEEEStdsKeywords, li.IEEEStdsKeywords, div.IEEEStdsKeywords {
|
120
106
|
mso-style-name: "IEEEStds Keywords";
|
121
107
|
mso-style-unhide: no;
|
@@ -808,6 +794,28 @@ p.IEEEStdsWarning, li.IEEEStdsWarning, div.IEEEStdsWarning {
|
|
808
794
|
mso-ansi-language: EN-US;
|
809
795
|
mso-fareast-language: JA; }
|
810
796
|
|
797
|
+
p.zzHelp, li.zzHelp, div.zzHelp {
|
798
|
+
mso-style-name: "zzHelp";
|
799
|
+
mso-style-unhide: no;
|
800
|
+
mso-style-parent: "IEEEStds Paragraph";
|
801
|
+
mso-style-next: "IEEEStds Paragraph";
|
802
|
+
margin-top: 0cm;
|
803
|
+
margin-right: 0cm;
|
804
|
+
margin-bottom: 6.0pt;
|
805
|
+
margin-left: 0cm;
|
806
|
+
text-align: center;
|
807
|
+
mso-pagination: widow-orphan lines-together;
|
808
|
+
border: none;
|
809
|
+
color: green;
|
810
|
+
mso-border-alt: solid windowtext 1.0pt;
|
811
|
+
padding: 0cm;
|
812
|
+
mso-padding-alt: 4.0pt 4.0pt 4.0pt 4.0pt;
|
813
|
+
font-size: {{smallerfontsize}};
|
814
|
+
font-family: {{bodyfont}};
|
815
|
+
mso-fareast-font-family: "Times New Roman";
|
816
|
+
mso-ansi-language: EN-US;
|
817
|
+
mso-fareast-language: JA; }
|
818
|
+
|
811
819
|
p.IEEEStdsBibliographicEntry, li.IEEEStdsBibliographicEntry, div.IEEEStdsBibliographicEntry {
|
812
820
|
mso-style-name: "IEEEStds Bibliographic Entry";
|
813
821
|
mso-style-unhide: no;
|
@@ -1212,13 +1220,6 @@ span.IEEEStdsAbstractHeader {
|
|
1212
1220
|
font-weight: bold;
|
1213
1221
|
mso-bidi-font-weight: normal; }
|
1214
1222
|
|
1215
|
-
span.IEEEStdsDefTermsNumbers {
|
1216
|
-
mso-style-name: "IEEEStds DefTerms+Numbers";
|
1217
|
-
mso-style-unhide: no;
|
1218
|
-
mso-style-parent: "";
|
1219
|
-
font-weight: bold;
|
1220
|
-
mso-bidi-font-weight: normal; }
|
1221
|
-
|
1222
1223
|
p.IEEEStdsTableColumnHead, li.IEEEStdsTableColumnHead, div.IEEEStdsTableColumnHead {
|
1223
1224
|
mso-style-name: "IEEEStds Table Column Head";
|
1224
1225
|
mso-style-unhide: no;
|
@@ -1485,13 +1486,6 @@ p.IEEEStdsCRTextItal, li.IEEEStdsCRTextItal, div.IEEEStdsCRTextItal {
|
|
1485
1486
|
font-style: italic;
|
1486
1487
|
mso-bidi-font-style: normal; }
|
1487
1488
|
|
1488
|
-
span.IEEEStdsParaBold {
|
1489
|
-
mso-style-name: "IEEEStds ParaBold";
|
1490
|
-
mso-style-unhide: no;
|
1491
|
-
mso-style-parent: "";
|
1492
|
-
font-weight: bold;
|
1493
|
-
mso-bidi-font-weight: normal; }
|
1494
|
-
|
1495
1489
|
span.DeltaViewInsertion {
|
1496
1490
|
mso-style-name: "DeltaView Insertion";
|
1497
1491
|
mso-style-priority: 99;
|
@@ -1576,26 +1570,6 @@ p.IEEEStdsNamesCtrCxSpLast, li.IEEEStdsNamesCtrCxSpLast, div.IEEEStdsNamesCtrCxS
|
|
1576
1570
|
mso-ansi-language: EN-US;
|
1577
1571
|
mso-fareast-language: JA; }
|
1578
1572
|
|
1579
|
-
p.IEEEStdsInstrCallout, li.IEEEStdsInstrCallout, div.IEEEStdsInstrCallout {
|
1580
|
-
mso-style-name: "IEEEStds InstrCallout";
|
1581
|
-
mso-style-unhide: no;
|
1582
|
-
mso-style-parent: "IEEEStds Paragraph";
|
1583
|
-
margin-top: 0cm;
|
1584
|
-
margin-right: 0cm;
|
1585
|
-
margin-bottom: 12.0pt;
|
1586
|
-
margin-left: 0cm;
|
1587
|
-
text-align: justify;
|
1588
|
-
mso-pagination: widow-orphan;
|
1589
|
-
font-size: {{smallerfontsize}};
|
1590
|
-
font-family: {{bodyfont}};
|
1591
|
-
mso-fareast-font-family: "Times New Roman";
|
1592
|
-
mso-ansi-language: EN-US;
|
1593
|
-
mso-fareast-language: JA;
|
1594
|
-
font-weight: bold;
|
1595
|
-
mso-bidi-font-weight: normal;
|
1596
|
-
font-style: italic;
|
1597
|
-
mso-bidi-font-style: normal; }
|
1598
|
-
|
1599
1573
|
p.IEEEStdsParaMemEmeritus, li.IEEEStdsParaMemEmeritus, div.IEEEStdsParaMemEmeritus {
|
1600
1574
|
mso-style-name: "IEEEStds ParaMemEmeritus";
|
1601
1575
|
mso-style-unhide: no;
|
@@ -1613,111 +1587,6 @@ p.IEEEStdsParaMemEmeritus, li.IEEEStdsParaMemEmeritus, div.IEEEStdsParaMemEmerit
|
|
1613
1587
|
mso-ansi-language: EN-US;
|
1614
1588
|
mso-fareast-language: JA; }
|
1615
1589
|
|
1616
|
-
p.IEEEStdsNonVoting, li.IEEEStdsNonVoting, div.IEEEStdsNonVoting {
|
1617
|
-
mso-style-name: "IEEEStds NonVoting";
|
1618
|
-
mso-style-unhide: no;
|
1619
|
-
mso-style-parent: "IEEEStds NamesCtr";
|
1620
|
-
margin-top: 0cm;
|
1621
|
-
margin-right: 0cm;
|
1622
|
-
margin-bottom: 12.0pt;
|
1623
|
-
margin-left: 0cm;
|
1624
|
-
mso-add-space: auto;
|
1625
|
-
text-align: center;
|
1626
|
-
mso-pagination: widow-orphan;
|
1627
|
-
font-size: 9.0pt;
|
1628
|
-
mso-bidi-font-size: 10.0pt;
|
1629
|
-
font-family: {{bodyfont}};
|
1630
|
-
mso-fareast-font-family: "Times New Roman";
|
1631
|
-
mso-ansi-language: EN-US;
|
1632
|
-
mso-fareast-language: JA; }
|
1633
|
-
|
1634
|
-
p.IEEEStdsNonVotingCxSpFirst, li.IEEEStdsNonVotingCxSpFirst, div.IEEEStdsNonVotingCxSpFirst {
|
1635
|
-
mso-style-name: "IEEEStds NonVotingCxSpFirst";
|
1636
|
-
mso-style-unhide: no;
|
1637
|
-
mso-style-parent: "IEEEStds NamesCtr";
|
1638
|
-
mso-style-type: export-only;
|
1639
|
-
margin: 0cm;
|
1640
|
-
margin-bottom: .0001pt;
|
1641
|
-
mso-add-space: auto;
|
1642
|
-
text-align: center;
|
1643
|
-
mso-pagination: widow-orphan;
|
1644
|
-
font-size: 9.0pt;
|
1645
|
-
mso-bidi-font-size: 10.0pt;
|
1646
|
-
font-family: {{bodyfont}};
|
1647
|
-
mso-fareast-font-family: "Times New Roman";
|
1648
|
-
mso-ansi-language: EN-US;
|
1649
|
-
mso-fareast-language: JA; }
|
1650
|
-
|
1651
|
-
p.IEEEStdsNonVotingCxSpMiddle, li.IEEEStdsNonVotingCxSpMiddle, div.IEEEStdsNonVotingCxSpMiddle {
|
1652
|
-
mso-style-name: "IEEEStds NonVotingCxSpMiddle";
|
1653
|
-
mso-style-unhide: no;
|
1654
|
-
mso-style-parent: "IEEEStds NamesCtr";
|
1655
|
-
mso-style-type: export-only;
|
1656
|
-
margin: 0cm;
|
1657
|
-
margin-bottom: .0001pt;
|
1658
|
-
mso-add-space: auto;
|
1659
|
-
text-align: center;
|
1660
|
-
mso-pagination: widow-orphan;
|
1661
|
-
font-size: 9.0pt;
|
1662
|
-
mso-bidi-font-size: 10.0pt;
|
1663
|
-
font-family: {{bodyfont}};
|
1664
|
-
mso-fareast-font-family: "Times New Roman";
|
1665
|
-
mso-ansi-language: EN-US;
|
1666
|
-
mso-fareast-language: JA; }
|
1667
|
-
|
1668
|
-
p.IEEEStdsNonVotingCxSpLast, li.IEEEStdsNonVotingCxSpLast, div.IEEEStdsNonVotingCxSpLast {
|
1669
|
-
mso-style-name: "IEEEStds NonVotingCxSpLast";
|
1670
|
-
mso-style-unhide: no;
|
1671
|
-
mso-style-parent: "IEEEStds NamesCtr";
|
1672
|
-
mso-style-type: export-only;
|
1673
|
-
margin-top: 0cm;
|
1674
|
-
margin-right: 0cm;
|
1675
|
-
margin-bottom: 12.0pt;
|
1676
|
-
margin-left: 0cm;
|
1677
|
-
mso-add-space: auto;
|
1678
|
-
text-align: center;
|
1679
|
-
mso-pagination: widow-orphan;
|
1680
|
-
font-size: 9.0pt;
|
1681
|
-
mso-bidi-font-size: 10.0pt;
|
1682
|
-
font-family: {{bodyfont}};
|
1683
|
-
mso-fareast-font-family: "Times New Roman";
|
1684
|
-
mso-ansi-language: EN-US;
|
1685
|
-
mso-fareast-language: JA; }
|
1686
|
-
|
1687
|
-
p.IEEEStdsTitlePgHead, li.IEEEStdsTitlePgHead, div.IEEEStdsTitlePgHead {
|
1688
|
-
mso-style-name: "IEEEStds TitlePgHead";
|
1689
|
-
mso-style-unhide: no;
|
1690
|
-
mso-style-parent: Header;
|
1691
|
-
margin: 0cm;
|
1692
|
-
text-align: right;
|
1693
|
-
mso-pagination: none;
|
1694
|
-
font-size: 11.0pt;
|
1695
|
-
mso-bidi-font-size: 10.0pt;
|
1696
|
-
font-family: {{headerfont}};
|
1697
|
-
mso-fareast-font-family: "Arial Unicode MS";
|
1698
|
-
mso-bidi-font-family: "Times New Roman";
|
1699
|
-
mso-ansi-language: EN-US;
|
1700
|
-
mso-fareast-language: JA;
|
1701
|
-
font-weight: bold;
|
1702
|
-
mso-bidi-font-weight: normal;
|
1703
|
-
mso-no-proof: yes; }
|
1704
|
-
|
1705
|
-
p.IEEEStdsTitlePgHeadRev, li.IEEEStdsTitlePgHeadRev, div.IEEEStdsTitlePgHeadRev {
|
1706
|
-
mso-style-name: "IEEEStds TitlePgHeadRev";
|
1707
|
-
mso-style-unhide: no;
|
1708
|
-
mso-style-parent: "IEEEStds TitlePgHead";
|
1709
|
-
margin: 0cm;
|
1710
|
-
text-align: right;
|
1711
|
-
mso-pagination: none;
|
1712
|
-
font-size: 9.0pt;
|
1713
|
-
mso-bidi-font-size: 10.0pt;
|
1714
|
-
font-family: {{headerfont}};
|
1715
|
-
mso-fareast-font-family: "Arial Unicode MS";
|
1716
|
-
mso-bidi-font-family: "Times New Roman";
|
1717
|
-
mso-ansi-language: EN-US;
|
1718
|
-
mso-fareast-language: JA;
|
1719
|
-
mso-no-proof: yes; }
|
1720
|
-
|
1721
1590
|
p.IEEEStdsCopyrightaddrs, li.IEEEStdsCopyrightaddrs, div.IEEEStdsCopyrightaddrs {
|
1722
1591
|
mso-style-name: "IEEEStds Copyright \(addrs\)";
|
1723
1592
|
mso-style-unhide: no;
|
@@ -1730,107 +1599,6 @@ p.IEEEStdsCopyrightaddrs, li.IEEEStdsCopyrightaddrs, div.IEEEStdsCopyrightaddrs
|
|
1730
1599
|
mso-fareast-language: JA;
|
1731
1600
|
mso-no-proof: yes; }
|
1732
1601
|
|
1733
|
-
span.IEEEStdsAddItal {
|
1734
|
-
mso-style-name: "IEEEStds AddItal";
|
1735
|
-
mso-style-unhide: no;
|
1736
|
-
mso-style-parent: "";
|
1737
|
-
font-style: italic;
|
1738
|
-
mso-bidi-font-style: normal; }
|
1739
|
-
|
1740
|
-
p.IEEEStdsPara85, li.IEEEStdsPara85, div.IEEEStdsPara85 {
|
1741
|
-
mso-style-name: "IEEEStds Para8\.5";
|
1742
|
-
mso-style-unhide: no;
|
1743
|
-
mso-style-parent: "IEEEStds Paragraph";
|
1744
|
-
margin-top: 0cm;
|
1745
|
-
margin-right: 0cm;
|
1746
|
-
margin-bottom: 12.0pt;
|
1747
|
-
margin-left: 0cm;
|
1748
|
-
text-align: justify;
|
1749
|
-
mso-pagination: widow-orphan;
|
1750
|
-
font-size: 8.5pt;
|
1751
|
-
mso-bidi-font-size: 10.0pt;
|
1752
|
-
font-family: {{bodyfont}};
|
1753
|
-
mso-fareast-font-family: "Times New Roman";
|
1754
|
-
mso-ansi-language: EN-US;
|
1755
|
-
mso-fareast-language: JA; }
|
1756
|
-
|
1757
|
-
p.IEEEStdsPara85Indent, li.IEEEStdsPara85Indent, div.IEEEStdsPara85Indent {
|
1758
|
-
mso-style-name: "IEEEStds Para8\.5 Indent";
|
1759
|
-
mso-style-unhide: no;
|
1760
|
-
mso-style-parent: "IEEEStds Para8\.5";
|
1761
|
-
margin-top: 0cm;
|
1762
|
-
margin-right: 0cm;
|
1763
|
-
margin-bottom: 12.0pt;
|
1764
|
-
margin-left: 108.0pt;
|
1765
|
-
mso-add-space: auto;
|
1766
|
-
text-align: justify;
|
1767
|
-
mso-pagination: widow-orphan;
|
1768
|
-
font-size: 8.5pt;
|
1769
|
-
mso-bidi-font-size: 10.0pt;
|
1770
|
-
font-family: {{bodyfont}};
|
1771
|
-
mso-fareast-font-family: "Times New Roman";
|
1772
|
-
mso-ansi-language: EN-US;
|
1773
|
-
mso-fareast-language: JA; }
|
1774
|
-
|
1775
|
-
p.IEEEStdsPara85IndentCxSpFirst, li.IEEEStdsPara85IndentCxSpFirst, div.IEEEStdsPara85IndentCxSpFirst {
|
1776
|
-
mso-style-name: "IEEEStds Para8\.5 IndentCxSpFirst";
|
1777
|
-
mso-style-unhide: no;
|
1778
|
-
mso-style-parent: "IEEEStds Para8\.5";
|
1779
|
-
mso-style-type: export-only;
|
1780
|
-
margin-top: 0cm;
|
1781
|
-
margin-right: 0cm;
|
1782
|
-
margin-bottom: 0cm;
|
1783
|
-
margin-left: 108.0pt;
|
1784
|
-
margin-bottom: .0001pt;
|
1785
|
-
mso-add-space: auto;
|
1786
|
-
text-align: justify;
|
1787
|
-
mso-pagination: widow-orphan;
|
1788
|
-
font-size: 8.5pt;
|
1789
|
-
mso-bidi-font-size: 10.0pt;
|
1790
|
-
font-family: {{bodyfont}};
|
1791
|
-
mso-fareast-font-family: "Times New Roman";
|
1792
|
-
mso-ansi-language: EN-US;
|
1793
|
-
mso-fareast-language: JA; }
|
1794
|
-
|
1795
|
-
p.IEEEStdsPara85IndentCxSpMiddle, li.IEEEStdsPara85IndentCxSpMiddle, div.IEEEStdsPara85IndentCxSpMiddle {
|
1796
|
-
mso-style-name: "IEEEStds Para8\.5 IndentCxSpMiddle";
|
1797
|
-
mso-style-unhide: no;
|
1798
|
-
mso-style-parent: "IEEEStds Para8\.5";
|
1799
|
-
mso-style-type: export-only;
|
1800
|
-
margin-top: 0cm;
|
1801
|
-
margin-right: 0cm;
|
1802
|
-
margin-bottom: 0cm;
|
1803
|
-
margin-left: 108.0pt;
|
1804
|
-
margin-bottom: .0001pt;
|
1805
|
-
mso-add-space: auto;
|
1806
|
-
text-align: justify;
|
1807
|
-
mso-pagination: widow-orphan;
|
1808
|
-
font-size: 8.5pt;
|
1809
|
-
mso-bidi-font-size: 10.0pt;
|
1810
|
-
font-family: {{bodyfont}};
|
1811
|
-
mso-fareast-font-family: "Times New Roman";
|
1812
|
-
mso-ansi-language: EN-US;
|
1813
|
-
mso-fareast-language: JA; }
|
1814
|
-
|
1815
|
-
p.IEEEStdsPara85IndentCxSpLast, li.IEEEStdsPara85IndentCxSpLast, div.IEEEStdsPara85IndentCxSpLast {
|
1816
|
-
mso-style-name: "IEEEStds Para8\.5 IndentCxSpLast";
|
1817
|
-
mso-style-unhide: no;
|
1818
|
-
mso-style-parent: "IEEEStds Para8\.5";
|
1819
|
-
mso-style-type: export-only;
|
1820
|
-
margin-top: 0cm;
|
1821
|
-
margin-right: 0cm;
|
1822
|
-
margin-bottom: 12.0pt;
|
1823
|
-
margin-left: 108.0pt;
|
1824
|
-
mso-add-space: auto;
|
1825
|
-
text-align: justify;
|
1826
|
-
mso-pagination: widow-orphan;
|
1827
|
-
font-size: 8.5pt;
|
1828
|
-
mso-bidi-font-size: 10.0pt;
|
1829
|
-
font-family: {{bodyfont}};
|
1830
|
-
mso-fareast-font-family: "Times New Roman";
|
1831
|
-
mso-ansi-language: EN-US;
|
1832
|
-
mso-fareast-language: JA; }
|
1833
|
-
|
1834
1602
|
p.IEEEStdsLevel2frontmatter, li.IEEEStdsLevel2frontmatter, div.IEEEStdsLevel2frontmatter {
|
1835
1603
|
mso-style-name: "IEEEStds Level 2 \(front matter\)";
|
1836
1604
|
mso-style-unhide: no;
|
@@ -1841,7 +1609,7 @@ p.IEEEStdsLevel2frontmatter, li.IEEEStdsLevel2frontmatter, div.IEEEStdsLevel2fro
|
|
1841
1609
|
margin-left: 0cm;
|
1842
1610
|
mso-pagination: widow-orphan lines-together;
|
1843
1611
|
page-break-after: avoid;
|
1844
|
-
mso-outline-level:
|
1612
|
+
/*mso-outline-level:2;*/
|
1845
1613
|
mso-hyphenate: none;
|
1846
1614
|
font-size: 11.0pt;
|
1847
1615
|
mso-bidi-font-size: 10.0pt;
|