metanorma-iec 1.2.13 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rake.yml +9 -32
  3. data/.gitignore +2 -0
  4. data/.rubocop.yml +6 -2
  5. data/lib/asciidoctor/iec/biblio.rng +4 -6
  6. data/lib/asciidoctor/iec/iec.rng +11 -0
  7. data/lib/asciidoctor/iec/isodoc.rng +235 -3
  8. data/lib/asciidoctor/iec/isostandard.rng +17 -97
  9. data/lib/isodoc/iec/html/htmlstyle.css +7 -0
  10. data/lib/isodoc/iec/html_convert.rb +0 -1
  11. data/lib/isodoc/iec/iec.international-standard.xsl +552 -268
  12. data/lib/metanorma/iec/version.rb +1 -1
  13. data/metanorma-iec.gemspec +6 -6
  14. data/spec/{asciidoctor-iec → asciidoctor}/base_spec.rb +0 -0
  15. data/spec/{asciidoctor-iec → asciidoctor}/blocks_spec.rb +0 -0
  16. data/spec/{asciidoctor-iec → asciidoctor}/cleanup_spec.rb +0 -0
  17. data/spec/{asciidoctor-iec → asciidoctor}/iev_spec.rb +0 -0
  18. data/spec/{asciidoctor-iec → asciidoctor}/inline_spec.rb +0 -0
  19. data/spec/{asciidoctor-iec → asciidoctor}/lists_spec.rb +0 -0
  20. data/spec/{asciidoctor-iec → asciidoctor}/section_spec.rb +0 -0
  21. data/spec/{asciidoctor-iec → asciidoctor}/validate_spec.rb +22 -21
  22. data/spec/isodoc/postproc_spec.rb +2 -20
  23. data/spec/spec_helper.rb +6 -0
  24. metadata +51 -60
  25. data/spec/examples/rice.adoc +0 -723
  26. data/spec/examples/rice.doc +0 -19162
  27. data/spec/examples/rice.html +0 -1787
  28. data/spec/examples/rice.xml +0 -1951
  29. data/spec/examples/rice_img/rice_image1.png +0 -0
  30. data/spec/examples/rice_img/rice_image2.png +0 -0
  31. data/spec/examples/rice_img/rice_image3_1.png +0 -0
  32. data/spec/examples/rice_img/rice_image3_2.png +0 -0
  33. data/spec/examples/rice_img/rice_image3_3.png +0 -0
@@ -1,6 +1,6 @@
1
1
  module Metanorma
2
2
  module Iec
3
- VERSION = "1.2.13"
3
+ VERSION = "1.3.0".freeze
4
4
  end
5
5
  end
6
6
 
@@ -1,6 +1,6 @@
1
1
  # coding: utf-8
2
2
 
