metanorma-gb 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.hound.yml +3 -0
  4. data/.oss-guides.rubocop.yml +1077 -0
  5. data/.rubocop.ribose.yml +65 -0
  6. data/.rubocop.tb.yml +650 -0
  7. data/.rubocop.yml +15 -0
  8. data/.travis.yml +15 -0
  9. data/CODE_OF_CONDUCT.md +74 -0
  10. data/Gemfile +9 -0
  11. data/LICENSE +25 -0
  12. data/README.adoc +369 -0
  13. data/Rakefile +6 -0
  14. data/asciidoctor-gb.gemspec.old +47 -0
  15. data/bin/console +14 -0
  16. data/bin/rspec +18 -0
  17. data/bin/setup +8 -0
  18. data/lib/asciidoctor-gb.rb +11 -0
  19. data/lib/asciidoctor/gb.rb +7 -0
  20. data/lib/asciidoctor/gb/biblio.rng +836 -0
  21. data/lib/asciidoctor/gb/converter.rb +224 -0
  22. data/lib/asciidoctor/gb/front.rb +228 -0
  23. data/lib/asciidoctor/gb/gbstandard.rng +409 -0
  24. data/lib/asciidoctor/gb/html/blank.png +0 -0
  25. data/lib/asciidoctor/gb/html/footer.png +0 -0
  26. data/lib/asciidoctor/gb/html/gb-logos/gb-issuer-default.png +0 -0
  27. data/lib/asciidoctor/gb/html/gb-logos/gb-issuer-default.svg +980 -0
  28. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-db.gif +0 -0
  29. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-db.png +0 -0
  30. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-db.svg +1 -0
  31. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gb.gif +0 -0
  32. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gb.png +0 -0
  33. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gb.svg +1 -0
  34. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gjb.gif +0 -0
  35. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gjb.png +0 -0
  36. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gjb.svg +1 -0
  37. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gm.gif +0 -0
  38. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gm.png +0 -0
  39. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gm.svg +1 -0
  40. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-jjf.gif +0 -0
  41. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-jjf.png +0 -0
  42. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-jjf.svg +1 -0
  43. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-zb.gif +0 -0
  44. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-zb.png +0 -0
  45. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-zb.svg +13 -0
  46. data/lib/asciidoctor/gb/html/gb.scss +556 -0
  47. data/lib/asciidoctor/gb/html/header.html +216 -0
  48. data/lib/asciidoctor/gb/html/html_gb_intro.html +9 -0
  49. data/lib/asciidoctor/gb/html/html_gb_titlepage.html +99 -0
  50. data/lib/asciidoctor/gb/html/htmlstyle.scss +269 -0
  51. data/lib/asciidoctor/gb/html/logo.png +0 -0
  52. data/lib/asciidoctor/gb/html/word_gb_intro.html +3 -0
  53. data/lib/asciidoctor/gb/html/word_gb_titlepage.html +388 -0
  54. data/lib/asciidoctor/gb/html/wordstyle.scss +2543 -0
  55. data/lib/asciidoctor/gb/isodoc.rng +1059 -0
  56. data/lib/asciidoctor/gb/isostandard.rng +1001 -0
  57. data/lib/asciidoctor/gb/section_input.rb +150 -0
  58. data/lib/asciidoctor/gb/validate.rb +115 -0
  59. data/lib/asciidoctor/gb/version.rb +5 -0
  60. data/lib/isodoc/gb/gbcleanup.rb +90 -0
  61. data/lib/isodoc/gb/gbconvert.rb +66 -0
  62. data/lib/isodoc/gb/gbhtmlconvert.rb +84 -0
  63. data/lib/isodoc/gb/gbhtmlrender.rb +208 -0
  64. data/lib/isodoc/gb/gbwordconvert.rb +136 -0
  65. data/lib/isodoc/gb/gbwordrender.rb +206 -0
  66. data/lib/isodoc/gb/html/blank.png +0 -0
  67. data/lib/isodoc/gb/html/footer.png +0 -0
  68. data/lib/isodoc/gb/html/gb-logos/gb-issuer-default.png +0 -0
  69. data/lib/isodoc/gb/html/gb-logos/gb-issuer-default.svg +980 -0
  70. data/lib/isodoc/gb/html/gb-logos/gb-standard-db.gif +0 -0
  71. data/lib/isodoc/gb/html/gb-logos/gb-standard-db.png +0 -0
  72. data/lib/isodoc/gb/html/gb-logos/gb-standard-db.svg +1 -0
  73. data/lib/isodoc/gb/html/gb-logos/gb-standard-gb.gif +0 -0
  74. data/lib/isodoc/gb/html/gb-logos/gb-standard-gb.png +0 -0
  75. data/lib/isodoc/gb/html/gb-logos/gb-standard-gb.svg +1 -0
  76. data/lib/isodoc/gb/html/gb-logos/gb-standard-gjb.gif +0 -0
  77. data/lib/isodoc/gb/html/gb-logos/gb-standard-gjb.png +0 -0
  78. data/lib/isodoc/gb/html/gb-logos/gb-standard-gjb.svg +1 -0
  79. data/lib/isodoc/gb/html/gb-logos/gb-standard-gm.gif +0 -0
  80. data/lib/isodoc/gb/html/gb-logos/gb-standard-gm.png +0 -0
  81. data/lib/isodoc/gb/html/gb-logos/gb-standard-gm.svg +1 -0
  82. data/lib/isodoc/gb/html/gb-logos/gb-standard-jjf.gif +0 -0
  83. data/lib/isodoc/gb/html/gb-logos/gb-standard-jjf.png +0 -0
  84. data/lib/isodoc/gb/html/gb-logos/gb-standard-jjf.svg +1 -0
  85. data/lib/isodoc/gb/html/gb-logos/gb-standard-zb.gif +0 -0
  86. data/lib/isodoc/gb/html/gb-logos/gb-standard-zb.png +0 -0
  87. data/lib/isodoc/gb/html/gb-logos/gb-standard-zb.svg +13 -0
  88. data/lib/isodoc/gb/html/gb.scss +556 -0
  89. data/lib/isodoc/gb/html/header.html +216 -0
  90. data/lib/isodoc/gb/html/html_compliant_gb_titlepage.html +116 -0
  91. data/lib/isodoc/gb/html/html_gb_intro.html +6 -0
  92. data/lib/isodoc/gb/html/html_gb_titlepage.html +94 -0
  93. data/lib/isodoc/gb/html/htmlcompliantstyle.scss +1220 -0
  94. data/lib/isodoc/gb/html/htmlstyle.scss +1007 -0
  95. data/lib/isodoc/gb/html/logo.png +0 -0
  96. data/lib/isodoc/gb/html/scripts.html +71 -0
  97. data/lib/isodoc/gb/html/word_gb_intro.html +3 -0
  98. data/lib/isodoc/gb/html/word_gb_titlepage.html +388 -0
  99. data/lib/isodoc/gb/html/wordstyle.scss +2543 -0
  100. data/lib/isodoc/gb/i18n-en.yaml +12 -0
  101. data/lib/isodoc/gb/i18n-zh-Hans.yaml +12 -0
  102. data/lib/isodoc/gb/metadata.rb +232 -0
  103. data/lib/metanorma/gb.rb +7 -0
  104. data/lib/metanorma/gb/processor.rb +43 -0
  105. data/metanorma-gb.gemspec +48 -0
  106. metadata +380 -0
