metanorma-iso 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. checksums.yaml +7 -0
  2. data/.gitattributes +4 -0
  3. data/.gitignore +11 -0
  4. data/.hound.yml +3 -0
  5. data/.oss-guides.rubocop.yml +1077 -0
  6. data/.rubocop.ribose.yml +66 -0
  7. data/.rubocop.tb.yml +650 -0
  8. data/.rubocop.yml +15 -0
  9. data/.travis.yml +21 -0
  10. data/CODE_OF_CONDUCT.md +46 -0
  11. data/Gemfile +7 -0
  12. data/LICENSE +25 -0
  13. data/Makefile +39 -0
  14. data/README.adoc +882 -0
  15. data/Rakefile +6 -0
  16. data/asciidoctor-iso.gemspec.old +50 -0
  17. data/bin/rspec +18 -0
  18. data/docs/customisation.adoc +186 -0
  19. data/docs/guidance.adoc +436 -0
  20. data/docs/htmloutput.adoc +115 -0
  21. data/docs/quickstart.adoc +375 -0
  22. data/lib/asciidoctor-iso.rb +11 -0
  23. data/lib/asciidoctor/iso/base.rb +48 -0
  24. data/lib/asciidoctor/iso/biblio.rng +836 -0
  25. data/lib/asciidoctor/iso/cleanup.rb +39 -0
  26. data/lib/asciidoctor/iso/converter.rb +19 -0
  27. data/lib/asciidoctor/iso/front.rb +131 -0
  28. data/lib/asciidoctor/iso/isodoc.rng +1059 -0
  29. data/lib/asciidoctor/iso/isostandard.rnc +176 -0
  30. data/lib/asciidoctor/iso/isostandard.rng +1001 -0
  31. data/lib/asciidoctor/iso/section.rb +72 -0
  32. data/lib/asciidoctor/iso/validate.rb +190 -0
  33. data/lib/asciidoctor/iso/validate_requirements.rb +105 -0
  34. data/lib/asciidoctor/iso/validate_section.rb +214 -0
  35. data/lib/asciidoctor/iso/validate_style.rb +134 -0
  36. data/lib/asciidoctor/iso/version.rb +5 -0
  37. data/lib/isodoc/iso/html/header.html +206 -0
  38. data/lib/isodoc/iso/html/html_iso_intro.html +34 -0
  39. data/lib/isodoc/iso/html/html_iso_titlepage.html +34 -0
  40. data/lib/isodoc/iso/html/htmlstyle.scss +46 -0
  41. data/lib/isodoc/iso/html/isodoc.scss +696 -0
  42. data/lib/isodoc/iso/html/scripts.html +174 -0
  43. data/lib/isodoc/iso/html/style-human.scss +1277 -0
  44. data/lib/isodoc/iso/html/style-iso.scss +1257 -0
  45. data/lib/isodoc/iso/html/word_iso_intro.html +72 -0
  46. data/lib/isodoc/iso/html/word_iso_titlepage.html +62 -0
  47. data/lib/isodoc/iso/html/wordstyle.scss +1175 -0
  48. data/lib/isodoc/iso/html_convert.rb +118 -0
  49. data/lib/isodoc/iso/metadata.rb +107 -0
  50. data/lib/isodoc/iso/word_convert.rb +141 -0
  51. data/lib/metanorma/iso.rb +7 -0
  52. data/lib/metanorma/iso/processor.rb +44 -0
  53. data/spec/asciidoctor-iso/base_spec.rb +350 -0
  54. data/spec/asciidoctor-iso/blocks_spec.rb +469 -0
  55. data/spec/asciidoctor-iso/cleanup_spec.rb +765 -0
  56. data/spec/asciidoctor-iso/inline_spec.rb +162 -0
  57. data/spec/asciidoctor-iso/isobib_cache_spec.rb +332 -0
  58. data/spec/asciidoctor-iso/lists_spec.rb +190 -0
  59. data/spec/asciidoctor-iso/macros_spec.rb +111 -0
  60. data/spec/asciidoctor-iso/refs_spec.rb +643 -0
  61. data/spec/asciidoctor-iso/section_spec.rb +334 -0
  62. data/spec/asciidoctor-iso/table_spec.rb +307 -0
  63. data/spec/asciidoctor-iso/validate_spec.rb +907 -0
  64. data/spec/assets/header.html +7 -0
  65. data/spec/assets/html.css +2 -0
  66. data/spec/assets/htmlcover.html +4 -0
  67. data/spec/assets/htmlintro.html +5 -0
  68. data/spec/assets/i18n.yaml +2 -0
  69. data/spec/assets/iso.doc +1093 -0
  70. data/spec/assets/iso.headless.html +33 -0
  71. data/spec/assets/iso.html +278 -0
  72. data/spec/assets/iso.xml +8 -0
  73. data/spec/assets/rice_image1.png +0 -0
  74. data/spec/assets/scripts.html +3 -0
  75. data/spec/assets/std.css +2 -0
  76. data/spec/assets/word.css +2 -0
  77. data/spec/assets/wordcover.html +3 -0
  78. data/spec/assets/wordintro.html +4 -0
  79. data/spec/examples/103_01_02.html +247 -0
  80. data/spec/examples/english.yaml +69 -0
  81. data/spec/examples/iso_123_.xml +45 -0
  82. data/spec/examples/iso_123_all_parts.xml +45 -0
  83. data/spec/examples/iso_123_no_year_note.xml +46 -0
  84. data/spec/examples/iso_124_.xml +41 -0
  85. data/spec/examples/iso_216_.xml +47 -0
  86. data/spec/examples/iso_iec_12382_.xml +48 -0
  87. data/spec/examples/rice.adoc +715 -0
  88. data/spec/examples/rice.preview.html +1877 -0
  89. data/spec/examples/rice.sh +4 -0
  90. data/spec/examples/rice_images/rice_image1.png +0 -0
  91. data/spec/examples/rice_images/rice_image2.png +0 -0
  92. data/spec/examples/rice_images/rice_image3_1.png +0 -0
  93. data/spec/examples/rice_images/rice_image3_2.png +0 -0
  94. data/spec/examples/rice_images/rice_image3_3.png +0 -0
  95. data/spec/isodoc/i18n_spec.rb +642 -0
  96. data/spec/isodoc/iso_spec.rb +168 -0
  97. data/spec/isodoc/metadata_spec.rb +152 -0
  98. data/spec/isodoc/postproc_spec.rb +405 -0
  99. data/spec/isodoc/section_spec.rb +522 -0
  100. data/spec/isodoc/xref_spec.rb +1337 -0
  101. data/spec/metanorma/processor_spec.rb +70 -0
  102. data/spec/spec_helper.rb +227 -0
  103. metadata +402 -0
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0"?>
2
+ <!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <div xmlns:epub="http://www.idpf.org/2007/ops">
4
+
5
+
6
+ <div class="title-section">
7
+ <p>&#xA0;</p>
8
+ </div>
9
+ <br />
10
+ <div class="prefatory-section">
11
+ <p>&#xA0;</p>
12
+ </div>
13
+ <br />
14
+ <main class="main-section"><button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
15
+ <br />
16
+ <div>
17
+ <h1 class="ForewordTitle">Foreword</h1>
18
+ <div id="" class="Note">
19
+ <p><span class="note_label">NOTE</span>&#xA0; These results are based on a study carried out on three different types of kernel.</p>
20
+ </div>
21
+ </div>
22
+ <p class="zzSTDTitle1"></p>
23
+ </main>
24
+ <script type="text/x-mathjax-config">
25
+ MathJax.Hub.Config({
26
+ asciimath2jax: {
27
+ delimiters: [['(#(', ')#)']]
28
+ }
29
+ });
30
+ </script>
31
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=AM_HTMLorMML"></script>
32
+
33
+ </div>
@@ -0,0 +1,278 @@
1
+ <?xml version="1.0"?>
2
+ <!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns:epub="http://www.idpf.org/2007/ops">
4
+ <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5
+ <title>spec/assets/iso</title><style>
6
+ <!--
7
+ /* another empty stylesheet */
8
+
9
+ -->
10
+ </style>
11
+ <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
12
+
13
+ <!--TOC script import-->
14
+ <script type="text/javascript" src="https://cdn.rawgit.com/jgallen23/toc/0.3.2/dist/toc.min.js"></script>
15
+
16
+ <!--Google fonts-->
17
+ <link href="https://fonts.googleapis.com/css?family=Overpass:300,300i,600,900" rel="stylesheet" />
18
+ <link href="https://fonts.googleapis.com/css?family=Lato:400,400i,700,900" rel="stylesheet" />
19
+ <!--Font awesome import for the link icon-->
20
+ <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/solid.css" integrity="sha384-v2Tw72dyUXeU3y4aM2Y0tBJQkGfplr39mxZqlTBDUZAb9BGoC40+rdFCG0m10lXk" crossorigin="anonymous" />
21
+ <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/fontawesome.css" integrity="sha384-q3jl8XQu1OpdLgGFvNRnPdj5VIlCvgsDQTQB6owSOHWlAurxul7f+JpUOVdAiJ5P" crossorigin="anonymous" />
22
+ </head>
23
+ <body lang="EN-US" link="blue" vlink="#954F72" xml:lang="EN-US">
24
+ <div class="title-section"> <div id="toggle"> <span>&#x2022;</span> </div>
25
+ <p class="coverpage_docnumber"> :(E) </p>
26
+
27
+ <p class="coverpage_techcommittee">&#xA0;</p>
28
+
29
+ <p class="coverpage_techcommittee"><a name="CVP_Secretariat_Loca" id="CVP_Secretariat_Loca">Secretariat</a>: XXXX</p>
30
+
31
+ <div class="doctitle-en"><span class="title"></span> <span class="subtitle"></span> <span class="part"></span></div>
32
+
33
+ <div class="doctitle-fr"><span class="title"></span> <span class="subtitle"></span> <span class="part"></span></div>
34
+
35
+ <div class="coverpage_docstage">
36
+ <p> stage</p>
37
+ </div>
38
+
39
+
40
+
41
+ </div>
42
+
43
+
44
+
45
+ <p>&#xA0;</p>
46
+ </div>
47
+ <br />
48
+ <div class="prefatory-section"><div class="copyright">
49
+ <p class="year">
50
+ &#xA9; , Published in Switzerland
51
+ </p>
52
+
53
+ <p class="message">
54
+ All rights
55
+ reserved. Unless otherwise specified, no part of this publication may be
56
+ reproduced or utilized otherwise in any form or by any means, electronic or
57
+ mechanical, including photocopying, or posting on the internet or an intranet,
58
+ without prior written permission. Permission can be requested from either ISO
59
+ at the address below or ISO&#x2019;s member body in the country of the requester.
60
+ </p>
61
+
62
+ <p class="name">ISO copyright office</p>
63
+ <p class="address">
64
+ Ch. de Blandonnet 8 &#x2022; CP 401<br />
65
+ CH-1214 Vernier, Geneva, Switzerland<br />
66
+ Tel.&#xA0;&#xA0;+ 41 22 749 01 11<br />
67
+ Fax&#xA0;&#xA0;+ 41 22 749 09 47<br />
68
+ copyright@iso.org<br />
69
+ www.iso.org
70
+ </p>
71
+ </div>
72
+
73
+
74
+
75
+
76
+ <nav>
77
+
78
+ <h1 id="content">Contents</h1>
79
+ <div id="toc"></div>
80
+
81
+ </nav>
82
+
83
+ <p>&#xA0;</p>
84
+ </div>
85
+ <br />
86
+ <main class="main-section"><button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
87
+ <br />
88
+ <div>
89
+ <h1 class="ForewordTitle">Foreword</h1>
90
+ <div id="" class="Note">
91
+ <p><span class="note_label">NOTE</span>&#xA0; These results are based on a study carried out on three different types of kernel.</p>
92
+ </div>
93
+ </div>
94
+ <p class="zzSTDTitle1"></p>
95
+ </main>
96
+ <script type="text/x-mathjax-config">
97
+ MathJax.Hub.Config({
98
+ asciimath2jax: {
99
+ delimiters: [['(#(', ')#)']]
100
+ }
101
+ });
102
+ </script>
103
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=AM_HTMLorMML"></script>
104
+ <script>
105
+ //TOC generation
106
+ $('#toc').toc({
107
+ 'selectors': 'h1,h2:not(.TermNum)', //elements to use as headings
108
+ 'container': 'main', //element to find all selectors in
109
+ 'smoothScrolling': true, //enable or disable smooth scrolling on click
110
+ 'prefix': 'toc', //prefix for anchor tags and class names
111
+ 'onHighlight': function(el) {}, //called when a new section is highlighted
112
+ 'highlightOnScroll': true, //add class to heading that is currently in focus
113
+ 'highlightOffset': 100, //offset to trigger the next headline
114
+ 'anchorName': function(i, heading, prefix) { //custom function for anchor name
115
+ return prefix+i;
116
+ },
117
+ 'headerText': function(i, heading, $heading) { //custom function building the header-item text
118
+ return $heading.text();
119
+ },
120
+ 'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
121
+ return $heading[0].tagName.toLowerCase();
122
+ }
123
+ });
124
+
125
+ </script>
126
+
127
+ <script>
128
+ //TOC toggle animation
129
+ $('#toggle').on('click', function(){
130
+ if( $('nav').is(':visible') ) {
131
+ $('nav').animate({ 'left': '-353px' }, 'slow', function(){
132
+ $('nav').hide();
133
+ });
134
+ $('body').animate({ 'margin-left': '0' }, 'slow');
135
+ }
136
+ else {
137
+ $('nav').show();
138
+ $('nav').animate({ 'left': '0px' }, 'slow');
139
+ $('body').animate({ 'margin-left': '298px' }, 'slow');
140
+ }
141
+ });
142
+ </script>
143
+
144
+ <script>
145
+ // Scroll to top button
146
+ window.onscroll = function() {scrollFunction()};
147
+
148
+ function scrollFunction() {
149
+ if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
150
+ document.getElementById("myBtn").style.display = "block";
151
+ } else {
152
+ document.getElementById("myBtn").style.display = "none";
153
+ }
154
+ }
155
+
156
+ // When the user clicks on the button, scroll to the top of the document
157
+ function topFunction() {
158
+ document.body.scrollTop = 0;
159
+ document.documentElement.scrollTop = 0;
160
+ }
161
+ </script>
162
+
163
+ <script>
164
+ $(document).ready(function() {
165
+ $('[id^=toc]').each(function ()
166
+ {
167
+ var currentToc = $(this);
168
+ var url = window.location.href;
169
+ currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
170
+ });
171
+ });
172
+ </script>
173
+
174
+
175
+ <script>
176
+
177
+ // jQuery Inline Footnotes v1.0.3
178
+ // Copyright (c) 2011 Vesa Vänskä, released under the MIT License.
179
+
180
+ // Generated by CoffeeScript 1.6.1
181
+ (function() {
182
+
183
+ (function($) {
184
+ $.inlineFootnote = function(el, options) {
185
+ var _this = this;
186
+ this.el = $(el);
187
+ this.el.data("inlineFootnote", this);
188
+ this.initialize = function() {
189
+ this.options = $.extend({}, $.inlineFootnote.defaultOptions, options);
190
+ this.footnoteId = this.el.attr("href").match(/#(.*)/)[1];
191
+ if (this.footnoteId) {
192
+ this.el.mouseenter(this.openBox);
193
+ return $("body").mousemove(this.closeBox);
194
+ }
195
+ };
196
+ this.openBox = function(event) {
197
+ var footnoteContent, linkOffset;
198
+ if (!_this.box) {
199
+ footnoteContent = $("[id='" + _this.footnoteId + "']").children().filter(":not('" + _this.options.hideFromContent + "')");
200
+ linkOffset = _this.el.offset();
201
+ _this.box = $("<div />", {
202
+ id: _this.options.boxId,
203
+ html: footnoteContent.clone().find(_this.options.hideFromContent).remove().end(),
204
+ css: {
205
+ position: "absolute",
206
+ top: linkOffset.top,
207
+ left: linkOffset.left + _this.el.outerWidth()
208
+ }
209
+ }).appendTo("body");
210
+ return _this.positionBox();
211
+ }
212
+ };
213
+ this.closeBox = function(event) {
214
+ if (_this.box) {
215
+ if (_this.isHoveringFootnote(event)) {
216
+ clearTimeout(_this.closeTimeout);
217
+ return _this.closeTimeout = null;
218
+ } else {
219
+ if (!_this.closeTimeout) {
220
+ return _this.closeTimeout = setTimeout((function() {
221
+ _this.box.remove();
222
+ return _this.box = null;
223
+ }), _this.options.hideDelay);
224
+ }
225
+ }
226
+ }
227
+ };
228
+ this.isHoveringFootnote = function(event) {
229
+ return this.box.is(event.target) || $(event.target).closest(this.box).length > 0 || event.target === this.el[0];
230
+ };
231
+ this.positionBox = function() {
232
+ var boxHorizontalPadding, boxLeft, boxWidth, linkLeftOffset, windowWidth;
233
+ boxHorizontalPadding = parseInt(this.box.css("padding-left")) + parseInt(this.box.css("padding-right"));
234
+ linkLeftOffset = this.el.offset().left;
235
+ windowWidth = $(window).width();
236
+ if ((windowWidth / 2) > linkLeftOffset) {
237
+ boxLeft = linkLeftOffset + 20;
238
+ boxWidth = windowWidth - boxLeft - boxHorizontalPadding - this.options.boxMargin * 2;
239
+ if (boxWidth > this.options.maximumBoxWidth) {
240
+ boxWidth = this.options.maximumBoxWidth;
241
+ }
242
+ } else {
243
+ boxWidth = linkLeftOffset - boxHorizontalPadding - this.options.boxMargin * 2;
244
+ if (boxWidth > this.options.maximumBoxWidth) {
245
+ boxWidth = this.options.maximumBoxWidth;
246
+ }
247
+ boxLeft = linkLeftOffset - boxWidth - this.options.boxMargin * 2;
248
+ }
249
+ return this.box.css({
250
+ width: boxWidth,
251
+ left: boxLeft
252
+ });
253
+ };
254
+ return this.initialize();
255
+ };
256
+ $.inlineFootnote.defaultOptions = {
257
+ boxMargin: 20,
258
+ hideDelay: 200,
259
+ hideFromContent: "[rel=footnote]",
260
+ maximumBoxWidth: 500,
261
+ boxId: "footnote_box"
262
+ };
263
+ return $.fn.inlineFootnote = function(options) {
264
+ return this.each(function() {
265
+ return new $.inlineFootnote(this, options);
266
+ });
267
+ };
268
+ })(jQuery);
269
+
270
+ }).call(this);
271
+ </script>
272
+
273
+ <script>
274
+ $(function() {
275
+ $("[rel=footnote]").inlineFootnote();
276
+ });
277
+ </script></body>
278
+ </html>
@@ -0,0 +1,8 @@
1
+ <iso-standard xmlns="http://riboseinc.com/isoxml">
2
+ <foreword>
3
+ <note>
4
+ <p id="_f06fd0d1-a203-4f3d-a515-0bdba0f8d83f">These results are based on a study carried out on three different types of kernel.</p>
5
+ </note>
6
+ </foreword>
7
+ </iso-standard>
8
+
Binary file
@@ -0,0 +1,3 @@
1
+ <script>
2
+ This is > a script
3
+ </script>
@@ -0,0 +1,2 @@
1
+
2
+ /* a third empty stylesheet */
@@ -0,0 +1,2 @@
1
+
2
+ /* one empty stylesheet */
@@ -0,0 +1,3 @@
1
+
2
+ /* an empty word cover page */
3
+
@@ -0,0 +1,4 @@
1
+
2
+ An empty word intro page.
3
+
4
+ WORDTOC
@@ -0,0 +1,247 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <TITLE>IEC 60050 - International Electrotechnical Vocabulary - Details for IEV number 103-01-02: "functional"</TITLE>
5
+ <meta name="Description" content="Definition of functional by Electropedia. Meaning of functional. Translations of functional. Equivalent terms for functional." />
6
+ <meta name="Keywords" content="functional,fonctionnelle, f,دالى,Funktional, n,funcional,funzionale,汎関数,funkcjonał,funcional,funktional,범함수,функционал, м јд,泛函, dictionary, definition, meaning, translation, term, terminology, IEC 60050, Electropedia, IEV 103-01-02,IEV, International, Electrotechnical, Vocabulary, VEI, Vocabulaire, Electrotechnique, Internationale, IEC, electric, electronic" />
7
+ <meta name="Copyright" content="IEC - International Electrotechnical Commission" />
8
+ <meta name="Language" content="English, French, Arabic, Chinese, Czech, Finnish, German, Italian, Japanese, Norwegian, Polish, Portuguese, Russian, Serbian, Slovenian, Spanish, Swedish" />
9
+ <SCRIPT language="JavaScript">
10
+
11
+ function printWindow() { bV = parseInt(navigator.appVersion); if (bV >= 4) window.print(); }
12
+
13
+ function popup(name) { msgWindow=open(name,'popup','history=yes,toolbar=no,scrollbars=yes,resizable=yes,width=700,height=750'); }
14
+
15
+ </SCRIPT>
16
+
17
+ <STYLE TYPE="text/css">
18
+ a:link {color: blue ; text-decoration: none}
19
+ a:visited { color: blue ; text-decoration: none }
20
+ a:active { color: blue ; text-decoration: none }
21
+ a:hover { color: blue ; text-decoration: none; background-color: #C0C0C0}
22
+ table {font-family: arial}
23
+ td { font-size: 11pt; font-family: Arial, Helvetica, sans-serif }
24
+ h6 {page-break-before: always;}
25
+ </STYLE>
26
+
27
+ <STYLE TYPE="text/css" media="print">
28
+ .hide { display: none }
29
+ </STYLE>
30
+ <!-- Google Analytics -->
31
+ <script type="text/javascript">
32
+ var _gaq = _gaq || [];
33
+ _gaq.push(['_setAccount', 'UA-34400412-1']);
34
+ _gaq.push(['_trackPageview']);
35
+ (function() {
36
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
37
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
38
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
39
+ })();
40
+ </script>
41
+ <!-- End Google Analytics -->
42
+ <meta name="Description" content="functional,fonctionnelle, f,دالى,Funktional, n,funcional,funzionale,汎関数,funkcjonał,funcional,funktional,범함수,функционал, м јд,泛函" >
43
+ <STYLE TYPE="text/css">
44
+ @font-face { font-family: 'liberation_serifitalic';
45
+ src: url('/font/Liberation-Serif-fontfacekit/web%20fonts/liberationserif_italic_macroman/LiberationSerif-Italic-webfont.eot');
46
+ src: url('/font/Liberation-Serif-fontfacekit/web%20fonts/liberationserif_italic_macroman/LiberationSerif-Italic-webfont.eot?#iefix') format('embedded-opentype'),
47
+ url('/font/Liberation-Serif-fontfacekit/web%20fonts/liberationserif_italic_macroman/LiberationSerif-Italic-webfont.woff') format('woff'),
48
+ url('/font/Liberation-Serif-fontfacekit/web%20fonts/liberationserif_italic_macroman/LiberationSerif-Italic-webfont.ttf') format('truetype'),
49
+ url('/font/Liberation-Serif-fontfacekit/web%20fonts/liberationserif_italic_macroman/LiberationSerif-Italic-webfont.svg#liberation_serifitalic') format('svg');
50
+ }
51
+
52
+ @font-face { font-family: 'liberation_serifregular';
53
+ src: url('/font/Liberation-Serif-fontfacekit/web%20fonts/liberationserif_regular_macroman/LiberationSerif-Regular-webfont.eot');
54
+ src: url('/font/Liberation-Serif-fontfacekit/web%20fonts/liberationserif_regular_macroman/LiberationSerif-Regular-webfont.eot?#iefix') format('embedded-opentype'),
55
+ url('/font/Liberation-Serif-fontfacekit/web%20fonts/liberationserif_regular_macroman/LiberationSerif-Regular-webfont.woff') format('woff'),
56
+ url('/font/Liberation-Serif-fontfacekit/web%20fonts/liberationserif_regular_macroman/LiberationSerif-Regular-webfont.ttf') format('truetype'),
57
+ url('/font/Liberation-Serif-fontfacekit/web%20fonts/liberationserif_regular_macroman/LiberationSerif-Regular-webfont.svg#liberation_serifregular') format('svg');
58
+ font-weight: normal; font-style: normal;}
59
+ * {font-family: liberation_serifregular;}body {font-family: liberation_serifregular;}td {font-family: liberation_serifregular;}i {font-family: liberation_serifitalic;}#copy td { font-size:11px; }#copy a { font-size:11px; text-decoration: none;}#copy {border-top: 1px #c0c0c0 solid;}hr {height: 1px; color: #c0c0c0;}</STYLE><script type="text/javascript" src="/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
60
+ <script language="JavaScript" type="text/javascript">
61
+ <!--
62
+ document._domino_target = "_self";
63
+ function _doClick(v, o, t, h) {
64
+ var form = document._Display;
65
+ if (form.onsubmit) {
66
+ var retVal = form.onsubmit();
67
+ if (typeof retVal == "boolean" && retVal == false)
68
+ return false;
69
+ }
70
+ var target = document._domino_target;
71
+ if (o.href != null) {
72
+ if (o.target != null)
73
+ target = o.target;
74
+ } else {
75
+ if (t != null)
76
+ target = t;
77
+ }
78
+ form.target = target;
79
+ form.__Click.value = v;
80
+ if (h != null)
81
+ form.action += h;
82
+ form.submit();
83
+ return false;
84
+ }
85
+ // -->
86
+ </script>
87
+ </head>
88
+ <body text="#000000" bgcolor="#FFFFFF" leftmargin=10 topmargin=0>
89
+
90
+ <form method="post" action="/iev/iev.nsf/display?OpenForm&amp;Seq=1&amp;ievref=103-01-02" name="_Display">
91
+ <input type="hidden" name="__Click" value="0"><style>
92
+ .Top {
93
+ margin: auto;
94
+ height: 109px;
95
+ padding: 0px;
96
+ font-family: Arial, Helvetica;
97
+ }
98
+ .logolink {
99
+ position: relative;
100
+ width: 260px;
101
+ height: 60px;
102
+ top: 20px;
103
+ left: 8px;
104
+ float: left;
105
+ font-family: Arial, Helvetica, sans-serif;
106
+ }
107
+ .logolink h1 {
108
+ color: #000;
109
+ font-size: 17px;
110
+ font-weight: bold;
111
+ letter-spacing: 2px;
112
+ float:left;
113
+ top:-60px;
114
+ margin:0;
115
+ margin-left:80px;
116
+ position:relative;
117
+ font-family: Arial, Helvetica, sans-serif;
118
+ }
119
+ .top {
120
+ outline: none;
121
+ margin: 0px;
122
+ padding: 0px;
123
+ font-family: Arial, Helvetica, sans-serif;
124
+ font-size: 12px;
125
+ }
126
+ </style><div class="Top">
127
+ <div class="logolink"><a title="Back to homepage" href="http://www.iec.ch/">
128
+ <img title="www.iec.ch" alt=" www.iec.ch" src="/img/logo.jpg"></a>
129
+ <h1>International</h1>
130
+ <h1>Electrotechnical</h1>
131
+ <h1>Commission</h1>
132
+ </div>
133
+ </div>
134
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
135
+ <tr valign="top"><td width="1%" valign="middle"><img width="65" height="1" src="/icons/ecblank.gif" border="0" alt=""><br>
136
+ </td><td width="1%"><img width="19" height="1" src="/icons/ecblank.gif" border="0" alt=""><br>
137
+ </td><td width="46%" valign="middle"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""><br>
138
+ </td><td width="1%"><img width="19" height="1" src="/icons/ecblank.gif" border="0" alt=""><br>
139
+ </td><td width="54%"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""><br>
140
+ </td></tr>
141
+ </table>
142
+ <div align="right"><font size="2" face="Arial"> </font><a href="&amp;login"></a></div>
143
+ <table style="width: 100%; margin-bottom: 10px;" cellpadding=0 width="100%" border="0" cellspacing="0" cellpadding="0">
144
+ <tr valign="top"><td style="width: 144px;" width="15%"><img src="/iev/iev.nsf/30c867bbcbcee00dc1257e81003e697e/$Body/0.E5A?OpenElement&amp;FieldElemFormat=gif" width="144" height="20"></td><td class="hide" style="border-top: 1px #c0c0c0 solid; width: 100% !important; " width="85%"><div align="right"><font size="2" face="Arial">Queries, comments, suggestions? Please </font><a href="mailto:custserv@iec.ch"><font size="2" face="Arial">contact us</font></a><font size="2" face="Arial">.</font></div></td></tr>
145
+ </table>
146
+ <br>
147
+
148
+ <input type="button" value=" Home " class="hide" style="font-size: 11px;" onclick="window.open('/iev/iev.nsf/6d6bdd8667c378f7c12581fa003d80e7?OpenForm', document._domino_target);">
149
+ <input type="button" onclick="history.back()" value=" Back " class="hide" style="font-size: 11px;">
150
+ <input type="button" onclick="printWindow()" value=" Print " class="hide" style="font-size: 11px;"><font face=""><br>
151
+
152
+ <br>
153
+
154
+ <table cellpadding="1" cellspacing="0" border="0" border="0" cellspacing="0" cellpadding="0">
155
+ <tr valign="top"><td width="57"><b><font size="2" color="#800080" face="Arial">Area</font></b></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"><b><font size="2" face="Arial"> </font></b><a href=index?openform&part=103>Mathematics - Functions</a> / General concepts</td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
156
+
157
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
158
+
159
+ <tr valign="top"><td width="57"><b><font size="2" color="#800080" face="Arial">IEV ref</font></b></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"><b>103-01-02</b></td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
160
+
161
+ <tr valign="top"><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
162
+
163
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
164
+
165
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080">en</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> <b>functional</b> </td><td class="hide" width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
166
+
167
+ <tr valign="top"><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> function for which the argument is a function and the value a number<p>Note 1 to entry: An example of a functional of the function <i>f</i>(<i>t</i>) is <math> <semantics> <mrow> <mstyle displaystyle='true'> <mrow> <msubsup> <mo>∫</mo> <mrow> <msub> <mi>t</mi> <mn>2</mn> </msub> </mrow> <mrow> <msub> <mi>t</mi> <mn>1</mn> </msub> </mrow> </msubsup> <mrow> <mi>f</mi><mo stretchy='false'>(</mo><mi>t</mi><mo stretchy='false'>)</mo><mo>d</mo><mi>t</mi></mrow> </mrow> </mstyle></mrow> <annotation encoding='MathType-MTEF'>MathType@MTEF@5@5@+= feaagKart1ev2aaatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbbjxAHX garuavP1wzZbItLDhis9wBH5garmWu51MyVXgarqqtubsr4rNCHbGe aGqipG0dh9qqWrVepG0dbbL8F4rqqrVepeea0xe9LqFf0xc9q8qqaq Fn0lXdHiVcFbIOFHK8Feea0dXdar=Jb9hs0dXdHuk9fr=xfr=xfrpe WZqaaeaaciWacmGadaGadeaabaGaaqaaaOqaamaapedabaGaamOzai aacIcacaWG0bGaaiykaKqzaeGaaiizaOGaamiDaaWcbaGaamiDamaa BaaameaacaaIYaaabeaaaSqaaiaadshadaWgaaadbaGaaGymaaqaba aaniabgUIiYdaaaa@40DD@ </annotation> </semantics> </math>. </td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
168
+
169
+ <tr valign="top"><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
170
+
171
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
172
+
173
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080">fr</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> <b>fonctionnelle</b>, f </td><td class="hide" width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
174
+
175
+ <tr valign="top"><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> fonction dont l'argument est une fonction et la valeur un nombre <p>Note 1 à l'article: Un exemple de fonctionnelle de la fonction <i>f</i>(<i>t</i>) est <math> <semantics> <mrow> <mstyle displaystyle='true'> <mrow> <msubsup> <mo>∫</mo> <mrow> <msub> <mi>t</mi> <mn>2</mn> </msub> </mrow> <mrow> <msub> <mi>t</mi> <mn>1</mn> </msub> </mrow> </msubsup> <mrow> <mi>f</mi><mo stretchy='false'>(</mo><mi>t</mi><mo stretchy='false'>)</mo><mo>d</mo><mi>t</mi></mrow> </mrow> </mstyle></mrow> <annotation encoding='MathType-MTEF'>MathType@MTEF@5@5@+= feaagKart1ev2aaatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbbjxAHX garuavP1wzZbItLDhis9wBH5garmWu51MyVXgarqqtubsr4rNCHbGe aGqipG0dh9qqWrVepG0dbbL8F4rqqrVepeea0xe9LqFf0xc9q8qqaq Fn0lXdHiVcFbIOFHK8Feea0dXdar=Jb9hs0dXdHuk9fr=xfr=xfrpe WZqaaeaaciWacmGadaGadeaabaGaaqaaaOqaamaapedabaGaamOzai aacIcacaWG0bGaaiykaKqzaeGaaiizaOGaamiDaaWcbaGaamiDamaa BaaameaacaaIYaaabeaaaSqaaiaadshadaWgaaadbaGaaGymaaqaba aaniabgUIiYdaaaa@40DD@ </annotation> </semantics> </math>. </td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
176
+
177
+ <tr valign="top"><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
178
+
179
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
180
+
181
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080">ar</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td style="direction:rtl; text-align:left" width="567"> دالى </td><td class="hide" width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
182
+
183
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
184
+
185
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080">de</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> Funktional, n </td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
186
+
187
+ <tr valign="top"><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
188
+
189
+ <tr valign="top"><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
190
+
191
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
192
+
193
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080">es</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> funcional </td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
194
+
195
+ <tr valign="top"><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
196
+
197
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
198
+
199
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080">it</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> funzionale </td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
200
+
201
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
202
+
203
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080" face="Arial">ko</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> 범함수 </td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
204
+
205
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
206
+
207
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080">ja</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td lang="ja-jp" width="567"> 汎関数 </td><td class="hide" width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
208
+
209
+ <tr valign="top"><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
210
+
211
+ <tr></tr>
212
+
213
+ <tr></tr>
214
+
215
+ <tr></tr>
216
+
217
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
218
+
219
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080" face="Arial">pl</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> funkcjonał </td><td class="hide" width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
220
+
221
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
222
+
223
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080" face="Arial">pt</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> funcional </td><td class="hide" width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
224
+
225
+ <tr valign="top"><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
226
+
227
+ <tr valign="top"><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
228
+
229
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
230
+
231
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080">sr</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> функционал, м јд </td><td width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
232
+
233
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
234
+
235
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080">sv</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> funktional </td><td class="hide" width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
236
+
237
+ <tr valign="top"><td width="699" colspan="4"><hr></td></tr>
238
+
239
+ <tr valign="top"><td width="57"><div align="center"><font color="#800080" face="Arial">zh</font></div></td><td width="19"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td><td width="567"> 泛函 </td><td class="hide" width="57"><img width="1" height="1" src="/icons/ecblank.gif" border="0" alt=""></td></tr>
240
+ </table>
241
+ </font><hr>
242
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
243
+ <tr valign="top"><td width="25%"><a href="/iev/iev.nsf/display?openform&amp;ievref=103-01-02&amp;login"></a><font color="#800080">Publication date:</font> 2009-12 </td><td width="75%"><div align="right"><a href="http://www.iec.ch/about/copyright/copyright-db_entry.htm" target="_blank"><font color="#003399">Copyright</font></a> © <a href="http://www.iec.ch/about/co/office-e.htm" target="_blank"><font color="#003399">IEC</font></a> 2018. All Rights Reserved.</div></td></tr>
244
+ </table>
245
+ </form>
246
+ </body>
247
+ </html>