metanorma-standoc 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitattributes +4 -0
- data/.gitignore +11 -0
- data/.hound.yml +3 -0
- data/.oss-guides.rubocop.yml +1077 -0
- data/.rubocop.ribose.yml +66 -0
- data/.rubocop.tb.yml +650 -0
- data/.rubocop.yml +15 -0
- data/.travis.yml +21 -0
- data/CODE_OF_CONDUCT.md +46 -0
- data/Gemfile +7 -0
- data/LICENSE +25 -0
- data/Makefile +39 -0
- data/README.adoc +9 -0
- data/Rakefile +6 -0
- data/bin/rspec +18 -0
- data/docs/customisation.adoc +178 -0
- data/docs/guidance.adoc +436 -0
- data/docs/htmloutput.adoc +115 -0
- data/docs/quickstart.adoc +375 -0
- data/lib/asciidoctor/standoc/base.rb +198 -0
- data/lib/asciidoctor/standoc/biblio.rng +836 -0
- data/lib/asciidoctor/standoc/blocks.rb +190 -0
- data/lib/asciidoctor/standoc/cleanup.rb +247 -0
- data/lib/asciidoctor/standoc/cleanup_block.rb +193 -0
- data/lib/asciidoctor/standoc/cleanup_footnotes.rb +78 -0
- data/lib/asciidoctor/standoc/cleanup_ref.rb +125 -0
- data/lib/asciidoctor/standoc/converter.rb +55 -0
- data/lib/asciidoctor/standoc/front.rb +121 -0
- data/lib/asciidoctor/standoc/inline.rb +134 -0
- data/lib/asciidoctor/standoc/isodoc.rng +1059 -0
- data/lib/asciidoctor/standoc/lists.rb +87 -0
- data/lib/asciidoctor/standoc/macros.rb +95 -0
- data/lib/asciidoctor/standoc/ref.rb +187 -0
- data/lib/asciidoctor/standoc/section.rb +159 -0
- data/lib/asciidoctor/standoc/table.rb +61 -0
- data/lib/asciidoctor/standoc/utils.rb +121 -0
- data/lib/asciidoctor/standoc/validate.rb +65 -0
- data/lib/asciidoctor/standoc/validate_section.rb +42 -0
- data/lib/asciidoctor/standoc/version.rb +5 -0
- data/lib/metanorma-standoc.rb +9 -0
- data/lib/metanorma/standoc.rb +7 -0
- data/lib/metanorma/standoc/processor.rb +40 -0
- data/metanorma-standoc.gemspec +47 -0
- data/spec/asciidoctor-standoc/base_spec.rb +271 -0
- data/spec/asciidoctor-standoc/blocks_spec.rb +469 -0
- data/spec/asciidoctor-standoc/cleanup_spec.rb +760 -0
- data/spec/asciidoctor-standoc/inline_spec.rb +162 -0
- data/spec/asciidoctor-standoc/isobib_cache_spec.rb +332 -0
- data/spec/asciidoctor-standoc/lists_spec.rb +190 -0
- data/spec/asciidoctor-standoc/macros_spec.rb +111 -0
- data/spec/asciidoctor-standoc/refs_spec.rb +606 -0
- data/spec/asciidoctor-standoc/section_spec.rb +310 -0
- data/spec/asciidoctor-standoc/table_spec.rb +307 -0
- data/spec/asciidoctor-standoc/validate_spec.rb +133 -0
- data/spec/assets/header.html +7 -0
- data/spec/assets/html.css +2 -0
- data/spec/assets/htmlcover.html +4 -0
- data/spec/assets/htmlintro.html +5 -0
- data/spec/assets/i18n.yaml +2 -0
- data/spec/assets/iso.headless.html +33 -0
- data/spec/assets/iso.xml +8 -0
- data/spec/assets/rice_image1.png +0 -0
- data/spec/assets/scripts.html +3 -0
- data/spec/assets/std.css +2 -0
- data/spec/assets/word.css +2 -0
- data/spec/assets/wordcover.html +3 -0
- data/spec/assets/wordintro.html +4 -0
- data/spec/examples/103_01_02.html +247 -0
- data/spec/examples/english.yaml +69 -0
- data/spec/examples/iso_123_.xml +45 -0
- data/spec/examples/iso_123_all_parts.xml +45 -0
- data/spec/examples/iso_123_no_year_note.xml +46 -0
- data/spec/examples/iso_124_.xml +41 -0
- data/spec/examples/iso_216_.xml +47 -0
- data/spec/examples/iso_iec_12382_.xml +48 -0
- data/spec/examples/rice.adoc +715 -0
- data/spec/examples/rice.preview.html +1877 -0
- data/spec/examples/rice.sh +4 -0
- data/spec/examples/rice_images/rice_image1.png +0 -0
- data/spec/examples/rice_images/rice_image2.png +0 -0
- data/spec/examples/rice_images/rice_image3_1.png +0 -0
- data/spec/examples/rice_images/rice_image3_2.png +0 -0
- data/spec/examples/rice_images/rice_image3_3.png +0 -0
- data/spec/metanorma/processor_spec.rb +70 -0
- data/spec/spec_helper.rb +198 -0
- metadata +370 -0
@@ -0,0 +1,133 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
RSpec.describe Asciidoctor::Standoc do
|
4
|
+
|
5
|
+
it "warns that figure does not have title" do
|
6
|
+
expect { Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true) }.to output(/Figure should have title/).to_stderr
|
7
|
+
#{VALIDATING_BLANK_HDR}
|
8
|
+
|
9
|
+
image::spec/examples/rice_images/rice_image1.png[]
|
10
|
+
INPUT
|
11
|
+
end
|
12
|
+
|
13
|
+
it "warns that callouts do not match annotations" do
|
14
|
+
expect { Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true) }.to output(/mismatch of callouts and annotations/).to_stderr
|
15
|
+
#{VALIDATING_BLANK_HDR}
|
16
|
+
[source,ruby]
|
17
|
+
--
|
18
|
+
puts "Hello, world." <1>
|
19
|
+
%w{a b c}.each do |x|
|
20
|
+
puts x
|
21
|
+
end
|
22
|
+
--
|
23
|
+
<1> This is one callout
|
24
|
+
<2> This is another callout
|
25
|
+
INPUT
|
26
|
+
end
|
27
|
+
|
28
|
+
it "warns that term source is not a real reference" do
|
29
|
+
expect { Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true) }.to output(/iso123 is not a real reference/).to_stderr
|
30
|
+
#{VALIDATING_BLANK_HDR}
|
31
|
+
|
32
|
+
[.source]
|
33
|
+
<<iso123>>
|
34
|
+
INPUT
|
35
|
+
end
|
36
|
+
|
37
|
+
it "warns of Non-reference in bibliography" do
|
38
|
+
expect { Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true) }.to output(/no anchor on reference/).to_stderr
|
39
|
+
#{VALIDATING_BLANK_HDR}
|
40
|
+
|
41
|
+
== Normative References
|
42
|
+
* I am not a reference
|
43
|
+
INPUT
|
44
|
+
end
|
45
|
+
|
46
|
+
it "warns that Table should have title" do
|
47
|
+
expect { Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true) }.to output(%r{Table should have title}).to_stderr
|
48
|
+
#{VALIDATING_BLANK_HDR}
|
49
|
+
|
50
|
+
|===
|
51
|
+
|a |b |c
|
52
|
+
|===
|
53
|
+
INPUT
|
54
|
+
end
|
55
|
+
|
56
|
+
it "validates document against ISO XML schema" do
|
57
|
+
expect { Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true) }.to output(%r{value of attribute "align" is invalid; must be equal to}).to_stderr
|
58
|
+
#{VALIDATING_BLANK_HDR}
|
59
|
+
|
60
|
+
[align=mid-air]
|
61
|
+
Para
|
62
|
+
INPUT
|
63
|
+
end
|
64
|
+
|
65
|
+
it "Warning if terms mismatches IEV" do
|
66
|
+
system "mv ~/.iev.pstore ~/.iev.pstore1"
|
67
|
+
system "rm test.iev.pstore"
|
68
|
+
mock_open_uri('103-01-02')
|
69
|
+
expect { Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true) }.to output(%r{Term "automation" does not match IEV 103-01-02 "functional"}).to_stderr
|
70
|
+
= Document title
|
71
|
+
Author
|
72
|
+
:docfile: test.adoc
|
73
|
+
|
74
|
+
[bibliography]
|
75
|
+
== Normative References
|
76
|
+
* [[[iev,IEV]]], _iev_
|
77
|
+
|
78
|
+
== Terms and definitions
|
79
|
+
=== Automation
|
80
|
+
|
81
|
+
[.source]
|
82
|
+
<<iev,clause="103-01-02">>
|
83
|
+
INPUT
|
84
|
+
system "mv ~/.iev.pstore1 ~/.iev.pstore"
|
85
|
+
end
|
86
|
+
|
87
|
+
it "No warning if English term matches IEV" do
|
88
|
+
system "mv ~/.iev.pstore ~/.iev.pstore1"
|
89
|
+
system "rm test.iev.pstore"
|
90
|
+
mock_open_uri('103-01-02')
|
91
|
+
expect { Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true) }.not_to output(%r{does not match IEV 103-01-02}).to_stderr
|
92
|
+
= Document title
|
93
|
+
Author
|
94
|
+
:docfile: test.adoc
|
95
|
+
|
96
|
+
[bibliography]
|
97
|
+
== Normative References
|
98
|
+
* [[[iev,IEV]]], _iev_
|
99
|
+
|
100
|
+
== Terms and definitions
|
101
|
+
=== Functional
|
102
|
+
|
103
|
+
[.source]
|
104
|
+
<<iev,clause="103-01-02">>
|
105
|
+
INPUT
|
106
|
+
system "mv ~/.iev.pstore1 ~/.iev.pstore"
|
107
|
+
end
|
108
|
+
|
109
|
+
it "No warning if French term matches IEV" do
|
110
|
+
system "mv ~/.iev.pstore ~/.iev.pstore1"
|
111
|
+
system "rm test.iev.pstore"
|
112
|
+
mock_open_uri('103-01-02')
|
113
|
+
expect { Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true) }.not_to output(%r{does not match IEV 103-01-02}).to_stderr
|
114
|
+
= Document title
|
115
|
+
Author
|
116
|
+
:docfile: test.adoc
|
117
|
+
:nodoc:
|
118
|
+
:language: fr
|
119
|
+
|
120
|
+
[bibliography]
|
121
|
+
== Normative References
|
122
|
+
* [[[iev,IEV]]], _iev_
|
123
|
+
|
124
|
+
== Terms and definitions
|
125
|
+
=== Fonctionnelle, f
|
126
|
+
|
127
|
+
[.source]
|
128
|
+
<<iev,clause="103-01-02">>
|
129
|
+
INPUT
|
130
|
+
system "mv ~/.iev.pstore1 ~/.iev.pstore"
|
131
|
+
end
|
132
|
+
|
133
|
+
end
|
@@ -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> </p>
|
8
|
+
</div>
|
9
|
+
<br />
|
10
|
+
<div class="prefatory-section">
|
11
|
+
<p> </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>  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>
|
data/spec/assets/iso.xml
ADDED
Binary file
|
data/spec/assets/std.css
ADDED
@@ -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&Seq=1&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="&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&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&ievref=103-01-02&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>
|