@@ -0,0 +1 @@
1
+ <svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 133.2 66.6"><title>gb-standard-db</title><path d="M56.5,0H0V66.6H56.5A8.5,8.5,0,0,0,65,58.1V8.5A8.5,8.5,0,0,0,56.5,0ZM42.4,56.3a2.9,2.9,0,0,1-2.9,2.9H22.8V7.5H39.5a2.8,2.8,0,0,1,2.9,2.8Z"/><path d="M133.2,24.7V8.5A8.5,8.5,0,0,0,124.7,0H68.2V66.6h56.5a8.5,8.5,0,0,0,8.5-8.5V41.3a8.6,8.6,0,0,0-6.9-8.3A8.6,8.6,0,0,0,133.2,24.7ZM110.6,56.3a2.9,2.9,0,0,1-2.9,2.9H91.1v-22h16.6a2.9,2.9,0,0,1,2.9,2.8Zm0-29.6a2.9,2.9,0,0,1-2.9,2.9H91.1V7.5h16.6a2.8,2.8,0,0,1,2.9,2.8Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 232.1 117"><defs><style>.cls-1{fill:#fff;}.cls-1,.cls-2,.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.32px;}.cls-3{fill:none;}</style></defs><title>gb-standard-gb</title><path class="cls-1" d="M201.6,36.5c0,5.6-4.3,8.4-8.8,8.4H147.9L136,58.5h55.2c14,0,22.7-9.1,23.7-19.8.7-6.5-.9-14.1-6-19l-9.6,11A7.6,7.6,0,0,1,201.6,36.5Z"/><path class="cls-1" d="M133.6,102.7V14.6h61c6.4,0,11,2,14.3,5.1L218.1,9C212.5,4.1,204.4.7,192.8.7H120.1V116.3l13.6-13.6Z"/><path class="cls-1" d="M216.6,81.1c0-11.9-7.1-16-7.1-16a82,82,0,0,1-9.5,9.5,6.1,6.1,0,0,1,2.3,5c0,3.3-.7,8.9-12.3,8.9H147.9l-14.2,14.2h50.8C203.9,102.7,216.6,95.7,216.6,81.1Z"/><path class="cls-2" d="M223.1,56.7s8.3-11.6,7-23.5c-.8-7.1-3.8-17.2-12-24.2l-9.2,10.7c5.1,4.9,6.7,12.5,6,19-1,10.7-9.7,19.8-23.7,19.8H136l11.9-13.6V28.6h44.9a9.4,9.4,0,0,1,6.5,2.1l9.6-11c-3.3-3.1-7.9-5.1-14.3-5.1h-61v88.1h.1l14.2-14.2V72.8h44.9c3.5,0,5.8.7,7.2,1.8a82,82,0,0,0,9.5-9.5s7.1,4.1,7.1,16c0,14.6-12.7,21.6-32.1,21.6H133.7l-13.6,13.6h72.7c20.6,0,35-13.6,37.4-25.5S232.1,67,223.1,56.7Z"/><line class="cls-3" x1="133.6" y1="14.6" x2="120.1" y2="0.7"/><polygon class="cls-2" points="70.9 59.6 57.8 74.7 85.1 74.7 98.8 59.6 70.9 59.6"/><path class="cls-2" d="M52,15.9c-8.8,0-35,9.3-36,38-.6,16,4.3,28.2,11.3,36.3l10.8-9.8c-5.2-4.8-9.2-12.2-9.2-23.1,0-21.4,21-27.3,28.9-27.3H113L98.8,15.9Z"/><path class="cls-1" d="M49.8,101.6h49v-42L85.1,74.7V88.5H57.8a31,31,0,0,1-19.7-8.1L27.3,90.2C33.8,97.6,42.2,101.6,49.8,101.6Z"/><polygon class="cls-1" points="57.8 45.4 57.8 74.7 70.9 59.6 98.8 59.6 113 45.4 85.1 45.4 57.8 45.4"/><path class="cls-2" d="M98.8,101.6h-49c-7.6,0-16-4-22.5-11.4L17,99.5c9.3,10.1,22.7,16.8,40.8,16.8H113V45.4L98.8,59.6Z"/><path class="cls-1" d="M16,53.9c1-28.7,27.2-38,36-38H98.8L113,30V.7H57.8C34.2.7.7,22,.7,52.9.7,69.8,5.8,87.2,17,99.5l10.3-9.3C20.3,82.1,15.4,69.9,16,53.9Z"/><line class="cls-3" x1="57.8" y1="45.4" x2="70.9" y2="59.6"/><line class="cls-3" x1="85.1" y1="88.5" x2="98.8" y2="101.6"/><line class="cls-3" x1="98.8" y1="15.9" x2="113" y2="0.7"/></svg>
@@ -0,0 +1 @@
1
+ <svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 232.2 88.4"><defs><style>.cls-1{fill:#fff;}.cls-1,.cls-2,.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;}.cls-3{fill:none;}</style></defs><title>gb-standard-gjb</title><path class="cls-1" d="M209.1,27.6c0,4.2-3.3,6.4-6.7,6.4H168.5l-9,10.2h41.7c10.6,0,17.2-6.9,18-14.9.5-4.9-.7-10.7-4.6-14.4l-7.2,8.3A5.9,5.9,0,0,1,209.1,27.6Z"/><path class="cls-1" d="M157.7,77.6V11h46.1a15.4,15.4,0,0,1,10.8,3.9l7-8.1C217.3,3.1,211.2.5,202.4.5H147.5V87.9l10.3-10.3Z"/><path class="cls-1" d="M220.4,61.3c0-9-5.3-12.1-5.3-12.1a70.7,70.7,0,0,1-7.2,7.2,4.5,4.5,0,0,1,1.7,3.7c0,2.5-.5,6.8-9.3,6.8H168.5L157.8,77.6h38.4C210.9,77.6,220.4,72.3,220.4,61.3Z"/><path class="cls-2" d="M225.4,42.9s6.2-8.8,5.2-17.8c-.6-5.4-2.8-13-9-18.3l-7,8.1c3.9,3.7,5.1,9.5,4.6,14.4-.8,8-7.4,14.9-18,14.9H159.5l9-10.2V21.6h33.9a7.5,7.5,0,0,1,5,1.6l7.2-8.3A15.4,15.4,0,0,0,203.8,11H157.7V77.6h.1l10.7-10.7V55h33.9a9.1,9.1,0,0,1,5.5,1.4,70.7,70.7,0,0,0,7.2-7.2s5.3,3.1,5.3,12.1c0,11-9.5,16.3-24.2,16.3H157.8L147.5,87.9h54.9c15.6,0,26.5-10.3,28.3-19.3S232.1,50.6,225.4,42.9Z"/><line class="cls-3" x1="157.7" y1="11" x2="147.5" y2="0.5"/><path class="cls-2" d="M121.4,87.9c10.3,0,20.3-12.1,20.3-24.5V.5h-21V57.6c0,3.9,0,9.3-7.3,9.3H87.7v21h33.7Z"/><path class="cls-1" d="M120.7,57.6c0,3.9,0,9.3-7.3,9.3H87.7v21L98.8,77.4h19.3c8.3,0,13.3-6,13.3-19V11L141.7.5h-21Z"/><line class="cls-3" x1="131.4" y1="11" x2="120.7" y2="0.5"/><line class="cls-3" x1="98.8" y1="77.4" x2="87.7" y2="66.9"/><polygon class="cls-2" points="51.4 45.1 41.5 56.5 62.2 56.5 72.5 45.1 51.4 45.1"/><path class="cls-2" d="M39.3,12c-6.6,0-26.5,7-27.2,28.7-.4,12.1,3.2,21.4,8.5,27.4l8.2-7.3c-3.9-3.7-7-9.3-7-17.5,0-16.2,15.9-20.6,21.9-20.6H83.3L72.6,12Z"/><path class="cls-1" d="M37.6,76.7h35V45.1L62.2,56.5V66.9H43.7a23.8,23.8,0,0,1-14.9-6.1l-8.2,7.3C25.6,73.8,31.9,76.7,37.6,76.7Z"/><polygon class="cls-1" points="41.5 34.3 41.5 56.5 51.4 45.1 72.5 45.1 83.3 34.3 62.2 34.3 41.5 34.3"/><path class="cls-2" d="M72.6,76.7h-35c-5.7,0-12-2.9-17-8.6l-7.7,7.1c7,7.7,17.1,12.7,30.8,12.7H83.3V34.3L72.6,45.1Z"/><path class="cls-1" d="M12.1,40.7C12.8,19,32.7,12,39.3,12H72.6L83.3,22.7V.5H43.7C25.9.5.5,16.6.5,40c0,12.8,3.9,25.9,12.4,35.2l7.7-7.1C15.3,62.1,11.7,52.8,12.1,40.7Z"/><line class="cls-3" x1="41.5" y1="34.3" x2="51.4" y2="45.1"/><line class="cls-3" x1="62.2" y1="66.9" x2="72.6" y2="76.7"/><line class="cls-3" x1="72.6" y1="12" x2="83.3" y2="0.5"/></svg>
@@ -0,0 +1 @@
1
+ <svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 187.2 95.1"><title>gb-standard-gm</title><polygon points="160 0 141.8 32.9 123.6 0 96.3 0 96.3 11.3 96.3 95.1 123.6 95.1 123.6 60.7 125 63.3 141.8 93.6 158.5 63.3 160 60.7 160 95.1 187.2 95.1 187.2 11.3 187.2 0 160 0"/><path d="M81.3,0H9.9A10,10,0,0,0,0,9.9V85.2a9.9,9.9,0,0,0,9.9,9.9h43a9.9,9.9,0,0,0,6.8-2.7v2.7H91.2V43.2H48.8v9.5H59.7V78.9A5.7,5.7,0,0,1,54,84.5H37.2a5.7,5.7,0,0,1-5.7-5.6V16.3a5.8,5.8,0,0,1,5.7-5.7H54a5.8,5.8,0,0,1,5.7,5.7V31.2H91.2V9.9A10,10,0,0,0,81.3,0Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 226.8 89.6"><defs><style>.cls-1,.cls-2,.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.2px;}.cls-2{fill:#fff;}.cls-3{fill:none;}</style></defs><title>gb-standard-jjf</title><polygon class="cls-1" points="84.3 12.3 75.1 23.9 144.4 23.9 144.4 0.6 133.7 12.3 84.3 12.3"/><polygon class="cls-2" points="75.1 23.9 84.3 12.3 133.7 12.3 144.4 0.6 75.1 0.6 75.1 23.9"/><path class="cls-2" d="M92,73.6c2.6,2.2,6.2,3.4,11.3,3.4,13.4,0,19.1-7.3,19.1-22.2V13.5L110.7,23.7V62s-1,4.6-5.5,4.6a7.5,7.5,0,0,1-3.9-1h0Z" transform="translate(0)"/><path class="cls-1" d="M86.8,57c0,7.1,1.2,13,5.2,16.6l9.3-8h0c-1.9-1.1-2.8-3.3-2.8-6.2V44L86.8,51.7Z" transform="translate(0)"/><path class="cls-1" d="M110.7,12.3V23.7l11.7-10.2V54.8c0,14.9-5.7,22.2-19.1,22.2-5.1,0-8.7-1.2-11.3-3.4l-7.9,6.8c5,4.5,12,7.4,20.8,7.4,19,0,29.1-14.2,29.1-25.8V12.3Z" transform="translate(0)"/><path class="cls-2" d="M86.8,57V51.7L98.5,44H75.1V59.4a28.7,28.7,0,0,0,9,21L92,73.6C88,70,86.8,64.1,86.8,57Z" transform="translate(0)"/><polyline class="cls-3" points="88.4 53.6 86.8 51.7 75.1 44"/><line class="cls-3" x1="84.3" y1="12.3" x2="75.1" y2="0.6"/><polygon class="cls-1" points="9.8 12.3 0.6 23.9 69.9 23.9 69.9 0.6 59.1 12.3 9.8 12.3"/><polygon class="cls-2" points="0.6 23.9 9.8 12.3 59.1 12.3 69.9 0.6 0.6 0.6 0.6 23.9"/><path class="cls-2" d="M17.5,73.6C20,75.8,23.7,77,28.8,77c13.4,0,19-7.3,19-22.2V13.5L36.2,23.7V62s-1.1,4.6-5.5,4.6a8.2,8.2,0,0,1-4-1h0Z" transform="translate(0)"/><path class="cls-1" d="M12.3,57c0,7.1,1.2,13,5.2,16.6l9.2-8h0c-1.8-1.1-2.8-3.3-2.8-6.2V44L12.3,51.7Z" transform="translate(0)"/><path class="cls-1" d="M36.2,12.3V23.7L47.8,13.5V54.8c0,14.9-5.6,22.2-19,22.2-5.1,0-8.8-1.2-11.3-3.4L9.6,80.4c5,4.5,12,7.4,20.7,7.4,19,0,29.2-14.2,29.2-25.8V12.3Z" transform="translate(0)"/><path class="cls-2" d="M12.3,57V51.7L23.9,44H.6V59.4a28.4,28.4,0,0,0,9,21l7.9-6.8C13.5,70,12.3,64.1,12.3,57Z" transform="translate(0)"/><polyline class="cls-3" points="13.9 53.6 12.3 51.7 0.6 44"/><line class="cls-3" x1="9.8" y1="12.3" x2="0.6" y2="0.6"/><polygon class="cls-1" points="226.2 0.6 173.4 0.6 152.4 0.6 149.1 0.6 149.1 89 173.4 89 173.4 24.9 226.2 24.9 226.2 0.6"/><rect class="cls-1" x="161.3" y="36.6" width="64.9" height="24.33"/><polygon class="cls-2" points="162.1 48.8 216.1 48.8 226.2 36.6 173.4 36.6 162.1 48.8"/><polygon class="cls-2" points="152.4 0.6 149.1 0.6 149.1 89 161.3 79.1 161.3 12.3 216.8 12.3 226.2 0.6 173.4 0.6 152.4 0.6"/><line class="cls-3" x1="161.3" y1="12.3" x2="149.1" y2="0.6"/></svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 157.1 81.9" style="enable-background:new 0 0 157.1 81.9;" xml:space="preserve">
5
+ <g>
6
+ <rect x="80.8" width="32.2" height="81.9"/>
7
+ <polygon points="74.9,46.2 42.7,81.9 74.9,81.9 "/>
8
+ <polygon points="33.6,0 0,0 0,37.8 "/>
9
+ <path d="M157.1,61.1c0-8.6-6-17.5-15.4-21c7.7-1.1,14.6-10.4,14.6-21.2c0-10.8-9.5-19-27.7-19h-11.7v81.1
10
+ c5.3,0.4,11.4,0.8,17.7,0.8C153,81.9,157.1,69.8,157.1,61.1z"/>
11
+ <polygon points="75.6,0 40.6,0 0,81.9 35,81.9 "/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,556 @@
1
+ p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode
2
+ {mso-style-unhide:no;
3
+ mso-style-qformat:yes;
4
+ mso-style-parent:"";
5
+ margin-top:0cm;
6
+ margin-right:0cm;
7
+ margin-bottom:12.0pt;
8
+ margin-left:0cm;
9
+ text-align:left;
10
+ line-height:12.0pt;
11
+ mso-pagination:widow-orphan;
12
+ tab-stops:20.15pt;
13
+ font-size:9.0pt;
14
+ font-family:$monospacefont;
15
+ mso-fareast-font-family:Calibri;
16
+ mso-bidi-font-family:"Courier New";
17
+ mso-ansi-language:EN-GB;}
18
+ p.Biblio, li.Biblio, div.Biblio, p.NormRef, li.NormRef, p.NormRef
19
+ {mso-style-unhide:no;
20
+ mso-style-qformat:yes;
21
+ mso-style-parent:"";
22
+ margin-top:0cm;
23
+ margin-right:0cm;
24
+ margin-bottom:12.0pt;
25
+ margin-left:33.15pt;
26
+ text-indent:-33.15pt;
27
+ tab-stops: 33.15pt;
28
+ line-height:12.0pt;
29
+ mso-pagination:widow-orphan;
30
+ font-size:11.0pt;
31
+ font-family:$bodyfont;
32
+ mso-fareast-font-family:$bodyfont;
33
+ mso-bidi-font-family:$bodyfont;
34
+ mso-ansi-language:EN-GB;}
35
+ p.FigureTitle
36
+ {mso-style-unhide:no;
37
+ mso-style-qformat:yes;
38
+ mso-style-parent:"";
39
+ margin-top:0cm;
40
+ margin-right:0cm;
41
+ margin-bottom:12.0pt;
42
+ margin-left:0cm;
43
+ text-align:center;
44
+ line-height:12.0pt;
45
+ page-break-before:avoid;
46
+ mso-pagination:widow-orphan;
47
+ tab-stops:20.15pt;
48
+ font-size:10.5pt;
49
+ font-family:$headerfont;
50
+ mso-fareast-font-family:$headerfont;
51
+ mso-bidi-font-family:$headerfont;
52
+ mso-ansi-language:EN-GB;}
53
+ p.TableTitle
54
+ {mso-style-unhide:no;
55
+ mso-style-qformat:yes;
56
+ mso-style-parent:"";
57
+ margin-top:0cm;
58
+ margin-right:0cm;
59
+ margin-bottom:12.0pt;
60
+ margin-left:0cm;
61
+ text-align:center;
62
+ page-break-after:avoid;
63
+ line-height:12.0pt;
64
+ mso-pagination:widow-orphan;
65
+ tab-stops:20.15pt;
66
+ font-size:10.5pt;
67
+ font-family:$headerfont;
68
+ mso-fareast-font-family:$headerfont;
69
+ mso-bidi-font-family:$headerfont;
70
+ mso-ansi-language:EN-GB;}
71
+ p.Note, li.Note, td.Note
72
+ {mso-style-unhide:no;
73
+ mso-style-qformat:yes;
74
+ mso-style-parent:"";
75
+ margin-top:0in;
76
+ margin-right:0in;
77
+ margin-bottom:0in;
78
+ tab-stops:20.15pt;
79
+ /*
80
+ margin-left:45.0pt;
81
+ text-indent:-18.0pt;
82
+ */
83
+ margin-left:0pt;
84
+ margin-bottom:.0001pt;
85
+ text-align:justify;
86
+ text-justify:inter-ideograph;
87
+ mso-pagination:widow-orphan;
88
+ font-size:9.0pt;
89
+ text-autospace:none;
90
+ mso-bidi-font-size:11.0pt;
91
+ font-family:$bodyfont;
92
+ mso-fareast-font-family:$bodyfont;
93
+ mso-bidi-font-family:$bodyfont;
94
+ mso-ansi-language:EN-GB;}
95
+ p.TableFootnote, li.TableFootnote
96
+ {mso-style-unhide:no;
97
+ mso-style-qformat:yes;
98
+ mso-style-parent:"";
99
+ margin-top:0in;
100
+ margin-right:0in;
101
+ margin-bottom:0in;
102
+ margin-left:36.0pt;
103
+ tab-stops:20.15pt;
104
+ text-indent:-9.0pt;
105
+ margin-bottom:.0001pt;
106
+ text-align:justify;
107
+ text-justify:inter-ideograph;
108
+ mso-pagination:widow-orphan;
109
+ font-size:9.0pt;
110
+ text-autospace:none;
111
+ mso-bidi-font-size:11.0pt;
112
+ font-family:$bodyfont;
113
+ mso-fareast-font-family:$bodyfont;
114
+ mso-bidi-font-family:$bodyfont;
115
+ mso-ansi-language:EN-GB;}
116
+ p.ANNEX, li.ANNEX, div.ANNEX
117
+ {mso-style-name:ANNEX;
118
+ mso-style-priority:10;
119
+ mso-style-unhide:no;
120
+ mso-style-next:Normal;
121
+ margin-top:0cm;
122
+ margin-right:0cm;
123
+ margin-bottom:24.0pt;
124
+ margin-left:0cm;
125
+ text-align:center;
126
+ text-indent:0cm;
127
+ line-height:15.5pt;
128
+ mso-line-height-rule:exactly;
129
+ page-break-before:always;
130
+ mso-pagination:widow-orphan;
131
+ page-break-after:avoid;
132
+ mso-outline-level:1;
133
+ mso-list:l0 level1 lfo12;
134
+ tab-stops:20.15pt;
135
+ font-size:14.0pt;
136
+ mso-bidi-font-size:11.0pt;
137
+ font-family:$headerfont;
138
+ mso-fareast-font-family:$headerfont;
139
+ mso-bidi-font-family:$headerfont;
140
+ mso-ansi-language:EN-GB;
141
+ mso-fareast-language:ZH-CN;
142
+ font-weight:bold;
143
+ mso-bidi-font-weight:normal;}
144
+ p.BiblioTitle, li.BiblioTitle, div.BiblioTitle
145
+ {mso-style-name:"Biblio Title";
146
+ mso-style-noshow:yes;
147
+ mso-style-unhide:no;
148
+ margin-top:0cm;
149
+ margin-right:0cm;
150
+ margin-bottom:15.5pt;
151
+ margin-left:0cm;
152
+ text-align:center;
153
+ line-height:15.5pt;
154
+ mso-pagination:widow-orphan;
155
+ mso-outline-level:1;
156
+ tab-stops:20.15pt;
157
+ font-size:14.0pt;
158
+ mso-bidi-font-size:11.0pt;
159
+ font-family:$headerfont;
160
+ mso-fareast-font-family:$headerfont;
161
+ mso-bidi-font-family:$headerfont;
162
+ mso-ansi-language:EN-GB;
163
+ font-weight:bold;
164
+ mso-bidi-font-weight:normal;}
165
+ p.Definition, li.Definition, div.Definition
166
+ {mso-style-name:Definition;
167
+ mso-style-priority:9;
168
+ mso-style-unhide:no;
169
+ margin-top:0cm;
170
+ margin-right:0cm;
171
+ margin-bottom:12.0pt;
172
+ margin-left:0cm;
173
+ text-align:justify;
174
+ line-height:12.0pt;
175
+ mso-pagination:widow-orphan;
176
+ tab-stops:20.15pt;
177
+ font-size:11.0pt;
178
+ font-family:$bodyfont;
179
+ mso-fareast-font-family:$bodyfont;
180
+ mso-bidi-font-family:$bodyfont;
181
+ mso-ansi-language:EN-GB;}
182
+ p.zzCopyright, li.zzCopyright
183
+ {mso-style-name:zzCopyright;
184
+ mso-style-noshow:yes;
185
+ mso-style-unhide:no;
186
+ mso-style-next:Normal;
187
+ margin-top:0cm;
188
+ margin-right:14.2pt;
189
+ margin-bottom:12.0pt;
190
+ margin-left:14.2pt;
191
+ text-align:justify;
192
+ line-height:12.0pt;
193
+ mso-pagination:widow-orphan;
194
+ tab-stops:20.15pt 25.7pt 481.15pt;
195
+ padding:0cm;
196
+ mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt;
197
+ font-size:11.0pt;
198
+ font-family:$bodyfont;
199
+ mso-fareast-font-family:$bodyfont;
200
+ mso-bidi-font-family:$bodyfont;
201
+ mso-ansi-language:EN-GB;}
202
+ div.zzCopyright
203
+ {mso-element:para-border-div;
204
+ border:solid windowtext 1.0pt;
205
+ mso-border-top-alt:solid windowtext .5pt;
206
+ mso-border-left-alt:solid windowtext .5pt;
207
+ mso-border-right-alt:solid windowtext .5pt;
208
+ mso-border-bottom-alt:solid windowtext .5pt;
209
+ padding:1.0pt 4.0pt 0cm 4.0pt;
210
+ margin-left:5.1pt;
211
+ margin-right:5.1pt;}
212
+ p.zzCopyright_address
213
+ {margin-top:0cm;
214
+ margin-right:14.2pt;
215
+ margin-bottom:0.0pt;
216
+ margin-left:14.2pt;
217
+ mso-layout-grid-align:none;
218
+ text-autospace:none;
219
+ padding-left:20pt;
220
+ mso-padding-alt-left:20pt;
221
+ font-size:10.0pt;
222
+ text-align:left;
223
+ mso-bidi-font-size:11.0pt;}
224
+ p.zzSTDTitle, li.zzSTDTitle, div.zzSTDTitle
225
+ {mso-style-name:zzSTDTitle;
226
+ mso-style-noshow:yes;
227
+ mso-style-unhide:no;
228
+ mso-style-next:Normal;
229
+ margin-top:20.0pt;
230
+ margin-right:0cm;
231
+ margin-bottom:38.0pt;
232
+ margin-left:0cm;
233
+ line-height:17.5pt;
234
+ text-align:center;
235
+ mso-line-height-rule:exactly;
236
+ mso-pagination:widow-orphan;
237
+ mso-hyphenate:none;
238
+ tab-stops:20.15pt;
239
+ font-size:16.0pt;
240
+ mso-bidi-font-size:11.0pt;
241
+ font-family:$headerfont;
242
+ mso-fareast-font-family:$headerfont;
243
+ mso-bidi-font-family:$headerfont;
244
+ mso-ansi-language:EN-GB;
245
+ mso-bidi-font-weight:normal;}
246
+ p.zzSTDTitle1, li.zzSTDTitle1, div.zzSTDTitle1
247
+ {mso-style-name:zzSTDTitle;
248
+ mso-style-noshow:yes;
249
+ mso-style-unhide:no;
250
+ mso-style-next:Normal;
251
+ margin-top:0pt;
252
+ margin-right:0cm;
253
+ margin-bottom:18.0pt;
254
+ margin-left:0cm;
255
+ line-height:17.5pt;
256
+ text-align:center;
257
+ mso-line-height-rule:exactly;
258
+ mso-pagination:widow-orphan;
259
+ mso-hyphenate:none;
260
+ tab-stops:20.15pt;
261
+ font-size:16.0pt;
262
+ mso-bidi-font-size:11.0pt;
263
+ font-family:$headerfont;
264
+ mso-fareast-font-family:$headerfont;
265
+ mso-bidi-font-family:$headerfont;
266
+ mso-ansi-language:EN-GB;
267
+ mso-bidi-font-weight:normal;}
268
+ p.Quote, li.Quote, div.Quote
269
+ {mso-style-priority:99;
270
+ margin-top:0cm;
271
+ margin-right:36.0pt;
272
+ margin-bottom:0cm;
273
+ margin-left:36.0pt;
274
+ text-align:justify;
275
+ line-height:12.0pt;
276
+ mso-pagination:widow-orphan;
277
+ tab-stops:20.15pt;
278
+ font-size:10.5pt;
279
+ font-family:$bodyfont;
280
+ mso-fareast-font-family:$bodyfont;
281
+ mso-bidi-font-family:$bodyfont;
282
+ mso-ansi-language:EN-GB;}
283
+ p.QuoteAttribution
284
+ {text-align:right;}
285
+ p.Admonition, li.Admonition, div.Admonition
286
+ {mso-style-priority:99;
287
+ mso-pagination:widow-orphan;
288
+ border:none;
289
+ padding:0cm;
290
+ font-size:10.5pt;
291
+ font-family:$bodyfont;
292
+ mso-ascii-font-family:$bodyfont;
293
+ mso-ascii-theme-font:minor-latin;
294
+ mso-fareast-font-family:$bodyfont;
295
+ mso-fareast-theme-font:minor-fareast;
296
+ mso-hansi-font-family:$bodyfont;
297
+ mso-hansi-theme-font:minor-latin;
298
+ mso-bidi-font-family:$bodyfont;
299
+ mso-bidi-theme-font:minor-bidi;
300
+ font-weight:bold;
301
+ mso-ansi-language:EN-GB;}
302
+ p.Code, li.Code, div.Code
303
+ {mso-style-name:Code;
304
+ mso-style-priority:16;
305
+ mso-style-unhide:no;
306
+ mso-style-qformat:yes;
307
+ margin:0cm;
308
+ margin-bottom:.0001pt;
309
+ line-height:10.0pt;
310
+ mso-pagination:widow-orphan;
311
+ tab-stops:20.15pt;
312
+ font-size:9.0pt;
313
+ mso-bidi-font-size:11.0pt;
314
+ font-family:$monospacefont;
315
+ mso-fareast-font-family:Calibri;
316
+ mso-bidi-font-family:"Source Sans Pro";
317
+ mso-ansi-language:EN-GB;}
318
+ p.Formula, li.Formula, div.Formula
319
+ {mso-style-name:Formula;
320
+ mso-style-noshow:yes;
321
+ mso-style-unhide:no;
322
+ margin-top:0cm;
323
+ margin-right:0cm;
324
+ margin-bottom:11.0pt;
325
+ margin-left:20.15pt;
326
+ line-height:12.0pt;
327
+ mso-pagination:widow-orphan;
328
+ tab-stops:center 212.65pt right 487.45pt;
329
+ font-size:11.0pt;
330
+ font-family:$bodyfont;
331
+ mso-fareast-font-family:$bodyfont;
332
+ mso-bidi-font-family:$bodyfont;
333
+ mso-ansi-language:EN-GB;}
334
+ ol
335
+ {margin-bottom:0cm;}
336
+ ul
337
+ {margin-bottom:0cm;}
338
+ table.MsoISOTable
339
+ {mso-style-name:"Table ISO";
340
+ mso-tstyle-rowband-size:0;
341
+ mso-tstyle-colband-size:0;
342
+ mso-style-noshow:yes;
343
+ mso-style-priority:99;
344
+ mso-style-parent:"";
345
+ mso-padding-alt:0cm 2.85pt 0cm 2.85pt;
346
+ mso-para-margin:0cm;
347
+ mso-para-margin-bottom:.0001pt;
348
+ mso-pagination:widow-orphan;
349
+ margin-bottom:12.0pt;
350
+ border-collapse:collapse;
351
+ mso-table-layout-alt:fixed;
352
+ border:solid windowtext 2pt;
353
+ mso-border-alt:solid windowtext 2pt;
354
+ mso-yfti-tbllook:480;
355
+ mso-border-insideh:.75pt solid windowtext;
356
+ mso-border-insidev:.75pt solid windowtext;
357
+ font-size:10.0pt;
358
+ font-family:$bodyfont;
359
+ mso-fareast-font-family:$bodyfont;}
360
+ table.MsoISOTable tr
361
+ {page-break-inside:avoid;}
362
+ table.MsoISOTable th
363
+ {border:solid windowtext 1pt;
364
+ mso-border-alt:solid windowtext 1pt;
365
+ padding:0cm 2.85pt 0cm 2.85pt;}
366
+ table.MsoISOTable td
367
+ {border:solid windowtext 1pt;
368
+ mso-border-alt:solid windowtext 1pt;
369
+ padding:0cm 2.85pt 0cm 2.85pt;}
370
+ table.MsoTableGrid
371
+ {mso-style-name:"Table Grid";
372
+ mso-tstyle-rowband-size:0;
373
+ mso-tstyle-colband-size:0;
374
+ mso-style-priority:39;
375
+ mso-style-unhide:no;
376
+ border:solid windowtext 1.0pt;
377
+ mso-border-alt:solid windowtext .5pt;
378
+ mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
379
+ mso-border-insideh:.5pt solid windowtext;
380
+ mso-border-insidev:.5pt solid windowtext;
381
+ mso-para-margin:0cm;
382
+ mso-para-margin-bottom:.0001pt;
383
+ mso-pagination:widow-orphan;
384
+ font-size:10.0pt;
385
+ font-family:$bodyfont;
386
+ mso-fareast-font-family:$bodyfont;}
387
+ td { page-break-inside:avoid; }
388
+ tr { page-break-after:avoid; }
389
+ span.stem
390
+ {font-family:"Cambria Math",serif;
391
+ mso-ascii-font-family:"Cambria Math";
392
+ font-style:
393
+ italic;}
394
+ div.formula
395
+ {tab-stops:center 212.65pt right 487.45pt;}
396
+ body
397
+ {tab-interval:21.0pt;
398
+ text-justify-trim:punctuation}
399
+ dt
400
+ {page-break-inside:avoid;
401
+ page-break-after:avoid}
402
+ .coverpage_docnumber
403
+ {text-align:center;
404
+ font-size:14.0pt;
405
+ font-weight:bold;}
406
+ .coverpage_techcommittee
407
+ {text-align:center;}
408
+ .coverpage_docstage
409
+ {text-align:center;
410
+ font-size:30.0pt;
411
+ color:#485094;}
412
+ div.coverpage_warning
413
+ {mso-element:para-border-div;
414
+ border:solid windowtext 1.0pt #485094;
415
+ mso-border-alt:solid windowtext .5pt;
416
+ padding:1.0pt 4.0pt 1.0pt 4.0pt #485094;
417
+ margin-left:4.25pt;
418
+ margin-right:4.25pt}
419
+ .coverpage_warning
420
+ {color:#485094;
421
+ font-size:10.0pt;}
422
+ .coverpage_footer
423
+ {text-align:center;
424
+ font-family:$headerfont;}
425
+ .coverpage_footer table
426
+ {text-align:left;
427
+ margin-left:auto;
428
+ margin-right:auto;}
429
+ a.TableFootnoteRef
430
+ {mso-style-priority:99;
431
+ vertical-align:super;}
432
+ aside {font-size:10.0pt;}
433
+ .Hant
434
+ {font-family:PMingLiU;}
435
+ /*
436
+ div.example {
437
+ border:solid black .25pt;
438
+ mso-border-alt:solid black .25pt;
439
+ padding:10pt;
440
+ mso-padding-alt:10.0pt 10.0pt 10.0pt 10.0pt;
441
+ margin:10pt;
442
+ mso-margin-alt:10.0pt 10.0pt 10.0pt 10.0pt;
443
+ }
444
+ */
445
+ table.example, table.Note {
446
+ margin-left: 21.0pt;
447
+ }
448
+ p.example, li.example, div.example, td.example, td.example p
449
+ {mso-style-name:示例; /* NAME: Example */
450
+ mso-style-unhide:no;
451
+ mso-style-parent:"";
452
+ mso-style-next:示例内容;
453
+ margin:0in;
454
+ margin-bottom:.0001pt;
455
+ text-align:justify;
456
+ text-justify:inter-ideograph;
457
+ /* text-indent:18.15pt;
458
+ mso-list:l2 level1 lfo1; */
459
+ mso-pagination:none;
460
+ font-size:9.0pt;
461
+ font-family:$bodyfont;
462
+ mso-hansi-font-family:$bodyfont;
463
+ mso-bidi-font-family:$bodyfont;}
464
+ p.leftpagenumber, li.leftpagenumber, div.leftpagenumber
465
+ {mso-style-name:leftpagenumber;
466
+ mso-style-priority:99;
467
+ mso-style-unhide:no;
468
+ mso-style-qformat:yes;
469
+ mso-style-parent:"";
470
+ margin-top:6.0pt;
471
+ margin-right:0cm;
472
+ margin-bottom:0cm;
473
+ margin-left:0cm;
474
+ margin-bottom:.0001pt;
475
+ mso-pagination:widow-orphan;
476
+ font-size:9.0pt;
477
+ font-family:$bodyfont;
478
+ mso-fareast-font-family:$bodyfont;
479
+ mso-ansi-language:EN-US;
480
+ mso-fareast-language:ZH-CN;}
481
+ p.rightpagenumber, li.rightpagenumber, div.rightpagenumber
482
+ {mso-style-name:rightpagenumber;
483
+ mso-style-priority:99;
484
+ mso-style-unhide:no;
485
+ mso-style-qformat:yes;
486
+ mso-style-parent:"";
487
+ margin-top:6.0pt;
488
+ margin-right:0cm;
489
+ margin-bottom:0cm;
490
+ margin-left:0cm;
491
+ margin-bottom:.0001pt;
492
+ text-align:right;
493
+ mso-pagination:widow-orphan;
494
+ font-size:9.0pt;
495
+ font-family:$bodyfont;
496
+ mso-fareast-font-family:$bodyfont;
497
+ mso-ansi-language:EN-US;
498
+ mso-fareast-language:ZH-CN;}
499
+ p.supersedes, li.supersedes, div.supersedes
500
+ {mso-style-name:封面标准代替信息; /* NAME: Cover page standard "supercedes" information */
501
+ mso-style-unhide:no;
502
+ mso-style-parent:"";
503
+ margin-top:2.85pt;
504
+ margin-right:0in;
505
+ margin-bottom:0in;
506
+ margin-left:0in;
507
+ margin-bottom:.0001pt;
508
+ text-align:right;
509
+ line-height:14.0pt;
510
+ mso-line-height-rule:exactly;
511
+ mso-pagination:widow-orphan;
512
+ mso-element:frame;
513
+ mso-element-frame-width:457.0pt;
514
+ mso-element-frame-height:62.1pt;
515
+ mso-element-frame-hspace:14.2pt;
516
+ mso-element-wrap:around;
517
+ mso-element-anchor-vertical:page;
518
+ mso-element-anchor-horizontal:page;
519
+ mso-element-left:82.25pt;
520
+ mso-element-top:145.5pt;
521
+ mso-height-rule:exactly;
522
+ mso-element-anchor-lock:locked;
523
+ font-size:10.5pt;
524
+ font-family:$bodyfont;
525
+ mso-hansi-font-family:$bodyfont;
526
+ mso-bidi-font-family:$bodyfont;}
527
+ table.dl
528
+ {margin-top:0cm;
529
+ margin-right:0cm;
530
+ margin-bottom:11.0pt;
531
+ margin-left:20.15pt;}
532
+ span.note_label, span.example_label, td.example_label, td.note_label
533
+ {
534
+ font-size: 9.0pt;
535
+ font-family:$headerfont;
536
+ }
537
+ p.dl {
538
+ margin-left:0pt;
539
+ font-size:10.5pt;
540
+ }
541
+ div.figure {
542
+ margin-top:12pt;
543
+ }
544
+ span.ccs_label {
545
+ font-weight: bold;
546
+ font-family: $bodyfont;
547
+ }
548
+ span.ccs {
549
+ font-family: $headerfont;
550
+ }
551
+ span.zh {
552
+ font-family: SimSun,serif;
553
+ }
554
+ span.en {
555
+ font-family: Cambria,serif;
556
+ }