metanorma-nist 1.2.1 → 1.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +44 -0
- data/README.adoc +14 -0
- data/lib/asciidoctor/nist/basicdoc.rng +23 -0
- data/lib/asciidoctor/nist/converter.rb +13 -2
- data/lib/asciidoctor/nist/front.rb +0 -4
- data/lib/asciidoctor/nist/isodoc.rng +125 -58
- data/lib/asciidoctor/nist/nist.rng +26 -1
- data/lib/isodoc/nist/base_convert.rb +26 -15
- data/lib/isodoc/nist/html/htmlstyle.css +5 -1
- data/lib/isodoc/nist/html/nist.css +22 -10
- data/lib/isodoc/nist/html/nist.scss +24 -10
- data/lib/isodoc/nist/html/nist_cswp.css +21 -9
- data/lib/isodoc/nist/html/nist_cswp.scss +23 -9
- data/lib/isodoc/nist/html/wordstyle.css +83 -3
- data/lib/isodoc/nist/html/wordstyle.scss +74 -3
- data/lib/isodoc/nist/html/wordstyle_cswp.css +77 -2
- data/lib/isodoc/nist/html/wordstyle_cswp.scss +68 -2
- data/lib/isodoc/nist/html_convert.rb +1 -0
- data/lib/isodoc/nist/metadata.rb +1 -0
- data/lib/isodoc/nist/metadata_id.rb +2 -0
- data/lib/isodoc/nist/nist.cswp.xsl +951 -231
- data/lib/isodoc/nist/nist.sp.xsl +991 -240
- data/lib/isodoc/nist/render.rb +0 -4
- data/lib/isodoc/nist/render_contributors.rb +1 -1
- data/lib/isodoc/nist/section.rb +19 -8
- data/lib/isodoc/nist/word_convert.rb +41 -0
- data/lib/metanorma/nist/version.rb +1 -1
- data/metanorma-nist.gemspec +1 -1
- metadata +5 -7
- data/.github/workflows/macos.yml +0 -38
- data/.github/workflows/ubuntu.yml +0 -56
- data/.github/workflows/windows.yml +0 -40
@@ -6,18 +6,6 @@ require "fileutils"
|
|
6
6
|
module IsoDoc
|
7
7
|
module NIST
|
8
8
|
module BaseConvert
|
9
|
-
def keywords(docxml, out)
|
10
|
-
f = docxml.at(ns("//preface/clause[@type = 'keywords']")) || return
|
11
|
-
intro_clause(f, out)
|
12
|
-
end
|
13
|
-
|
14
|
-
def skip_render(c, isoxml)
|
15
|
-
return false unless c.name == "reviewernote"
|
16
|
-
status = isoxml&.at(ns("//bibdata/status/stage"))&.text
|
17
|
-
return true if status.nil?
|
18
|
-
/^final/.match status
|
19
|
-
end
|
20
|
-
|
21
9
|
def requirement_cleanup(docxml)
|
22
10
|
docxml.xpath("//div[@class = 'recommend' or @class = 'require' "\
|
23
11
|
"or @class = 'permission']").each do |d|
|
@@ -33,6 +21,7 @@ module IsoDoc
|
|
33
21
|
|
34
22
|
def dl_parse(node, out)
|
35
23
|
return glossary_parse(node, out) if node["type"] == "glossary"
|
24
|
+
return glossary_parse(node, out) if node.parent.name == "definitions"
|
36
25
|
super
|
37
26
|
end
|
38
27
|
|
@@ -63,9 +52,20 @@ module IsoDoc
|
|
63
52
|
end
|
64
53
|
|
65
54
|
def boilerplate(node, out)
|
66
|
-
|
67
|
-
|
55
|
+
boilerplate = node.at(ns("//boilerplate")) or return
|
56
|
+
out.div **{class: "authority"} do |s|
|
57
|
+
boilerplate.children.each do |n|
|
58
|
+
if n.name == "title"
|
59
|
+
s.h1 do |h|
|
60
|
+
n.children.each { |nn| parse(nn, h) }
|
61
|
+
end
|
62
|
+
else
|
63
|
+
parse(n, s)
|
64
|
+
end
|
65
|
+
end
|
66
|
+
page_break(s)
|
68
67
|
end
|
68
|
+
end
|
69
69
|
|
70
70
|
def children_parse(node, out)
|
71
71
|
node.children.each do |n|
|
@@ -127,7 +127,6 @@ module IsoDoc
|
|
127
127
|
def info(isoxml, out)
|
128
128
|
@meta.series isoxml, out
|
129
129
|
@meta.commentperiod isoxml, out
|
130
|
-
@meta.note isoxml, out
|
131
130
|
super
|
132
131
|
end
|
133
132
|
|
@@ -180,6 +179,18 @@ module IsoDoc
|
|
180
179
|
out << " — "
|
181
180
|
node.at(ns("./p")).children.each { |n| parse(n, out) }
|
182
181
|
end
|
182
|
+
|
183
|
+
def ol_depth(node)
|
184
|
+
return super unless node["class"] == "steps" or
|
185
|
+
node.at(".//ancestor::xmlns:ol[@class = 'steps']")
|
186
|
+
depth = node.ancestors("ul, ol").size + 1
|
187
|
+
type = :arabic
|
188
|
+
type = :alphabet if [2, 7].include? depth
|
189
|
+
type = :roman if [3, 8].include? depth
|
190
|
+
type = :alphabet_upper if [4, 9].include? depth
|
191
|
+
type = :roman_upper if [5, 10].include? depth
|
192
|
+
ol_style(type)
|
193
|
+
end
|
183
194
|
end
|
184
195
|
end
|
185
196
|
end
|
@@ -9,7 +9,7 @@ fieldset, form, label, legend,
|
|
9
9
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
10
10
|
article, aside, canvas, details, embed,
|
11
11
|
figure, figcaption, footer, header, hgroup,
|
12
|
-
menu,
|
12
|
+
menu, output, ruby, section, summary,
|
13
13
|
time, mark, audio, video {
|
14
14
|
margin: 0;
|
15
15
|
padding: 0; }
|
@@ -104,6 +104,10 @@ b, strong {
|
|
104
104
|
div.document-stage-band, div.document-type-band {
|
105
105
|
background-color: #333333; }
|
106
106
|
|
107
|
+
a.FootnoteRef + a.FootnoteRef:before {
|
108
|
+
content: ", ";
|
109
|
+
vertical-align: super; }
|
110
|
+
|
107
111
|
#nist-sp-band {
|
108
112
|
background-color: #d8eca8; }
|
109
113
|
|
@@ -828,7 +828,7 @@ div.WordSection1 {
|
|
828
828
|
{% endif %}
|
829
829
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
830
830
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
831
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
831
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
832
832
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
833
833
|
mso-paper-source: 0; }
|
834
834
|
|
@@ -843,7 +843,7 @@ div.WordSection1 {
|
|
843
843
|
{% endif %}
|
844
844
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2l;
|
845
845
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2l;
|
846
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
846
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
847
847
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
848
848
|
mso-paper-source: 0; }
|
849
849
|
|
@@ -858,7 +858,7 @@ div.WordSection1 {
|
|
858
858
|
{% endif %}
|
859
859
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
860
860
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
861
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
861
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
862
862
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
863
863
|
mso-paper-source: 0; }
|
864
864
|
|
@@ -877,7 +877,7 @@ div.WordSection2 {
|
|
877
877
|
{% endif %}
|
878
878
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
879
879
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
880
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
880
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
881
881
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
882
882
|
mso-paper-source: 0; }
|
883
883
|
|
@@ -892,7 +892,7 @@ div.WordSection2 {
|
|
892
892
|
{% endif %}
|
893
893
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2l;
|
894
894
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2l;
|
895
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
895
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
896
896
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
897
897
|
mso-paper-source: 0; }
|
898
898
|
|
@@ -907,14 +907,14 @@ div.WordSection2 {
|
|
907
907
|
{% endif %}
|
908
908
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
909
909
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
910
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
910
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
911
911
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
912
912
|
mso-paper-source: 0; }
|
913
913
|
|
914
914
|
div.WordSection3 {
|
915
915
|
page: WordSection3; }
|
916
916
|
|
917
|
-
table.MsoISOTable {
|
917
|
+
table.MsoISOTable, table.MsoISOTableBig {
|
918
918
|
mso-style-name: "Table NIST";
|
919
919
|
mso-tstyle-rowband-size: 0;
|
920
920
|
mso-tstyle-colband-size: 0;
|
@@ -935,7 +935,7 @@ table.MsoISOTable {
|
|
935
935
|
font-size: 10.0pt;
|
936
936
|
font-family: {{bodyfont}}; }
|
937
937
|
|
938
|
-
table.MsoISOTable th {
|
938
|
+
table.MsoISOTable th, table.MsoISOTableBig th {
|
939
939
|
border: solid windowtext 1pt;
|
940
940
|
background: black;
|
941
941
|
color: white;
|
@@ -944,12 +944,12 @@ table.MsoISOTable th {
|
|
944
944
|
mso-border-alt: solid windowtext 1pt;
|
945
945
|
padding: 0cm 2.85pt 0cm 2.85pt; }
|
946
946
|
|
947
|
-
table.MsoISOTable td {
|
947
|
+
table.MsoISOTable td, table.MsoISOTableBig td {
|
948
948
|
border: solid windowtext 1pt;
|
949
949
|
mso-border-alt: solid windowtext 1pt;
|
950
950
|
padding: 0cm 2.85pt 0cm 2.85pt; }
|
951
951
|
|
952
|
-
table.MsoISOTable p {
|
952
|
+
table.MsoISOTable p, table.MsoISOTableBig p {
|
953
953
|
font-size: 10.0pt; }
|
954
954
|
|
955
955
|
table.MsoTableGrid {
|
@@ -1039,8 +1039,20 @@ div.example p.MsoListParagraph {
|
|
1039
1039
|
font-size: 10.0pt; }
|
1040
1040
|
|
1041
1041
|
div.Note p.MsoListParagraph {
|
1042
|
+
font-size: 10.0pt;
|
1043
|
+
margin-left: 1.0cm; }
|
1044
|
+
|
1045
|
+
div.Note span.stem {
|
1042
1046
|
font-size: 10.0pt; }
|
1043
1047
|
|
1048
|
+
div.Note p.Sourcecode, div.Note pre.Sourcecode {
|
1049
|
+
font-size: 8.0pt;
|
1050
|
+
margin-left: 1.0cm; }
|
1051
|
+
|
1052
|
+
div.Note table.dl {
|
1053
|
+
font-size: 10.0pt;
|
1054
|
+
margin-left: 1.0cm; }
|
1055
|
+
|
1044
1056
|
span.note_label, span.example_label, td.example_label, td.note_label {
|
1045
1057
|
font-size: 10.0pt;
|
1046
1058
|
font-family: {{bodyfont}}; }
|
@@ -790,7 +790,7 @@ div.WordSection1
|
|
790
790
|
{% endif %}
|
791
791
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
792
792
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
793
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
793
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
794
794
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
795
795
|
mso-paper-source:0;}
|
796
796
|
@page WordSection2L {
|
@@ -804,7 +804,7 @@ div.WordSection1
|
|
804
804
|
{% endif %}
|
805
805
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2l;
|
806
806
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2l;
|
807
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
807
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
808
808
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
809
809
|
mso-paper-source:0;}
|
810
810
|
@page WordSection2P {
|
@@ -818,7 +818,7 @@ div.WordSection1
|
|
818
818
|
{% endif %}
|
819
819
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
820
820
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
821
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
821
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
822
822
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
823
823
|
mso-paper-source:0;}
|
824
824
|
div.WordSection2
|
@@ -835,7 +835,7 @@ div.WordSection2
|
|
835
835
|
{% endif %}
|
836
836
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
837
837
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
838
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
838
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
839
839
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
840
840
|
mso-paper-source:0;}
|
841
841
|
@page WordSection3L {
|
@@ -849,7 +849,7 @@ div.WordSection2
|
|
849
849
|
{% endif %}
|
850
850
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2l;
|
851
851
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2l;
|
852
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
852
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
853
853
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
854
854
|
mso-paper-source:0;}
|
855
855
|
@page WordSection3P {
|
@@ -863,12 +863,12 @@ div.WordSection2
|
|
863
863
|
{% endif %}
|
864
864
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
865
865
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
866
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
866
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
867
867
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
868
868
|
mso-paper-source:0;}
|
869
869
|
div.WordSection3
|
870
870
|
{page:WordSection3;}
|
871
|
-
table.MsoISOTable
|
871
|
+
table.MsoISOTable, table.MsoISOTableBig
|
872
872
|
{mso-style-name:"Table NIST";
|
873
873
|
mso-tstyle-rowband-size:0;
|
874
874
|
mso-tstyle-colband-size:0;
|
@@ -888,7 +888,7 @@ table.MsoISOTable
|
|
888
888
|
mso-border-insidev:.75pt solid windowtext;
|
889
889
|
font-size:10.0pt;
|
890
890
|
font-family:$bodyfont;}
|
891
|
-
table.MsoISOTable th
|
891
|
+
table.MsoISOTable th, table.MsoISOTableBig th
|
892
892
|
{border:solid windowtext 1pt;
|
893
893
|
background: black;
|
894
894
|
color: white;
|
@@ -896,11 +896,11 @@ table.MsoISOTable th
|
|
896
896
|
font-family:$headerfont;
|
897
897
|
mso-border-alt:solid windowtext 1pt;
|
898
898
|
padding:0cm 2.85pt 0cm 2.85pt;}
|
899
|
-
table.MsoISOTable td
|
899
|
+
table.MsoISOTable td, table.MsoISOTableBig td
|
900
900
|
{border:solid windowtext 1pt;
|
901
901
|
mso-border-alt:solid windowtext 1pt;
|
902
902
|
padding:0cm 2.85pt 0cm 2.85pt;}
|
903
|
-
table.MsoISOTable p
|
903
|
+
table.MsoISOTable p, table.MsoISOTableBig p
|
904
904
|
{font-size:10.0pt; }
|
905
905
|
table.MsoTableGrid
|
906
906
|
{mso-style-name:"Table Grid";
|
@@ -990,6 +990,20 @@ div.example p.MsoListParagraph {
|
|
990
990
|
|
991
991
|
div.Note p.MsoListParagraph {
|
992
992
|
font-size: 10.0pt;
|
993
|
+
margin-left: 1.0cm;
|
994
|
+
}
|
995
|
+
|
996
|
+
div.Note span.stem {
|
997
|
+
font-size: 10.0pt; }
|
998
|
+
|
999
|
+
div.Note p.Sourcecode, div.Note pre.Sourcecode {
|
1000
|
+
font-size: 8.0pt;
|
1001
|
+
margin-left: 1.0cm;
|
1002
|
+
}
|
1003
|
+
|
1004
|
+
div.Note table.dl {
|
1005
|
+
font-size: 10.0pt;
|
1006
|
+
margin-left: 1.0cm;
|
993
1007
|
}
|
994
1008
|
|
995
1009
|
span.note_label, span.example_label, td.example_label, td.note_label
|
@@ -776,7 +776,7 @@ div.WordSection1 {
|
|
776
776
|
{% endif %}
|
777
777
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
778
778
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
779
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
779
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
780
780
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
781
781
|
mso-paper-source: 0; }
|
782
782
|
|
@@ -791,7 +791,7 @@ div.WordSection1 {
|
|
791
791
|
{% endif %}
|
792
792
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1l;
|
793
793
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1l;
|
794
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
794
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1l;
|
795
795
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
796
796
|
mso-paper-source: 0; }
|
797
797
|
|
@@ -806,7 +806,7 @@ div.WordSection1 {
|
|
806
806
|
{% endif %}
|
807
807
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
808
808
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
809
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
809
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
810
810
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
811
811
|
mso-paper-source: 0; }
|
812
812
|
|
@@ -825,7 +825,7 @@ div.WordSection2 {
|
|
825
825
|
{% endif %}
|
826
826
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
827
827
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
828
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
828
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
829
829
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
830
830
|
mso-paper-source: 0; }
|
831
831
|
|
@@ -840,7 +840,7 @@ div.WordSection2 {
|
|
840
840
|
{% endif %}
|
841
841
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1l;
|
842
842
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1l;
|
843
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
843
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
844
844
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
845
845
|
mso-paper-source: 0; }
|
846
846
|
|
@@ -855,14 +855,14 @@ div.WordSection2 {
|
|
855
855
|
{% endif %}
|
856
856
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
857
857
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
858
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
858
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
859
859
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
860
860
|
mso-paper-source: 0; }
|
861
861
|
|
862
862
|
div.WordSection3 {
|
863
863
|
page: WordSection3; }
|
864
864
|
|
865
|
-
table.MsoISOTable {
|
865
|
+
table.MsoISOTable, table.MsoISOTableBig {
|
866
866
|
mso-style-name: "Table NIST";
|
867
867
|
mso-tstyle-rowband-size: 0;
|
868
868
|
mso-tstyle-colband-size: 0;
|
@@ -883,7 +883,7 @@ table.MsoISOTable {
|
|
883
883
|
font-size: 10.0pt;
|
884
884
|
font-family: {{bodyfont}}; }
|
885
885
|
|
886
|
-
table.MsoISOTable th {
|
886
|
+
table.MsoISOTable th, table.MsoISOTableBig th {
|
887
887
|
border: solid windowtext 1pt;
|
888
888
|
background: black;
|
889
889
|
color: white;
|
@@ -892,7 +892,7 @@ table.MsoISOTable th {
|
|
892
892
|
mso-border-alt: solid windowtext 1pt;
|
893
893
|
padding: 0cm 2.85pt 0cm 2.85pt; }
|
894
894
|
|
895
|
-
table.MsoISOTable td {
|
895
|
+
table.MsoISOTable td, table.MsoISOTableBig td {
|
896
896
|
border: solid windowtext 1pt;
|
897
897
|
mso-border-alt: solid windowtext 1pt;
|
898
898
|
padding: 0cm 2.85pt 0cm 2.85pt; }
|
@@ -980,8 +980,20 @@ div.example p.MsoListParagraph {
|
|
980
980
|
font-size: 10.0pt; }
|
981
981
|
|
982
982
|
div.Note p.MsoListParagraph {
|
983
|
+
font-size: 10.0pt;
|
984
|
+
margin-left: 1.0cm; }
|
985
|
+
|
986
|
+
div.Note span.stem {
|
983
987
|
font-size: 10.0pt; }
|
984
988
|
|
989
|
+
div.Note p.Sourcecode, div.Note pre.Sourcecode {
|
990
|
+
font-size: 8.0pt;
|
991
|
+
margin-left: 1.0cm; }
|
992
|
+
|
993
|
+
div.Note table.dl {
|
994
|
+
font-size: 10.0pt;
|
995
|
+
margin-left: 1.0cm; }
|
996
|
+
|
985
997
|
span.note_label, span.example_label, td.example_label, td.note_label {
|
986
998
|
font-size: 10.0pt;
|
987
999
|
font-family: {{bodyfont}}; }
|
@@ -742,7 +742,7 @@ div.WordSection1
|
|
742
742
|
{% endif %}
|
743
743
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
744
744
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
745
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
745
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
746
746
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
747
747
|
mso-paper-source:0;}
|
748
748
|
@page WordSection2L {
|
@@ -756,7 +756,7 @@ div.WordSection1
|
|
756
756
|
{% endif %}
|
757
757
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1l;
|
758
758
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1l;
|
759
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
759
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1l;
|
760
760
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
761
761
|
mso-paper-source:0;}
|
762
762
|
@page WordSection2P {
|
@@ -770,7 +770,7 @@ div.WordSection1
|
|
770
770
|
{% endif %}
|
771
771
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
772
772
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
773
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
773
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
774
774
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
775
775
|
mso-paper-source:0;}
|
776
776
|
div.WordSection2
|
@@ -787,7 +787,7 @@ div.WordSection2
|
|
787
787
|
{% endif %}
|
788
788
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
789
789
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
790
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
790
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
791
791
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
792
792
|
mso-paper-source:0;}
|
793
793
|
@page WordSection3L {
|
@@ -801,7 +801,7 @@ div.WordSection2
|
|
801
801
|
{% endif %}
|
802
802
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1l;
|
803
803
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1l;
|
804
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
804
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
805
805
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
806
806
|
mso-paper-source:0;}
|
807
807
|
@page WordSection3P {
|
@@ -815,12 +815,12 @@ div.WordSection2
|
|
815
815
|
{% endif %}
|
816
816
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
817
817
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
818
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
818
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
819
819
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
820
820
|
mso-paper-source:0;}
|
821
821
|
div.WordSection3
|
822
822
|
{page:WordSection3;}
|
823
|
-
table.MsoISOTable
|
823
|
+
table.MsoISOTable, table.MsoISOTableBig
|
824
824
|
{mso-style-name:"Table NIST";
|
825
825
|
mso-tstyle-rowband-size:0;
|
826
826
|
mso-tstyle-colband-size:0;
|
@@ -840,7 +840,7 @@ table.MsoISOTable
|
|
840
840
|
mso-border-insidev:.75pt solid windowtext;
|
841
841
|
font-size:10.0pt;
|
842
842
|
font-family:$bodyfont;}
|
843
|
-
table.MsoISOTable th
|
843
|
+
table.MsoISOTable th, table.MsoISOTableBig th
|
844
844
|
{border:solid windowtext 1pt;
|
845
845
|
background: black;
|
846
846
|
color: white;
|
@@ -848,7 +848,7 @@ table.MsoISOTable th
|
|
848
848
|
font-family:$headerfont;
|
849
849
|
mso-border-alt:solid windowtext 1pt;
|
850
850
|
padding:0cm 2.85pt 0cm 2.85pt;}
|
851
|
-
table.MsoISOTable td
|
851
|
+
table.MsoISOTable td, table.MsoISOTableBig td
|
852
852
|
{border:solid windowtext 1pt;
|
853
853
|
mso-border-alt:solid windowtext 1pt;
|
854
854
|
padding:0cm 2.85pt 0cm 2.85pt;}
|
@@ -935,6 +935,20 @@ div.example p.MsoListParagraph {
|
|
935
935
|
|
936
936
|
div.Note p.MsoListParagraph {
|
937
937
|
font-size: 10.0pt;
|
938
|
+
margin-left: 1.0cm;
|
939
|
+
}
|
940
|
+
|
941
|
+
div.Note span.stem {
|
942
|
+
font-size: 10.0pt; }
|
943
|
+
|
944
|
+
div.Note p.Sourcecode, div.Note pre.Sourcecode {
|
945
|
+
font-size: 8.0pt;
|
946
|
+
margin-left: 1.0cm;
|
947
|
+
}
|
948
|
+
|
949
|
+
div.Note table.dl {
|
950
|
+
font-size: 10.0pt;
|
951
|
+
margin-left: 1.0cm;
|
938
952
|
}
|
939
953
|
|
940
954
|
span.note_label, span.example_label, td.example_label, td.note_label
|