3
- lib = File.expand_path("../lib", __FILE__)
3
+ lib = File.expand_path("lib", __dir__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
  require "metanorma/iec/version"
6
6
 
@@ -27,18 +27,18 @@ Gem::Specification.new do |spec|
27
27
  spec.test_files = `git ls-files -- {spec}/*`.split("\n")
28
28
  spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
29
29
 
30
+ spec.add_dependency "metanorma-iso", "~> 1.8.0"
30
31
  spec.add_dependency "ruby-jing"
31
- spec.add_dependency "metanorma-iso", "~> 1.7.0"
32
32
 
33
33
  spec.add_development_dependency "byebug"
34
- spec.add_development_dependency "sassc", "2.4.0"
35
34
  spec.add_development_dependency "equivalent-xml", "~> 0.6"
36
35
  spec.add_development_dependency "guard", "~> 2.14"
37
36
  spec.add_development_dependency "guard-rspec", "~> 4.7"
38
- spec.add_development_dependency "rake", "~> 12.0"
37
+ spec.add_development_dependency "iev", "~> 0.2.0"
38
+ spec.add_development_dependency "rake", "~> 13.0"
39
39
  spec.add_development_dependency "rspec", "~> 3.6"
40
- spec.add_development_dependency "rubocop", "= 0.54.0"
40
+ spec.add_development_dependency "rubocop", "~> 1.5.2"
41
+ spec.add_development_dependency "sassc", "2.4.0"
41
42
  spec.add_development_dependency "simplecov", "~> 0.15"
42
43
  spec.add_development_dependency "timecop", "~> 0.9"
43
- spec.add_development_dependency "iev", "~> 0.2.0"
44
44
  end
File without changes
File without changes
File without changes
@@ -15,41 +15,42 @@ RSpec.describe Asciidoctor::Iec do
15
15
 
16
16
  it "generates error file" do
17
17
  expect do
18
+ mock_pdf
18
19
  Metanorma::Compile
19
20
  .new
20
- .compile("spec/assets/xref_error.adoc", type: "iec", :"agree-to-terms" => true)
21
+ .compile("spec/assets/xref_error.adoc", type: "iec", no_install_fonts: true)
21
22
  end.to(change { File.exist?("spec/assets/xref_error.err") }
22
23
  .from(false).to(true))
23
24
  end
24
25
  end
25
26
 
26
- it "Warns of illegal doctype" do
27
+ it "Warns of illegal doctype" do
27
28
  FileUtils.rm_f "test.err"
28
29
  Asciidoctor.convert(<<~"INPUT", backend: :iec, header_footer: true)
29
- = Document title
30
- Author
31
- :docfile: test.adoc
32
- :nodoc:
33
- :no-isobib:
34
- :doctype: pizza
30
+ = Document title
31
+ Author
32
+ :docfile: test.adoc
33
+ :nodoc:
34
+ :no-isobib:
35
+ :doctype: pizza
35
36
 
36
- text
37
- INPUT
37
+ text
38
+ INPUT
38
39
  expect(File.read("test.err")).to include "pizza is not a recognised document type"
39
- end
40
+ end
40
41
 
41
- it "Warns of illegal function" do
42
+ it "Warns of illegal function" do
42
43
  FileUtils.rm_f "test.err"
43
44
  Asciidoctor.convert(<<~"INPUT", backend: :iec, header_footer: true)
44
- = Document title
45
- Author
46
- :docfile: test.adoc
47
- :nodoc:
48
- :no-isobib:
49
- :function: pizza
45
+ = Document title
46
+ Author
47
+ :docfile: test.adoc
48
+ :nodoc:
49
+ :no-isobib:
50
+ :function: pizza
50
51
 
51
- text
52
- INPUT
52
+ text
53
+ INPUT
53
54
  expect(File.read("test.err")).to include "pizza is not a recognised document function"
54
- end
55
+ end
55
56
  end
@@ -74,7 +74,7 @@ RSpec.describe IsoDoc do
74
74
  it "generates HTML output docs with null configuration from file" do
75
75
  FileUtils.rm_f "spec/assets/iso.doc"
76
76
  FileUtils.rm_f "spec/assets/iso.html"
77
- IsoDoc::Iec::HtmlConvert.new({wordstylesheet: "spec/assets/word.css", htmlstylesheet: "spec/assets/html.css"}).convert("spec/assets/iso.xml", nil, false)
77
+ IsoDoc::Iec::HtmlConvert.new({wordstylesheet: "word.css", htmlstylesheet: "html.css"}).convert("spec/assets/iso.xml", nil, false)
78
78
  expect(File.exist?("spec/assets/iso.html")).to be true
79
79
  html = File.read("spec/assets/iso.html", encoding: "UTF-8")
80
80
  expect(html).to match(/<style>/)
@@ -84,7 +84,7 @@ RSpec.describe IsoDoc do
84
84
 
85
85
  it "generates Word output docs with null configuration from file" do
86
86
  FileUtils.rm_f "spec/assets/iso.doc"
87
- IsoDoc::Iec::WordConvert.new({wordstylesheet: "spec/assets/word.css", htmlstylesheet: "spec/assets/html.css"}).convert("spec/assets/iso.xml", nil, false)
87
+ IsoDoc::Iec::WordConvert.new({wordstylesheet: "word.css", htmlstylesheet: "html.css"}).convert("spec/assets/iso.xml", nil, false)
88
88
  expect(File.exist?("spec/assets/iso.doc")).to be true
89
89
  word = File.read("spec/assets/iso.doc", encoding: "UTF-8")
90
90
  expect(word).to match(/<w:WordDocument>/)
@@ -134,24 +134,6 @@ RSpec.describe IsoDoc do
134
134
  OUTPUT
135
135
  end
136
136
 
137
- it "populates Word header" do
138
- FileUtils.rm_f "test.doc"
139
- IsoDoc::Iec::WordConvert.new({wordstylesheet: "spec/assets/word.css", htmlstylesheet: "spec/assets/html.css", header: "spec/assets/header.html"}).convert("test", <<~"INPUT", false)
140
- <iso-standard xmlns="http://riboseinc.com/isoxml">
141
- <bibdata type="article">
142
- <docidentifier>
143
- <project-number part="1">1000</project-number>
144
- </docidentifier>
145
- </bibdata>
146
- </iso-standard>
147
-
148
- INPUT
149
- word = File.read("test.doc", encoding: "UTF-8").sub(%r{^.*Content-Location: file:///C:/Doc/test_files/header.html}m, "Content-Location: file:///C:/Doc/test_files/header.html").
150
- sub(/------=_NextPart.*$/m, "")
151
- #expect(word).to include(%{Content-Location: file:///C:/Doc/test_files/header.html\nContent-Transfer-Encoding: base64\nContent-Type: text/html charset="utf-8" })
152
- expect(word).to include(%{Content-Location: file:///C:/Doc/test_files/header.html})
153
- end
154
-
155
137
  it "processes IsoXML terms for HTML" do
156
138
  FileUtils.rm_f "test.html"
157
139
  FileUtils.rm_f "test.doc"
data/spec/spec_helper.rb CHANGED
@@ -261,6 +261,12 @@ def stub_fetch_ref(**opts)
261
261
  end.at_least :once
262
262
  end
263
263
 
264
+ def mock_pdf
265
+ allow(::Mn2pdf).to receive(:convert) do |url, output, c, d|
266
+ FileUtils.cp(url.gsub(/"/, ""), output.gsub(/"/, ""))
267
+ end
268
+ end
269
+
264
270
  private
265
271
 
266
272
  def get_xml(search, code, opts)
metadata CHANGED
@@ -1,51 +1,37 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-iec
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.13
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-25 00:00:00.000000000 Z
11
+ date: 2021-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: ruby-jing
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '0'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: metanorma-iso
29
15
  requirement: !ruby/object:Gem::Requirement
30
16
  requirements:
31
17
  - - "~>"
32
18
  - !ruby/object:Gem::Version
33
- version: 1.7.0
19
+ version: 1.8.0
34
20
  type: :runtime
35
21
  prerelease: false
36
22
  version_requirements: !ruby/object:Gem::Requirement
37
23
  requirements:
38
24
  - - "~>"
39
25
  - !ruby/object:Gem::Version
40
- version: 1.7.0
26
+ version: 1.8.0
41
27
  - !ruby/object:Gem::Dependency
42
- name: byebug
28
+ name: ruby-jing
43
29
  requirement: !ruby/object:Gem::Requirement
44
30
  requirements:
45
31
  - - ">="
46
32
  - !ruby/object:Gem::Version
47
33
  version: '0'
48
- type: :development
34
+ type: :runtime
49
35
  prerelease: false
50
36
  version_requirements: !ruby/object:Gem::Requirement
51
37
  requirements:
@@ -53,19 +39,19 @@ dependencies:
53
39
  - !ruby/object:Gem::Version
54
40
  version: '0'
55
41
  - !ruby/object:Gem::Dependency
56
- name: sassc
42
+ name: byebug
57
43
  requirement: !ruby/object:Gem::Requirement
58
44
  requirements:
59
- - - '='
45
+ - - ">="
60
46
  - !ruby/object:Gem::Version
61
- version: 2.4.0
47
+ version: '0'
62
48
  type: :development
63
49
  prerelease: false
64
50
  version_requirements: !ruby/object:Gem::Requirement
65
51
  requirements:
66
- - - '='
52
+ - - ">="
67
53
  - !ruby/object:Gem::Version
68
- version: 2.4.0
54
+ version: '0'
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: equivalent-xml
71
57
  requirement: !ruby/object:Gem::Requirement
@@ -108,20 +94,34 @@ dependencies:
108
94
  - - "~>"
109
95
  - !ruby/object:Gem::Version
110
96
  version: '4.7'
97
+ - !ruby/object:Gem::Dependency
98
+ name: iev
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 0.2.0
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 0.2.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: rake
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: '12.0'
117
+ version: '13.0'
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: '12.0'
124
+ version: '13.0'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: rspec
127
127
  requirement: !ruby/object:Gem::Requirement
@@ -140,58 +140,58 @@ dependencies:
140
140
  name: rubocop
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - '='
143
+ - - "~>"
144
144
  - !ruby/object:Gem::Version
145
- version: 0.54.0
145
+ version: 1.5.2
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
- - - '='
150
+ - - "~>"
151
151
  - !ruby/object:Gem::Version
152
- version: 0.54.0
152
+ version: 1.5.2
153
153
  - !ruby/object:Gem::Dependency
154
- name: simplecov
154
+ name: sassc
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
- - - "~>"
157
+ - - '='
158
158
  - !ruby/object:Gem::Version
159
- version: '0.15'
159
+ version: 2.4.0
160
160
  type: :development
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
- - - "~>"
164
+ - - '='
165
165
  - !ruby/object:Gem::Version
166
- version: '0.15'
166
+ version: 2.4.0
167
167
  - !ruby/object:Gem::Dependency
168
- name: timecop
168
+ name: simplecov
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
171
  - - "~>"
172
172
  - !ruby/object:Gem::Version
173
- version: '0.9'
173
+ version: '0.15'
174
174
  type: :development
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
178
  - - "~>"
179
179
  - !ruby/object:Gem::Version
180
- version: '0.9'
180
+ version: '0.15'
181
181
  - !ruby/object:Gem::Dependency
182
- name: iev
182
+ name: timecop
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
185
  - - "~>"
186
186
  - !ruby/object:Gem::Version
187
- version: 0.2.0
187
+ version: '0.9'
188
188
  type: :development
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
192
  - - "~>"
193
193
  - !ruby/object:Gem::Version
194
- version: 0.2.0
194
+ version: '0.9'
195
195
  description: |
196
196
  metanorma-iec lets you write IEC standards in AsciiDoc syntax.
197
197
 
@@ -252,14 +252,14 @@ files:
252
252
  - lib/metanorma/iec/processor.rb
253
253
  - lib/metanorma/iec/version.rb
254
254
  - metanorma-iec.gemspec
255
- - spec/asciidoctor-iec/base_spec.rb
256
- - spec/asciidoctor-iec/blocks_spec.rb
257
- - spec/asciidoctor-iec/cleanup_spec.rb
258
- - spec/asciidoctor-iec/iev_spec.rb
259
- - spec/asciidoctor-iec/inline_spec.rb
260
- - spec/asciidoctor-iec/lists_spec.rb
261
- - spec/asciidoctor-iec/section_spec.rb
262
- - spec/asciidoctor-iec/validate_spec.rb
255
+ - spec/asciidoctor/base_spec.rb
256
+ - spec/asciidoctor/blocks_spec.rb
257
+ - spec/asciidoctor/cleanup_spec.rb
258
+ - spec/asciidoctor/iev_spec.rb
259
+ - spec/asciidoctor/inline_spec.rb
260
+ - spec/asciidoctor/lists_spec.rb
261
+ - spec/asciidoctor/section_spec.rb
262
+ - spec/asciidoctor/validate_spec.rb
263
263
  - spec/assets/header.html
264
264
  - spec/assets/html.css
265
265
  - spec/assets/iso.xml
@@ -267,15 +267,6 @@ files:
267
267
  - spec/assets/word.css
268
268
  - spec/assets/wordintro.html
269
269
  - spec/assets/xref_error.adoc
270
- - spec/examples/rice.adoc
271
- - spec/examples/rice.doc
272
- - spec/examples/rice.html
273
- - spec/examples/rice.xml
274
- - spec/examples/rice_img/rice_image1.png
275
- - spec/examples/rice_img/rice_image2.png
276
- - spec/examples/rice_img/rice_image3_1.png
277
- - spec/examples/rice_img/rice_image3_2.png
278
- - spec/examples/rice_img/rice_image3_3.png
279
270
  - spec/isodoc/blocks_spec.rb
280
271
  - spec/isodoc/i18n_spec.rb
281
272
  - spec/isodoc/iev_spec.rb
@@ -307,7 +298,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
307
298
  - !ruby/object:Gem::Version
308
299
  version: '0'
309
300
  requirements: []
310
- rubygems_version: 3.0.3
301
+ rubygems_version: 3.1.4
311
302
  signing_key:
312
303
  specification_version: 4
313
304
  summary: metanorma-iec lets you write IEC standards in AsciiDoc.
@@ -1,723 +0,0 @@
1
- = Rice model
2
- :docnumber: 17301
3
- :tc-docnumber: 17301
4
- :ref-docnumber: ISO 17301-1:2016(E)
5
- :partnumber: 1
6
- :edition: 2
7
- :revdate: 2016-05-01
8
- :copyright-year: 2016
9
- :language: en
10
- :unchangeddate: 2025
11
- :title-intro-en: Cereals and pulses
12
- :title-main-en: Specifications and test methods
13
- :title-part-en: Rice
14
- :title-intro-fr: Céréales et légumineuses
15
- :title-main-fr: Spécification et méthodes d'essai
16
- :title-part-fr: Riz
17
- :doctype: international-standard
18
- :docstage: 30
19
- :docsubstage: 92
20
- :draft:
21
- :technical-committee-number: 34
22
- :technical-committee: Food products
23
- :subcommittee-number: 4
24
- :subcommittee: Cereals and pulses
25
- :workgroup-number: 3
26
- :workgroup: Rice Group
27
- :toc:
28
- :sectnumlevels: 7
29
- :stem:
30
- :xrefstyle: short
31
- :appendix-caption: Annex
32
- :appendix-refsig: Annex
33
- :section-refsig: Clause
34
- :table-caption: Table
35
- :example-caption: Figure
36
- :local-cache:
37
- :data-uri-image:
38
-
39
- [[foreword]]
40
- .Foreword
41
- International Standard IEC {docnumber} has been prepared by subcommittee {subcommittee-number}: {subcommittee}, of IEC technical committee {technical-committee-number}:{technical-committee}.
42
-
43
- This second edition cancels and replaces the first edition published in 2009. This edition constitutes a technical revision.
44
-
45
- This edition includes the following significant technical changes with respect to the previous edition:
46
-
47
- . updated normative references;
48
- . deletion of 4.3.
49
-
50
- The text of this International Standard is based on the following documents:
51
-
52
- |===
53
- |FDIS |Report on voting
54
-
55
- |XX/XX/FDIS |XX/XX/RVD
56
- |===
57
-
58
- Full information on the voting for the approval of this International Standard can be found in the report on voting indicated in the above table.
59
-
60
- This document has been drafted in accordance with the ISO/IEC Directives, Part 2.
61
-
62
- The committee has decided that the contents of this document will remain unchanged until the stability date indicated on the IEC website under "http://webstore.iec.ch" in the data related to the specific document. At this date, the document will be
63
-
64
- * reconfirmed,
65
- * withdrawn,
66
- * replaced by a revised edition, or
67
- * amended.
68
-
69
- [WARNING]
70
- ====
71
- The National Committees are requested to note that for this document the stability date is {unchangeddate}.
72
-
73
- THIS TEXT IS INCLUDED FOR THE INFORMATION OF THE NATIONAL COMMITTEES AND WILL BE DELETED AT THE PUBLICATION STAGE.
74
- ====
75
-
76
- [reviewer=ISO,date=2017-01-01,from=foreword,to=foreword]
77
- ****
78
- A Foreword shall appear in each document. The generic text is shown here. It does not contain requirements, recommendations or permissions.
79
-
80
- For further information on the Foreword, see *ISO/IEC Directives, Part 2, 2016, Clause 12.*
81
- ****
82
-
83
- :sectnums!:
84
- == Introduction
85
-
86
- This document was developed in response to worldwide demand for minimum specifications for rice traded internationally, since most commercial bulks of grain, which have not been screened or aspirated, contain a proportion of other grains, weed seeds, chaff, straw, stones, sand, etc. The vegetable materials can have physical and biological properties which differ from those of the main constituent and can therefore affect the storage behaviour.
87
-
88
- Rice is a permanent host to a considerable microflora; most of these microorganisms are cosmopolitan, the majority are innocuous, but some produce harmful by-products. Microflora communities present on freshly harvested rice include many types of bacteria, moulds and yeasts. While the rice is ripening and its moisture content is falling, the number of field microorganisms, mainly bacteria, diminishes. When the rice is harvested, it is invaded by storage microorganisms and the field microflora gradually dies out. If the mass fraction of moisture (formerly expressed as moisture content) is less than 18 %, the microflora does not multiply, whereas above 18 % it does so rapidly. Thus, at harvest, the qualitative and the quantitative composition of the microflora depends more upon ecological factors than upon the variety of the rice. During transport and storage, additions to the microfloral population occur. Microorganisms on the rice at harvest tend to die out during storage and are replaced by microorganisms adapted to storage conditions.
89
-
90
- Storage losses have been estimated as being an average of 5 %, and as much as 30 %, especially in countries with climates favourable to the rapid development of agents of deterioration and where storage techniques are poorly developed, such as developing countries in the damp tropics. The magnitude of these figures highlights the need to promote throughout the world a rapid improvement in techniques of conservation.
91
-
92
-
93
- The International Organization for Standardization (ISO) draws attention to the fact that it is claimed that compliance with this document may involve the use of a patent concerning sample dividers given in <<AnnexA>> and shown in <<figureA-1>>.
94
-
95
- ISO takes no position concerning the evidence, validity and scope of this patent right.
96
-
97
- The holder of this patent right has assured ISO that he/she is willing to negotiate licences under reasonable and non-discriminatory terms and conditions with applicants throughout the world. In this respect, the statement of the holder of this patent right is registered with ISO. Information may be obtained from:
98
-
99
- [align=left]
100
- Vache Equipment +
101
- Fictitious +
102
- World +
103
- gehf@vacheequipment.fic
104
-
105
- Attention is drawn to the possibility that some of the elements of this document may be the subject of patent rights other than those identified above. ISO shall not be held responsible for identifying any or all such patent rights.
106
-
107
- :sectnums:
108
- == Scope
109
-
110
- This document specifies minimum requirements and test methods for rice (_Oryza sativa L._).
111
-
112
- It is applicable to husked rice, husked parboiled rice, milled rice and milled parboiled rice, suitable for human consumption, directly or after reconditioning.
113
-
114
- It is not applicable to cooked rice products.
115
-
116
- [bibliography]
117
- == Normative References
118
-
119
- The following documents are referred to in the text in such a way that some or all of their content constitutes requirements of this document. For dated references, only the edition cited applies. For undated references, the latest edition of the referenced document (including any amendments) applies.
120
-
121
- * [[[ISO712,ISO 712]]], _Cereals and cereal products -- Determination of moisture content -- Reference method_
122
-
123
- * [[[ISO6646, ISO 6646]]], _Rice -- Determination of the potential milling yield from paddy and from husked rice_
124
-
125
- * [[[ISO8351-1,ISO 8351-1:1994]]], _Packaging -- Method of specification for sacks -- Part 1: Paper sacks_
126
-
127
- * [[[ISO8351-2,ISO 8351-2]]], _Packaging -- Method of specification for sacks -- Part 2: Sacks made from thermoplastic flexible film_
128
-
129
- * [[[ISO16634,ISO 16634:--]]] footnote:[Under preparation. (Stage at the time of publication ISO/DIS 16634)], _Cereals, pulses, milled cereal products, oilseeds and animal feeding stuffs -- Determination of the total nitrogen content by combustion according to the Dumas principle and calculation of the crude protein content_
130
-
131
- * [[[ISO20483,ISO 20483:2013]]], _Cereals and pulses -- Determination of the nitrogen content and calculation of the crude protein content -- Kjeldahl method_
132
-
133
- * [[[ISO24333,ISO 24333:2009]]], _Cereals and cereal products -- Sampling_
134
-
135
- == Terms and Definitions
136
-
137
- For the purposes of this document, the following terms and definitions apply.
138
-
139
- ISO and IEC maintain terminological databases for use in standardization at the following addresses:
140
-
141
- * ISO Online browsing platform: available at http://www.iso.org/obp
142
- * IEC Electropedia: available at http://www.electropedia.org
143
-
144
- :sectnums!:
145
- [[paddy]]
146
- === paddy
147
- alt:[paddy rice]
148
- alt:[rough rice]
149
-
150
- rice retaining its husk after threshing
151
-
152
- [.source]
153
- <<ISO7301,clause 3.1>>
154
-
155
- [[husked_rice]]
156
- === husked rice
157
- deprecated:[cargo rice]
158
-
159
- _paddy_ (<<paddy>>) from which the husk only has been removed
160
-
161
- [.source]
162
- <<ISO7301,clause 3.2>>, The term "cargo rice" is shown as deprecated, and Note 1 to entry is not included here
163
-
164
- === milled rice
165
- alt:[white rice]
166
-
167
- _husked rice_ (<<husked_rice>>) from which almost all of the bran and embryo have been removed by milling
168
-
169
- [.source]
170
- <<ISO7301,clause 3.3>>
171
-
172
- === parboiled rice
173
-
174
- rice whose starch has been fully gelatinized by soaking _paddy_ (<<paddy>>) rice or _husked rice_ (<<husked_rice>>) in water followed by a heat treatment and a drying process
175
-
176
- === waxy rice
177
- variety of rice whose kernels have a white and opaque appearance
178
-
179
- alt:[EM]
180
- domain:[rice]
181
-
182
- organic and inorganic components other than whole or broken kernels
183
-
184
- [example]
185
- Foreign seeds, husks, bran, sand, dust.
186
-
187
- [[HDK]]
188
- === HDK
189
- alt:[heat-damaged kernel]
190
-
191
- kernel, whole or broken, which has changed its normal colour as a result of heating
192
-
193
- NOTE: This category includes whole or broken kernels that are yellow due to alteration. Parboiled rice in a batch of non-parboiled rice is also included in this category.
194
-
195
- === damaged kernel
196
- kernel, whole or broken, showing obvious deterioration due to moisture, pests, disease or other causes, but excluding _HDK_ (<<HDK>>)
197
-
198
- === immature kernel
199
- alt:[unripe kernel]
200
-
201
- kernel, whole or broken, which is unripe and/or underdeveloped
202
-
203
- === husked rice yield
204
- amount of husked rice obtained from paddy
205
-
206
- // all terms and defs references are dated
207
- [.source]
208
- <<ISO6646,clause 3.1>>
209
-
210
- === nitrogen content
211
- quantity of nitrogen determined after application of the procedure described
212
-
213
- NOTE: It is expressed as a mass fraction of dry product, as a percentage.
214
-
215
- [.source]
216
- <<ISO20483,clause 3.1>>
217
-
218
- === crude protein content
219
- quantity of crude protein obtained from the nitrogen content as determined by applying the specified method, calculated by multiplying this content by an appropriate factor depending on the type of cereal or pulse
220
-
221
- NOTE: It is expressed as a mass fraction of dry product, as a percentage.
222
-
223
- [.source]
224
- <<ISO20483,clause 3.1>>
225
-
226
- [[gelatinization]]
227
- === gelatinization
228
- hydration process conferring the jelly-like state typical of the coagulated colloids, which are named gels, on kernels
229
-
230
- NOTE: See <<figureC-1>>.
231
-
232
- [.source]
233
- <<ISO14864,clause 3.1>>
234
-
235
- [[gel_state]]
236
- === gel state
237
- condition reached as a consequence of _gelatinization_ (<<gelatinization>>), when the kernel is fully transparent and absolutely free from whitish and opaque granules after being pressed between two glass sheets
238
-
239
- [.source]
240
- <<ISO14864,clause 3.1>>
241
-
242
- === gelatinization time
243
- stem:[t_90]
244
-
245
- time necessary for 90 % of the kernels to pass from their natural state to the _gel state_ (<<gel_state>>)
246
-
247
- [.source]
248
- <<ISO14864,clause 3.1>>
249
-
250
- :sectnums:
251
- == Specifications
252
-
253
- === General, organoleptic and health characteristics
254
-
255
- Kernels of rice, whether parboiled, husked or milled, and whether whole or broken, shall be sound, clean and free from foreign odours or odour which indicates deterioration.
256
-
257
- The levels of additives and pesticide residues and other contaminants shall not exceed the maximum limits permitted in the country of destination.
258
-
259
- The presence of living insects which are visible to the naked eye is not permitted. This should be determined before separating the bulk sample into test samples.
260
-
261
- === Physical and chemical characteristics
262
-
263
- ==== {blank}
264
-
265
- The mass fraction of moisture, determined in accordance with <<ISO712>>, using an oven complying with the requirements of <<IEC61010-2>>, shall not be greater than 15 %.footnote:[Formerly denoted as 15 % (m/m).]
266
-
267
- The mass fraction of extraneous matter and defective kernels in husked and milled rice, whether or not parboiled, determined in accordance with <<AnnexA>>, shall not be greater than the values specified in <<table1>>.
268
-
269
- NOTE: Lower mass fractions of moisture are sometimes needed for certain destinations depending on the climate, duration of transport and storage. For further details, see <<ISO6322-1>>, <<ISO6322-2>> and <<ISO6322-3>>.
270
-
271
- ==== {blank}
272
-
273
- The defect tolerance for the categories considered, and determined in accordance with the method given in <<AnnexA>>, shall not exceed the limits given in <<table1>>.
274
-
275
- [#table1]
276
- [cols="<,^,^,^,^",options="header,footer",headerrows=2]
277
- .Maximum permissible mass fraction of defects
278
- |===
279
- .2+|Defect 4+^| Maximum permissible mass fraction of defects in husked rice +
280
- stem:[w_max]
281
- | in husked rice | in milled rice (non-glutinous) | in husked parboiled rice | in milled parboiled rice
282
-
283
- | Extraneous matter: organic footnote:[Organic extraneous matter includes foreign seeds, husks, bran, parts of straw, etc.] | 1,0 | 0,5 | 1,0 | 0,5
284
- // not rendered list here
285
- | Extraneous matter: inorganic footnote:[Inorganic extraneous matter includes stones, sand, dust, etc.] | 0,5 | 0,5 | 0,5 | 0,5
286
- | Paddy | 2,5 | 0,3 | 2,5 | 0,3
287
- | Husked rice, non-parboiled | Not applicable | 1,0 | 1,0 | 1,0
288
- | Milled rice, non-parboiled | 1,0 | Not applicable | 1,0 | 1,0
289
- | Husked rice, parboiled | 1,0 | 1,0 | Not applicable | 1,0
290
- | Milled rice, parboiled | 1,0 | 1,0 | 1,0 | Not applicable
291
- | Chips | 0,1 | 0,1 | 0,1 | 0,1
292
- | HDK | 2,0 footnoteref:[defectsmass,The maximum permissible mass fraction of defects shall be determined with respect to the mass fraction obtained after milling.] | 2,0 | 2,0 footnoteref:[defectsmass] | 2,0
293
- | Damaged kernels | 4,0 | 3,0 | 4,0 | 3,0
294
- | Immature and/or malformed kernels | 8,0 | 2,0 | 8,0 | 2,0
295
- | Chalky kernels | 5,0 footnoteref:[defectsmass] | 5,0 | Not applicable | Not applicable
296
- | Red kernels and red-streaked kernels | 12,0 | 12,0 | 12,0 footnoteref:[defectsmass] | 12,0
297
- | Partly gelatinized kernels | Not applicable | Not applicable | 11,0 footnoteref:[defectsmass] | 11,0
298
- | Pecks | Not applicable | Not applicable | 4,0 | 2,0
299
- | Waxy rice | 1,0 footnoteref:[defectsmass] | 1,0 | 1,0 footnoteref:[defectsmass] | 1,0
300
-
301
- 5+a| Live insects shall not be present. Dead insects shall be included in extraneous matter.
302
- |===
303
-
304
- NOTE: This table is based on <<ISO7301,table 1>>.
305
-
306
- NOTE: Some commercial contracts require information in addition to that provided in this table.
307
-
308
- NOTE: Only full red husked (cargo) rice is considered in this table.
309
-
310
-
311
- [[clause5]]
312
- == Sampling
313
- Sampling shall be carried out in accordance with <<ISO24333,clause 5>>
314
-
315
- == Test methods
316
-
317
- === Moisture content
318
-
319
- Determine the mass fraction of moisture in accordance with the method specified in <<ISO712>>.
320
-
321
- === Waxy rice content
322
-
323
- Determine the mass fraction of waxy rice. <<AnnexB>> gives an example of a suitable method.
324
-
325
- === Nitrogen content and crude protein content
326
-
327
- Determine the nitrogen content and crude protein content in accordance with either <<ISO16634,clause 9>>, or <<ISO20483>>. For details on the determination of protein content using the Kjeldahl method, see Reference <<ref12>> in the Bibliography. For details concerning the use of the Dumas method, see References <<ref10>> and <<ref16>>.
328
-
329
- // can't join two bibliographic localities with "and" currently
330
- Calculate the crude protein content of the dry product by multiplying the value of the nitrogen content by the conversion factor specified in <<ISO20483,annex C>> and Table C.1, that is adapted to the type of cereals or pulses <<ref13,fn>><<ref14,fn>> and to their use.
331
-
332
- === Gelatinization time
333
-
334
- Determine the gelatinization time, stem:[t_90], for rice kernels during cooking. An example of a typical curve is given in <<figureC-1>>. Three typical stages of gelatinization are shown in <<figureC-2>>.
335
-
336
- Report the results as specified in <<clause7>>.
337
-
338
- === Husked rice yield
339
-
340
- ==== Determination
341
-
342
- CAUTION: Only use paddy or parboiled rice for the determination of husked rice yield.
343
-
344
- Determine the husked rice yield in accordance with <<ISO6646>>.
345
-
346
- ==== Precision
347
-
348
- ===== Interlaboratory test
349
-
350
- The results of an interlaboratory test are given in <<AnnexD>> for information
351
-
352
- ===== Repeatability
353
-
354
- The absolute difference between two independent single test results, obtained using the same method on identical test material in the same laboratory by the same operator using the same equipment within a short interval of time, shall not exceed the arithmetic mean of the values for stem:[r] obtained from the interlaboratory study for husked rice in more than 5 % of cases:
355
-
356
- [stem]
357
- ++++
358
- r = 1 %
359
- ++++
360
-
361
- where
362
-
363
- stem:[r]:: is the repeatability limit.
364
-
365
- ===== Reproducibility
366
-
367
- The absolute difference between two single test results, obtained using the same method on identical test material in different laboratories by different operators using different equipment, shall not exceed the arithmetic mean of the values for stem:[R] obtained from the interlaboratory study in more than 5 % of cases:
368
-
369
- [stem]
370
- ++++
371
- R = 3 %
372
- ++++
373
-
374
- where
375
-
376
- stem:[R]:: is the reproducibility limit.
377
-
378
- [[clause7]]
379
- == Test report
380
-
381
- For each test method, the test report shall specify the following:
382
-
383
- [loweralpha]
384
- . all information necessary for the complete identification of the sample;
385
- . a reference to this document (i.e. ISO {docnumber}-{partnumber});
386
- . the sampling method used;
387
- . the test method used;
388
- . the test result(s) obtained or, if the repeatability has been checked, the final quoted result obtained;
389
- . all operating details not specified in this document, or regarded as optional, together with details of any incidents which may have influenced the test result(s);
390
- . any unusual features (anomalies) observed during the test;
391
- . the date of the test.
392
-
393
- == Packaging
394
-
395
- The packaging shall not transmit any odour or flavour to the product and shall not contain substances which may damage the product or constitute a health risk.
396
-
397
- If bags are used, they shall comply with the requirements of <<ISO8351-1,clause 9>>, or <<ISO8351-2>>, as appropriate.
398
-
399
- == Marking
400
-
401
- The packages shall be marked or labelled as required by the country of destination.
402
-
403
- [[AnnexA]]
404
- [appendix,obligation=normative]
405
- == Determination of defects
406
-
407
- === Principle
408
-
409
- Extraneous matter, broken kernels, damaged kernels and other kinds of rice are separated manually according to the following types: husked rice, milled rice, husked parboiled rice and milled parboiled rice. Each type is then weighed.
410
-
411
- === Apparatus
412
-
413
- The usual laboratory apparatus and, in particular, the following.
414
-
415
- [%inline-header]
416
- [[AnnexA-2-1]]
417
- ==== Sample divider,
418
-
419
- consisting of a conical sample divider or multiple-slot sample divider with a distribution system, e.g. "Split-it-right" sample divider, such as that shown in <<figureA-1>>.
420
-
421
- [%inline-header]
422
- ==== Sieve,
423
-
424
- with round perforations of diameter 1,4 mm.
425
-
426
- [%inline-header]
427
- ==== Tweezers.
428
-
429
- [%inline-header]
430
- ==== Scalpel.
431
-
432
- [%inline-header]
433
- ==== Paintbrush.
434
-
435
- [%inline-header]
436
- [[AnnexA-2-6]]
437
- ==== Steel bowls,
438
-
439
- of diameter 100 mm ± 5 mm; seven per test sample.
440
-
441
- [%inline-header]
442
- ==== Balance,
443
-
444
- which can be read to the nearest 0,01 g.
445
-
446
- === Sampling
447
-
448
- See <<clause5>>.
449
-
450
- === Procedure
451
-
452
- [[AnnexA-4-1]]
453
- ==== Preparation of test sample
454
-
455
- Carefully mix the laboratory sample to make it as uniform as possible, then proceed to reduce it, using a divider (<<AnnexA-2-1>>), until a quantity of about 30 g is obtained.
456
-
457
- All parts of kernels which get stuck in the perforations of a sieve should be considered to be retained by the sieve.
458
-
459
- [[figureA-1]]
460
- .Split-it-right sample divider
461
- image::rice_img/rice_image1.png[]
462
-
463
- === Determination
464
-
465
- Weigh, to the nearest 0,1 g, one of the test samples obtained in accordance with <<AnnexA-4-1>> and separate the different defects into the bowls (<<AnnexA-2-6>>). When a kernel has several defects, classify it in the defect category for which the maximum permissible value is the lowest (see <<table1>>).
466
-
467
- Weigh, to the nearest 0,01 g, the fractions so obtained.
468
-
469
- === Calculation
470
-
471
- Express the mass fraction of each defect using <<formulaA-1>>:
472
-
473
- [[formulaA-1,A.1]]
474
- [stem]
475
- ++++
476
- w = (m_D) / (m_s)
477
- ++++
478
-
479
- where
480
-
481
- stem:[w]:: is the mass fraction of grains with a particular defect in the test sample;
482
- stem:[m_D]:: is the mass, in grams, of grains with that defect;
483
- stem:[m_S]:: is the mass, in grams, of the test sample.
484
-
485
- === Test report
486
-
487
- Report the results as specified in <<clause7>>.
488
-
489
- [[AnnexB]]
490
- [appendix,obligation=informative]
491
- == Determination of the waxy rice content of parboiled rice
492
-
493
- === Principle
494
-
495
- Waxy rice kernels have a reddish brown colour when stained in an iodine solution, while non-waxy rice kernels show a dark blue colour.
496
-
497
- === Apparatus
498
-
499
- The usual laboratory apparatus and, in particular, the following.
500
-
501
- [%inline-header]
502
- [[AnnexB-2-1]]
503
- ==== Balance,
504
-
505
- capable of weighing to the nearest 0,01 g.
506
-
507
- [%inline-header]
508
- [[AnnexB-2-2]]
509
- ==== Glass beaker,
510
-
511
- of capacity 250 ml.
512
-
513
- [%inline-header]
514
- [[AnnexB-2-3]]
515
- ==== Small white colour bowls,
516
-
517
- or any white colour container of a suitable size.
518
-
519
- [%inline-header]
520
- [[AnnexB-2-4]]
521
- ==== Wire sieve,
522
-
523
- with long rounded apertures of (1 mm stem:[{:(+0.02),(0):}] mm) &times; (20 mm stem:[{:(+2),(-1):}] mm).
524
-
525
- [%inline-header]
526
- [[AnnexB-2-5]]
527
- ==== Stirrer rod.
528
-
529
- [%inline-header]
530
- [[AnnexB-2-6]]
531
- ==== Tweezers or forceps.
532
-
533
- [%inline-header]
534
- [[AnnexB-2-7]]
535
- ==== Tissue paper.
536
-
537
- === Reagents
538
-
539
- WARNING: Direct contact of iodine with skin can cause lesions so care should be taken in handling iodine. Iodine vapour is very irritating to eyes and mucous membranes.
540
-
541
- [%inline-header]
542
- [[AnnexB-3-1]]
543
- ==== Deionized water,
544
-
545
- Grade 3 quality as specified in <<ISO3696>>.
546
-
547
- [%inline-header]
548
- [[AnnexB-3-2]]
549
- ==== Iodine stock solution,
550
-
551
- containing a mass fraction of 4,1 % iodine and 6,3 % potassium iodide in deionized water such as Lugols.footnote:[Lugols is an example of a suitable product available commercially. This information is given for the convenience of users of this document and does not constitute an endorsement by ISO of this product.]
552
-
553
- [%inline-header]
554
- [[AnnexB-3-3]]
555
- ==== Iodine working solution,
556
-
557
- obtained by diluting the stock solution (<<AnnexB-3-2>>) two times (by volume) with deionized water (<<AnnexB-3-1>>).
558
-
559
- Prepare fresh daily.
560
-
561
- === Sampling
562
-
563
- Sampling shall be carried out in accordance with <<clause5>>.
564
-
565
- === Determination
566
-
567
- ==== {blank}
568
- Weigh a portion of about 100 g of milled rice and put it into a glass beaker (<<AnnexB-2-2>>).
569
-
570
- ==== {blank}
571
- Add enough iodine working solution (<<AnnexB-3-3>>) to soak the kernels, and stir (<<AnnexB-2-5>>) until all the kernels are submerged under the solution. Let the kernels soak in the solution for 30 s.
572
-
573
- ==== {blank}
574
- Pour the rice and solution into a wire sieve (<<AnnexB-2-4>>), and shake the basket slightly in order to drain out the solution. Then place the wire sieve on a piece of tissue paper (<<AnnexB-2-7>>) to absorb the excess liquid.
575
-
576
- ==== {blank}
577
- Pour the stained kernels into a bowl (<<AnnexB-2-3>>). Using tweezers or forceps (<<AnnexB-2-6>>), separate the reddish brown kernels of waxy rice from the dark blue kernels of non-waxy rice.
578
-
579
- ==== {blank}
580
- Weigh the waxy rice portion (stem:[m_1]) and the non-waxy rice portion (stem:[m_2]) to the nearest 0,1 g.
581
-
582
- === Calculation
583
-
584
- Calculate the mass fraction, expressed as a percentage, of the waxy rice, stem:[w_(wax)], using <<formulaB-1>>:
585
-
586
- [[formulaB-1,B.1]]
587
- [stem]
588
- ++++
589
- w_(wax) = (m_1) / (m_1 + m_2) xx 100
590
- ++++
591
-
592
- where
593
-
594
- stem:[m_1]:: is the mass, expressed in grams, of the waxy rice portion;
595
- stem:[m_2]:: is the mass, expressed in grams, of the non-waxy rice portion.
596
-
597
- === Test report
598
-
599
- Report the results as specified in <<clause7>>, giving the results calculated using <<formulaB-1>>.
600
-
601
- [[AnnexC]]
602
- [appendix,obligation=informative]
603
- == Gelatinization
604
-
605
- <<figureC-1>> gives an example of a typical gelatinization curve. <<figureC-2>> shows the three stages of gelatinization.
606
-
607
- [[figureC-1]]
608
- .Typical gelatinization curve
609
- image::rice_img/rice_image2.png[]
610
- footnote:[The time stem:[t_90] was estimated to be 18,2 min for this example.]
611
-
612
- *Key*
613
-
614
- stem:[w]:: mass fraction of gelatinized kernels, expressed in per cent
615
- stem:[t]:: cooking time, expressed in minutes
616
- stem:[t_90]:: time required to gelatinize 90 % of the kernels
617
- P:: point of the curve corresponding to a cooking time of stem:[t_90]
618
-
619
- NOTE: These results are based on a study carried out on three different types of kernel.
620
-
621
- [[figureC-2]]
622
- .Stages of gelatinization
623
- ====
624
- .Initial stages: No grains are fully gelatinized (ungelatinized starch granules are visible inside the kernels)
625
- image::rice_img/rice_image3_1.png[]
626
-
627
- .Intermediate stages: Some fully gelatinized kernels are visible
628
- image::rice_img/rice_image3_2.png[]
629
-
630
- .Final stages: All kernels are fully gelatinized
631
- image::rice_img/rice_image3_3.png[]
632
-
633
- ====
634
-
635
- [[AnnexD]]
636
- [appendix,obligation=informative]
637
- == Results of interlaboratory test for husked rice yields
638
-
639
- An interlaboratory test <<ref15>> was carried out by the ENR [Rice Research Centre (Italy)] in accordance with <<ISO5725-1>> and <<ISO5725-2>>, with the participation of 15 laboratories. Each laboratory carried out three determinations on four different types of kernel. The statistical results are shown in <<tableD-1>>.
640
-
641
- [[tableD-1]]
642
- [cols="<,^,^,^,^",headerrows=2]
643
- .Repeatability and reproducibility of husked rice yield
644
- |===
645
- .2+| Description 4+| Rice sample
646
- | Arborio | Drago footnote:[Parboiled rice.] | Balilla | Thaibonnet
647
-
648
- | Number of laboratories retained after eliminating outliers | 13 | 11 | 13 | 13
649
- | Mean value, g/100 g | 81,2 | 82,0 | 81,8 | 77,7
650
- | Standard deviation of repeatability, stem:[s_r], g/100 g | 0,41 | 0,15 | 0,31 | 0,53
651
- | Coefficient of variation of repeatability, % | 0,5 | 0,2 | 0,4 | 0,7
652
- | Repeatability limit, stem:[r] (= 2,83 stem:[s_r]) | 1,16 | 0,42 | 0,88 | 1,50
653
- | Standard deviation of reproducibility, stem:[s_R], g/100 g | 1,02 | 0,20 | 0,80 | 2,14
654
- | Coefficient of variation of reproducibility, % | 1,3 | 0,2 | 1,0 | 2,7
655
- | Reproducibility limit, stem:[R] (= 2,83 stem:[s_R]) | 2,89 | 0,57 | 2,26 | 6,06
656
- |===
657
-
658
- [appendix,obligation=informative]
659
- == Extraneous information
660
-
661
- _This appendix is not in the original Rice model document, and is inserted to illustrate elements absent from
662
- that document: block quotes, source code, and examples._
663
-
664
- [quote, ISO, "ISO7301,clause 1"]
665
- _____
666
- This International Standard gives the minimum specifications for rice (_Oryza sativa_ L.) which is subject to international trade. It is applicable to the following types: husked rice and milled rice, parboiled or not, intended for direct human consumption. It is neither applicable to other products derived from rice, nor to waxy rice (glutinous rice).
667
- _____
668
-
669
-
670
- [%appendix]
671
- === Appendix 1
672
-
673
- [[samplecode]]
674
- .Sample Code
675
- ====
676
-
677
- [source,ruby]
678
- --
679
- puts "Hello, world."
680
- %w{a b c}.each do |x| <1>
681
- puts x
682
- end
683
- --
684
- <1> This is an annotation
685
- ====
686
-
687
-
688
-
689
- [bibliography]
690
- == Bibliography
691
-
692
- * [[[ISO3696,ISO 3696]]] _Water for analytical laboratory use -- Specification and test methods_
693
-
694
- * [[[ISO5725-1,ISO 5725-1]]], _Accuracy (trueness and precision) of measurement methods and results -- Part 1: General principles and definitions_
695
-
696
- * [[[ISO5725-2,ISO 5725-2]]], _Accuracy (trueness and precision) of measurement methods and results -- Part 2: Basic method for the determination of repeatability and reproducibility of a standard measurement method_
697
-
698
- * [[[ISO6322-1,ISO 6322-1]]], _Storage of cereals and pulses -- Part 1: General recommendations for the keeping of cereals_
699
-
700
- * [[[ISO6322-2,ISO 6322-2]]], _Storage of cereals and pulses -- Part 2: Practical recommendations_
701
-
702
- * [[[ISO6322-3,ISO 6322-3]]], _Storage of cereals and pulses -- Part 3: Control of attack by pests_
703
-
704
- * [[[ISO7301,ISO 7301:2011]]], _Rice -- Specification_
705
-
706
- * [[[ISO14864,ISO 14864:1998]]], _Rice -- Evaluation of gelatinization time of kernels during cooking_
707
-
708
- * [[[IEC61010-2,IEC 61010-2]]], _Safety requirements for electric equipment for measurement, control, and laboratory use -- Part 2: Particular requirements for laboratory equipment for the heating of material_
709
-
710
- * [[[ref10,10]]] [smallcap]#Standard No I.C.C 167#. _Determination of the protein content in cereal and cereal products for food and animal feeding stuffs according to the Dumas combustion method_ (see http://www.icc.or.at)
711
-
712
- * [[[ref11,11]]] Nitrogen-ammonia-protein modified Kjeldahl method -- Titanium oxide and copper sulfate catalyst. _Official Methods and Recommended Practices of the AOCS_ (ed. Firestone, D.E.), AOCS Official Method Ba Ai 4-91, 1997, AOCS Press, Champaign, IL
713
-
714
- * [[[ref12,12]]] [smallcap]#Berner D.L., & Brown J.# Protein nitrogen combustion method collaborative study I. Comparison with Smalley total Kjeldahl nitrogen and combustion results. _J. Am. Oil Chem. Soc._ 1994, *71* (11) pp 1291-1293
715
-
716
- * [[[ref13,13]]] [smallcap]#Buckee G.K.# Determination of total nitrogen in barley, malt and beer by Kjeldahl procedures and the Dumas combustion method -- Collaborative trial. _J. Inst. Brew._ 1994, *100* (2) pp 57-64
717
-
718
- * [[[ref14,14]]] [smallcap]#Frister H.# _Direct determination of nitrogen content by Dumas analysis; Interlaboratory study on precision characteristics_. AOAC International, Europe Section 4th International Symposium, Nyon, Switzerland, 1994, 33 pp
719
-
720
- * [[[ref15,15]]] [smallcap]#Ranghino F.# Evaluation of rice resistance to cooking, based on the gelatinization time of kernels. _Il Riso_. 1966, *XV* pp 117-127
721
-
722
- * [[[ref16,16]]] [smallcap]#Tkachuk R.# Nitrogen-to-protein conversion factors for cereals and oilseed meals. _Cereal Chem._ 1969, *46* (4) pp 419-423
723
-