sts 0.4.0 → 0.5.0
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 +4 -4
- data/.rubocop_todo.yml +4 -8
- data/Gemfile +0 -1
- data/README.adoc +173 -7
- data/lib/sts/iso_sts/annex_type.rb +20 -0
- data/lib/sts/iso_sts/app.rb +42 -0
- data/lib/sts/iso_sts/app_group.rb +32 -0
- data/lib/sts/iso_sts/array.rb +34 -0
- data/lib/sts/iso_sts/back.rb +26 -0
- data/lib/sts/iso_sts/body.rb +50 -0
- data/lib/sts/iso_sts/bold.rb +44 -0
- data/lib/sts/iso_sts/break.rb +11 -0
- data/lib/sts/iso_sts/caption.rb +32 -0
- data/lib/sts/iso_sts/col.rb +31 -0
- data/lib/sts/iso_sts/colgroup.rb +34 -0
- data/lib/sts/iso_sts/comm_ref.rb +16 -0
- data/lib/sts/iso_sts/copyright_holder.rb +20 -0
- data/lib/sts/iso_sts/copyright_statement.rb +24 -0
- data/lib/sts/iso_sts/copyright_year.rb +15 -0
- data/lib/sts/iso_sts/def.rb +28 -0
- data/lib/sts/iso_sts/def_item.rb +24 -0
- data/lib/sts/iso_sts/def_list.rb +42 -0
- data/lib/sts/iso_sts/disp_formula.rb +40 -0
- data/lib/sts/iso_sts/doc_ref.rb +16 -0
- data/lib/sts/iso_sts/document_identification.rb +23 -0
- data/lib/sts/iso_sts/edition.rb +16 -0
- data/lib/sts/iso_sts/ext_link.rb +33 -0
- data/lib/sts/iso_sts/fig.rb +56 -0
- data/lib/sts/iso_sts/fn.rb +32 -0
- data/lib/sts/iso_sts/fn_group.rb +30 -0
- data/lib/sts/iso_sts/front.rb +21 -0
- data/lib/sts/iso_sts/graphic.rb +40 -0
- data/lib/sts/iso_sts/inline_formula.rb +30 -0
- data/lib/sts/iso_sts/iso_meta.rb +53 -0
- data/lib/sts/iso_sts/italic.rb +44 -0
- data/lib/sts/iso_sts/label.rb +36 -0
- data/lib/sts/iso_sts/language.rb +20 -0
- data/lib/sts/iso_sts/list.rb +36 -0
- data/lib/sts/iso_sts/list_item.rb +32 -0
- data/lib/sts/iso_sts/mathml2/math.rb +67 -0
- data/lib/sts/iso_sts/mathml2.rb +9 -0
- data/lib/sts/iso_sts/mixed_citation.rb +54 -0
- data/lib/sts/iso_sts/nat_meta.rb +53 -0
- data/lib/sts/iso_sts/non_normative_example.rb +26 -0
- data/lib/sts/iso_sts/non_normative_note.rb +28 -0
- data/lib/sts/iso_sts/page_count.rb +15 -0
- data/lib/sts/iso_sts/paragraph.rb +76 -0
- data/lib/sts/iso_sts/permissions.rb +23 -0
- data/lib/sts/iso_sts/preformat.rb +42 -0
- data/lib/sts/iso_sts/ref.rb +34 -0
- data/lib/sts/iso_sts/ref_list.rb +34 -0
- data/lib/sts/iso_sts/reg_meta.rb +57 -0
- data/lib/sts/iso_sts/release_date.rb +16 -0
- data/lib/sts/iso_sts/sec.rb +72 -0
- data/lib/sts/iso_sts/secretariat.rb +16 -0
- data/lib/sts/iso_sts/standard.rb +27 -0
- data/lib/sts/iso_sts/standard_cross_reference.rb +22 -0
- data/lib/sts/iso_sts/standard_identification.rb +31 -0
- data/lib/sts/iso_sts/std.rb +41 -0
- data/lib/sts/iso_sts/std_ref.rb +35 -0
- data/lib/sts/iso_sts/styled_content.rb +62 -0
- data/lib/sts/iso_sts/sub.rb +16 -0
- data/lib/sts/iso_sts/sup.rb +16 -0
- data/lib/sts/iso_sts/table.rb +46 -0
- data/lib/sts/iso_sts/table_wrap.rb +50 -0
- data/lib/sts/iso_sts/table_wrap_foot.rb +29 -0
- data/lib/sts/iso_sts/tbody.rb +30 -0
- data/lib/sts/iso_sts/td.rb +74 -0
- data/lib/sts/iso_sts/term.rb +46 -0
- data/lib/sts/iso_sts/term_sec.rb +48 -0
- data/lib/sts/iso_sts/tfoot.rb +30 -0
- data/lib/sts/iso_sts/th.rb +74 -0
- data/lib/sts/iso_sts/thead.rb +30 -0
- data/lib/sts/iso_sts/title.rb +30 -0
- data/lib/sts/iso_sts/title_compl.rb +22 -0
- data/lib/sts/iso_sts/title_full.rb +22 -0
- data/lib/sts/iso_sts/title_intro.rb +22 -0
- data/lib/sts/iso_sts/title_main.rb +22 -0
- data/lib/sts/iso_sts/title_wrap.rb +26 -0
- data/lib/sts/iso_sts/tr.rb +32 -0
- data/lib/sts/iso_sts/xref.rb +41 -0
- data/lib/sts/iso_sts.rb +103 -0
- data/lib/sts/niso_sts/abstract.rb +23 -0
- data/lib/sts/niso_sts/access_date.rb +20 -0
- data/lib/sts/niso_sts/accrediting_organization.rb +16 -0
- data/lib/sts/niso_sts/ack.rb +27 -0
- data/lib/sts/niso_sts/addr_line.rb +20 -0
- data/lib/sts/niso_sts/address.rb +29 -0
- data/lib/sts/niso_sts/aff.rb +51 -0
- data/lib/sts/niso_sts/aff_alternatives.rb +15 -0
- data/lib/sts/niso_sts/ali/ali.rb +10 -0
- data/lib/sts/niso_sts/ali/free_to_read.rb +25 -0
- data/lib/sts/niso_sts/ali/license_ref.rb +26 -0
- data/lib/sts/niso_sts/alt_text.rb +16 -0
- data/lib/sts/niso_sts/alt_title.rb +16 -0
- data/lib/sts/niso_sts/alternatives.rb +16 -0
- data/lib/sts/niso_sts/annotation.rb +26 -0
- data/lib/sts/niso_sts/anonymous.rb +11 -0
- data/lib/sts/niso_sts/article_title.rb +20 -0
- data/lib/sts/niso_sts/attrib.rb +16 -0
- data/lib/sts/niso_sts/attribution.rb +16 -0
- data/lib/sts/niso_sts/author_comment.rb +24 -0
- data/lib/sts/niso_sts/author_notes.rb +31 -0
- data/lib/sts/niso_sts/authorization.rb +16 -0
- data/lib/sts/niso_sts/award_group.rb +26 -0
- data/lib/sts/niso_sts/award_id.rb +20 -0
- data/lib/sts/niso_sts/bio.rb +24 -0
- data/lib/sts/niso_sts/boxed_text.rb +31 -0
- data/lib/sts/niso_sts/chapter_title.rb +20 -0
- data/lib/sts/niso_sts/chem_struct.rb +16 -0
- data/lib/sts/niso_sts/chem_struct_wrap.rb +32 -0
- data/lib/sts/niso_sts/citation_alternatives.rb +19 -0
- data/lib/sts/niso_sts/city.rb +20 -0
- data/lib/sts/niso_sts/collab.rb +28 -0
- data/lib/sts/niso_sts/collab_alternatives.rb +15 -0
- data/lib/sts/niso_sts/comm_ref_group.rb +15 -0
- data/lib/sts/niso_sts/comment.rb +16 -0
- data/lib/sts/niso_sts/compound_kwd.rb +25 -0
- data/lib/sts/niso_sts/compound_kwd_part.rb +24 -0
- data/lib/sts/niso_sts/conf_acronym.rb +16 -0
- data/lib/sts/niso_sts/conf_date.rb +20 -0
- data/lib/sts/niso_sts/conf_loc.rb +16 -0
- data/lib/sts/niso_sts/conf_name.rb +16 -0
- data/lib/sts/niso_sts/conf_num.rb +16 -0
- data/lib/sts/niso_sts/conf_sponsor.rb +16 -0
- data/lib/sts/niso_sts/conf_theme.rb +16 -0
- data/lib/sts/niso_sts/conference.rb +29 -0
- data/lib/sts/niso_sts/content_language.rb +20 -0
- data/lib/sts/niso_sts/contrib.rb +58 -0
- data/lib/sts/niso_sts/contrib_group.rb +22 -0
- data/lib/sts/niso_sts/contrib_id.rb +20 -0
- data/lib/sts/niso_sts/copyright_holder.rb +16 -0
- data/lib/sts/niso_sts/copyright_statement.rb +16 -0
- data/lib/sts/niso_sts/copyright_year.rb +16 -0
- data/lib/sts/niso_sts/corresp.rb +20 -0
- data/lib/sts/niso_sts/country.rb +20 -0
- data/lib/sts/niso_sts/counts.rb +25 -0
- data/lib/sts/niso_sts/data_title.rb +20 -0
- data/lib/sts/niso_sts/date.rb +25 -0
- data/lib/sts/niso_sts/date_in_citation.rb +25 -0
- data/lib/sts/niso_sts/day.rb +16 -0
- data/lib/sts/niso_sts/degrees.rb +20 -0
- data/lib/sts/niso_sts/disp_formula_group.rb +26 -0
- data/lib/sts/niso_sts/disp_quote.rb +27 -0
- data/lib/sts/niso_sts/doc_number.rb +16 -0
- data/lib/sts/niso_sts/doc_type.rb +16 -0
- data/lib/sts/niso_sts/editing_instruction.rb +24 -0
- data/lib/sts/niso_sts/edition.rb +16 -0
- data/lib/sts/niso_sts/element_citation.rb +103 -0
- data/lib/sts/niso_sts/elocation_id.rb +17 -0
- data/lib/sts/niso_sts/email.rb +20 -0
- data/lib/sts/niso_sts/equation_count.rb +14 -0
- data/lib/sts/niso_sts/era.rb +16 -0
- data/lib/sts/niso_sts/etal.rb +22 -0
- data/lib/sts/niso_sts/fax.rb +20 -0
- data/lib/sts/niso_sts/fig_count.rb +14 -0
- data/lib/sts/niso_sts/fig_group.rb +30 -0
- data/lib/sts/niso_sts/floats_group.rb +16 -0
- data/lib/sts/niso_sts/fpage.rb +20 -0
- data/lib/sts/niso_sts/funding_group.rb +22 -0
- data/lib/sts/niso_sts/funding_source.rb +26 -0
- data/lib/sts/niso_sts/funding_statement.rb +20 -0
- data/lib/sts/niso_sts/given_names.rb +20 -0
- data/lib/sts/niso_sts/glossary.rb +33 -0
- data/lib/sts/niso_sts/gov.rb +20 -0
- data/lib/sts/niso_sts/history.rb +18 -0
- data/lib/sts/niso_sts/hr.rb +11 -0
- data/lib/sts/niso_sts/ics.rb +15 -0
- data/lib/sts/niso_sts/ics_desc.rb +16 -0
- data/lib/sts/niso_sts/ics_wrap.rb +15 -0
- data/lib/sts/niso_sts/index_term.rb +32 -0
- data/lib/sts/niso_sts/index_term_range_end.rb +17 -0
- data/lib/sts/niso_sts/inline_graphic.rb +39 -0
- data/lib/sts/niso_sts/inline_supplementary_material.rb +38 -0
- data/lib/sts/niso_sts/institution.rb +20 -0
- data/lib/sts/niso_sts/institution_id.rb +18 -0
- data/lib/sts/niso_sts/institution_wrap.rb +17 -0
- data/lib/sts/niso_sts/intro.rb +16 -0
- data/lib/sts/niso_sts/is_proof.rb +15 -0
- data/lib/sts/niso_sts/isbn.rb +20 -0
- data/lib/sts/niso_sts/issn.rb +22 -0
- data/lib/sts/niso_sts/issn_l.rb +20 -0
- data/lib/sts/niso_sts/issue.rb +20 -0
- data/lib/sts/niso_sts/kwd.rb +26 -0
- data/lib/sts/niso_sts/kwd_group.rb +35 -0
- data/lib/sts/niso_sts/license.rb +19 -0
- data/lib/sts/niso_sts/license_p.rb +16 -0
- data/lib/sts/niso_sts/long_desc.rb +22 -0
- data/lib/sts/niso_sts/lpage.rb +20 -0
- data/lib/sts/niso_sts/main.rb +16 -0
- data/lib/sts/niso_sts/mathml.rb +69 -0
- data/lib/sts/niso_sts/media.rb +44 -0
- data/lib/sts/niso_sts/milestone_end.rb +26 -0
- data/lib/sts/niso_sts/milestone_start.rb +24 -0
- data/lib/sts/niso_sts/mixed_citation.rb +98 -5
- data/lib/sts/niso_sts/mml_content/apply.rb +47 -0
- data/lib/sts/niso_sts/mml_content/bind.rb +22 -0
- data/lib/sts/niso_sts/mml_content/calculus.rb +77 -0
- data/lib/sts/niso_sts/mml_content/ci.rb +22 -0
- data/lib/sts/niso_sts/mml_content/cn.rb +24 -0
- data/lib/sts/niso_sts/mml_content/constants.rb +114 -0
- data/lib/sts/niso_sts/mml_content/containers.rb +104 -0
- data/lib/sts/niso_sts/mml_content/csymbol.rb +24 -0
- data/lib/sts/niso_sts/mml_content/functional.rb +110 -0
- data/lib/sts/niso_sts/mml_content/linear_algebra.rb +98 -0
- data/lib/sts/niso_sts/mml_content/operators.rb +154 -0
- data/lib/sts/niso_sts/mml_content/qualifiers.rb +111 -0
- data/lib/sts/niso_sts/mml_content/relations.rb +84 -0
- data/lib/sts/niso_sts/mml_content/sets.rb +84 -0
- data/lib/sts/niso_sts/mml_content/statistics.rb +49 -0
- data/lib/sts/niso_sts/mml_content/trigonometry.rb +135 -0
- data/lib/sts/niso_sts/mml_content.rb +152 -0
- data/lib/sts/niso_sts/monospace.rb +22 -0
- data/lib/sts/niso_sts/month.rb +16 -0
- data/lib/sts/niso_sts/name.rb +25 -0
- data/lib/sts/niso_sts/name_alternatives.rb +15 -0
- data/lib/sts/niso_sts/nat_meta.rb +44 -0
- data/lib/sts/niso_sts/nested_kwd.rb +19 -0
- data/lib/sts/niso_sts/nlm_citation.rb +103 -0
- data/lib/sts/niso_sts/normative_example.rb +27 -0
- data/lib/sts/niso_sts/normative_note.rb +29 -0
- data/lib/sts/niso_sts/note.rb +29 -0
- data/lib/sts/niso_sts/notes.rb +31 -0
- data/lib/sts/niso_sts/notes_group.rb +26 -0
- data/lib/sts/niso_sts/on_behalf_of.rb +20 -0
- data/lib/sts/niso_sts/open_access.rb +16 -0
- data/lib/sts/niso_sts/originator.rb +16 -0
- data/lib/sts/niso_sts/overline.rb +22 -0
- data/lib/sts/niso_sts/page_range.rb +20 -0
- data/lib/sts/niso_sts/paragraph.rb +2 -2
- data/lib/sts/niso_sts/part_number.rb +16 -0
- data/lib/sts/niso_sts/part_of_speech.rb +16 -0
- data/lib/sts/niso_sts/patent.rb +20 -0
- data/lib/sts/niso_sts/person_group.rb +28 -0
- data/lib/sts/niso_sts/phone.rb +20 -0
- data/lib/sts/niso_sts/postal_code.rb +20 -0
- data/lib/sts/niso_sts/prefix.rb +20 -0
- data/lib/sts/niso_sts/preformat.rb +26 -0
- data/lib/sts/niso_sts/price.rb +16 -0
- data/lib/sts/niso_sts/principal_award_recipient.rb +16 -0
- data/lib/sts/niso_sts/principal_investigator.rb +16 -0
- data/lib/sts/niso_sts/private_char.rb +22 -0
- data/lib/sts/niso_sts/product.rb +20 -0
- data/lib/sts/niso_sts/proj_id.rb +16 -0
- data/lib/sts/niso_sts/pub_date.rb +29 -0
- data/lib/sts/niso_sts/pub_id.rb +19 -0
- data/lib/sts/niso_sts/publisher.rb +17 -0
- data/lib/sts/niso_sts/publisher_loc.rb +20 -0
- data/lib/sts/niso_sts/publisher_name.rb +20 -0
- data/lib/sts/niso_sts/rb.rb +22 -0
- data/lib/sts/niso_sts/ref_count.rb +14 -0
- data/lib/sts/niso_sts/reference.rb +6 -0
- data/lib/sts/niso_sts/reg_meta.rb +44 -0
- data/lib/sts/niso_sts/related_article.rb +24 -0
- data/lib/sts/niso_sts/related_object.rb +22 -0
- data/lib/sts/niso_sts/related_term.rb +18 -0
- data/lib/sts/niso_sts/release_date.rb +19 -0
- data/lib/sts/niso_sts/release_version.rb +16 -0
- data/lib/sts/niso_sts/release_version_id.rb +16 -0
- data/lib/sts/niso_sts/role.rb +22 -0
- data/lib/sts/niso_sts/roman.rb +22 -0
- data/lib/sts/niso_sts/rp.rb +18 -0
- data/lib/sts/niso_sts/rt.rb +22 -0
- data/lib/sts/niso_sts/ruby.rb +23 -0
- data/lib/sts/niso_sts/sans_serif.rb +22 -0
- data/lib/sts/niso_sts/sc.rb +22 -0
- data/lib/sts/niso_sts/sdo.rb +16 -0
- data/lib/sts/niso_sts/season.rb +16 -0
- data/lib/sts/niso_sts/secretariat.rb +16 -0
- data/lib/sts/niso_sts/see.rb +26 -0
- data/lib/sts/niso_sts/see_also.rb +26 -0
- data/lib/sts/niso_sts/self_uri.rb +22 -0
- data/lib/sts/niso_sts/series.rb +22 -0
- data/lib/sts/niso_sts/series_text.rb +22 -0
- data/lib/sts/niso_sts/series_title.rb +22 -0
- data/lib/sts/niso_sts/sig.rb +18 -0
- data/lib/sts/niso_sts/sig_block.rb +22 -0
- data/lib/sts/niso_sts/size.rb +18 -0
- data/lib/sts/niso_sts/source.rb +20 -0
- data/lib/sts/niso_sts/speaker.rb +16 -0
- data/lib/sts/niso_sts/speech.rb +25 -0
- data/lib/sts/niso_sts/state.rb +20 -0
- data/lib/sts/niso_sts/statement.rb +29 -0
- data/lib/sts/niso_sts/std_doc_meta.rb +44 -0
- data/lib/sts/niso_sts/std_org.rb +25 -0
- data/lib/sts/niso_sts/std_org_abbrev.rb +16 -0
- data/lib/sts/niso_sts/std_org_group.rb +15 -0
- data/lib/sts/niso_sts/std_org_loc.rb +16 -0
- data/lib/sts/niso_sts/std_org_name.rb +16 -0
- data/lib/sts/niso_sts/std_organization.rb +16 -0
- data/lib/sts/niso_sts/strike.rb +22 -0
- data/lib/sts/niso_sts/string_conf.rb +16 -0
- data/lib/sts/niso_sts/string_date.rb +16 -0
- data/lib/sts/niso_sts/string_name.rb +24 -0
- data/lib/sts/niso_sts/styled_content.rb +26 -0
- data/lib/sts/niso_sts/sub.rb +20 -0
- data/lib/sts/niso_sts/subj_group.rb +24 -0
- data/lib/sts/niso_sts/subject.rb +24 -0
- data/lib/sts/niso_sts/subtitle.rb +16 -0
- data/lib/sts/niso_sts/suffix.rb +20 -0
- data/lib/sts/niso_sts/sup.rb +20 -0
- data/lib/sts/niso_sts/suppl_number.rb +16 -0
- data/lib/sts/niso_sts/suppl_type.rb +16 -0
- data/lib/sts/niso_sts/suppl_version.rb +16 -0
- data/lib/sts/niso_sts/supplement.rb +24 -0
- data/lib/sts/niso_sts/supplementary_material.rb +46 -0
- data/lib/sts/niso_sts/surname.rb +20 -0
- data/lib/sts/niso_sts/table_count.rb +14 -0
- data/lib/sts/niso_sts/target.rb +24 -0
- data/lib/sts/niso_sts/term.rb +4 -2
- data/lib/sts/niso_sts/term_head.rb +16 -0
- data/lib/sts/niso_sts/term_source.rb +16 -0
- data/lib/sts/niso_sts/tex_math.rb +16 -0
- data/lib/sts/niso_sts/textual_form.rb +16 -0
- data/lib/sts/niso_sts/time_stamp.rb +20 -0
- data/lib/sts/niso_sts/trans_abstract.rb +23 -0
- data/lib/sts/niso_sts/trans_source.rb +20 -0
- data/lib/sts/niso_sts/trans_title.rb +20 -0
- data/lib/sts/niso_sts/trans_title_group.rb +15 -0
- data/lib/sts/niso_sts/underline.rb +22 -0
- data/lib/sts/niso_sts/unstructured_kwd_group.rb +24 -0
- data/lib/sts/niso_sts/uri.rb +20 -0
- data/lib/sts/niso_sts/urn.rb +16 -0
- data/lib/sts/niso_sts/verse_group.rb +29 -0
- data/lib/sts/niso_sts/verse_line.rb +16 -0
- data/lib/sts/niso_sts/version.rb +16 -0
- data/lib/sts/niso_sts/volume.rb +20 -0
- data/lib/sts/niso_sts/volume_id.rb +22 -0
- data/lib/sts/niso_sts/volume_issue_group.rb +16 -0
- data/lib/sts/niso_sts/volume_series.rb +16 -0
- data/lib/sts/niso_sts/word_count.rb +14 -0
- data/lib/sts/niso_sts/xi/fallback.rb +18 -0
- data/lib/sts/niso_sts/xi/include.rb +27 -0
- data/lib/sts/niso_sts/xi/xi.rb +10 -0
- data/lib/sts/niso_sts/year.rb +16 -0
- data/lib/sts/niso_sts.rb +233 -1
- data/lib/sts/tbx_iso_tml/colgroup.rb +30 -0
- data/lib/sts/tbx_iso_tml/table.rb +18 -0
- data/lib/sts/tbx_iso_tml/table_wrap.rb +8 -0
- data/lib/sts/tbx_iso_tml/table_wrap_foot.rb +12 -0
- data/lib/sts/tbx_iso_tml/td.rb +14 -4
- data/lib/sts/tbx_iso_tml/tfoot.rb +26 -0
- data/lib/sts/tbx_iso_tml/th.rb +12 -0
- data/lib/sts/tbx_iso_tml.rb +2 -0
- data/lib/sts/version.rb +1 -1
- data/lib/sts.rb +2 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/NISO-STS-extended-1-mathml3-elements.xsd +11447 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/NISO-STS-extended-1-mathml3.xsd +97 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/module-oasis.xsd +227 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/mathml3/mathml3-common.xsd +101 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/mathml3/mathml3-content.xsd +683 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/mathml3/mathml3-presentation.xsd +2092 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/mathml3/mathml3-strict-content.xsd +186 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/mathml3/mathml3.xsd +9 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/module-ali.xsd +46 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/module-tbx.xsd +494 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/module-xi.xsd +51 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/xlink.xsd +100 -0
- data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/xml.xsd +287 -0
- data/reference-docs/isosts-example/feature_doc.xml +502 -0
- data/reference-docs/isosts-v1/ISOSTS-classes.ent +277 -0
- data/reference-docs/isosts-v1/ISOSTS-iso-metadata.ent +765 -0
- data/reference-docs/isosts-v1/ISOSTS-mixes.ent +199 -0
- data/reference-docs/isosts-v1/ISOSTS-models.ent +869 -0
- data/reference-docs/isosts-v1/ISOSTS-modules.ent +207 -0
- data/reference-docs/isosts-v1/ISOSTS-nat-metadata.ent +169 -0
- data/reference-docs/isosts-v1/ISOSTS-reg-metadata.ent +156 -0
- data/reference-docs/isosts-v1/ISOSTS-tbx-namespace.ent +454 -0
- data/reference-docs/isosts-v1/ISOSTS-tbx-setup.ent +142 -0
- data/reference-docs/isosts-v1/ISOSTS.dtd +745 -0
- data/reference-docs/isosts-v1/JATS-XHTMLtablesetup0.ent +313 -0
- data/reference-docs/isosts-v1/JATS-articlemeta0.ent +1734 -0
- data/reference-docs/isosts-v1/JATS-backmatter0.ent +310 -0
- data/reference-docs/isosts-v1/JATS-chars0.ent +446 -0
- data/reference-docs/isosts-v1/JATS-common0.ent +3207 -0
- data/reference-docs/isosts-v1/JATS-default-classes0.ent +881 -0
- data/reference-docs/isosts-v1/JATS-default-mixes0.ent +317 -0
- data/reference-docs/isosts-v1/JATS-display0.ent +839 -0
- data/reference-docs/isosts-v1/JATS-format0.ent +544 -0
- data/reference-docs/isosts-v1/JATS-funding0.ent +440 -0
- data/reference-docs/isosts-v1/JATS-journalmeta0.ent +352 -0
- data/reference-docs/isosts-v1/JATS-journalpub-oasis-custom-classes0.ent +220 -0
- data/reference-docs/isosts-v1/JATS-journalpub-oasis-custom-modules0.ent +154 -0
- data/reference-docs/isosts-v1/JATS-journalpubcustom-classes0.ent +194 -0
- data/reference-docs/isosts-v1/JATS-journalpubcustom-mixes0.ent +148 -0
- data/reference-docs/isosts-v1/JATS-journalpubcustom-models0.ent +674 -0
- data/reference-docs/isosts-v1/JATS-journalpubcustom-modules0.ent +152 -0
- data/reference-docs/isosts-v1/JATS-journalpublishing-oasis0.dtd +721 -0
- data/reference-docs/isosts-v1/JATS-journalpublishing0.dtd +709 -0
- data/reference-docs/isosts-v1/JATS-link0.ent +341 -0
- data/reference-docs/isosts-v1/JATS-list0.ent +393 -0
- data/reference-docs/isosts-v1/JATS-math0.ent +307 -0
- data/reference-docs/isosts-v1/JATS-mathmlsetup0.ent +266 -0
- data/reference-docs/isosts-v1/JATS-modules0.ent +443 -0
- data/reference-docs/isosts-v1/JATS-nlmcitation0.ent +173 -0
- data/reference-docs/isosts-v1/JATS-notat0.ent +193 -0
- data/reference-docs/isosts-v1/JATS-oasis-tablesetup0.ent +290 -0
- data/reference-docs/isosts-v1/JATS-para0.ent +388 -0
- data/reference-docs/isosts-v1/JATS-phrase0.ent +415 -0
- data/reference-docs/isosts-v1/JATS-references0.ent +888 -0
- data/reference-docs/isosts-v1/JATS-related-object0.ent +159 -0
- data/reference-docs/isosts-v1/JATS-section0.ent +225 -0
- data/reference-docs/isosts-v1/JATS-xmlspecchars0.ent +312 -0
- data/reference-docs/isosts-v1/Smallsamples/Samp1.xml +68 -0
- data/reference-docs/isosts-v1/Smallsamples/Sample2.xml +41 -0
- data/reference-docs/isosts-v1/Smallsamples/meta-mixes_ok_1.xml +85 -0
- data/reference-docs/isosts-v1/Smallsamples/meta-mixes_ok_2.xml +109 -0
- data/reference-docs/isosts-v1/Smallsamples/nat-meta.xml +63 -0
- data/reference-docs/isosts-v1/Smallsamples/para-mixes_ok_1.xml +37 -0
- data/reference-docs/isosts-v1/Smallsamples/reg-meta.xml +65 -0
- data/reference-docs/isosts-v1/Smallsamples/tbx-highlight-elements.xml +54 -0
- data/reference-docs/isosts-v1/catalog-iso.xml +514 -0
- data/reference-docs/isosts-v1/catalog-jats-v0.xml +642 -0
- data/reference-docs/isosts-v1/catalog-test-v0.xml +642 -0
- data/reference-docs/isosts-v1/catalog.ent +191 -0
- data/reference-docs/isosts-v1/doc/ISOSTS-style.css +456 -0
- data/reference-docs/isosts-v1/doc/changes.html +146 -0
- data/reference-docs/isosts-v1/doc/el_reg-meta.html +276 -0
- data/reference-docs/isosts-v1/doc/el_release-version-id.html +48 -0
- data/reference-docs/isosts-v1/doc/graphics/3angle-down.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/3angle-right.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/ack.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/app-group.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/app.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/array.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/back.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/bio.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/block.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/body.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/boxed-text.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/caption.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/cen-meta.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/chem-struct-wrap.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/custom-meta-group.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/def-list.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/disp-formula-group.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/disp-quote.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/doc-ident.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/fig-group.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/fig.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/fn-group.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/fn.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/front.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/glossary.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/identity-matrix.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/integral.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/iso-meta.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/list.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nat-meta.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-attributes.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-collapse.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-compound1.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-compound2.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-compound3.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-elem-mul.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-elem-opt.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-elem-plus.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-elem-req.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-elsewhere.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-exclusion.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-or-seq.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-pcdata.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-req-seq.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/nf-root.gif +0 -0
- data/reference-docs/isosts-v1/doc/graphics/non-normative-example.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/non-normative-note.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/notes.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/permissions.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/ref-list.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/ref.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/reg-meta.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/sec.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/speech.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/stack.jpg +0 -0
- data/reference-docs/isosts-v1/doc/graphics/standard.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/statement.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/std-ident.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/std-xref.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/sub-part.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/supplementary-material.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/table-wrap-foot.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/table-wrap-group.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/table-wrap.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/tablesample1.jpg +0 -0
- data/reference-docs/isosts-v1/doc/graphics/term-display.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/term-sec.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/title-wrap.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/verse-group.png +0 -0
- data/reference-docs/isosts-v1/doc/graphics/x-maps-to-y.gif +0 -0
- data/reference-docs/isosts-v1/doc/index.html +422 -0
- data/reference-docs/isosts-v1/doc/n-2830.html +252 -0
- data/reference-docs/isosts-v1/doc/n-2ex0.html +124 -0
- data/reference-docs/isosts-v1/doc/n-2m60.html +75 -0
- data/reference-docs/isosts-v1/doc/n-2nf0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-3320.html +328 -0
- data/reference-docs/isosts-v1/doc/n-37t0.html +54 -0
- data/reference-docs/isosts-v1/doc/n-3e60.html +64 -0
- data/reference-docs/isosts-v1/doc/n-3gx0.html +45 -0
- data/reference-docs/isosts-v1/doc/n-3kg0.html +60 -0
- data/reference-docs/isosts-v1/doc/n-3m40.html +226 -0
- data/reference-docs/isosts-v1/doc/n-3m50.html +68 -0
- data/reference-docs/isosts-v1/doc/n-3pc0.html +97 -0
- data/reference-docs/isosts-v1/doc/n-3un0.html +82 -0
- data/reference-docs/isosts-v1/doc/n-3xe0.html +76 -0
- data/reference-docs/isosts-v1/doc/n-3y30.html +70 -0
- data/reference-docs/isosts-v1/doc/n-3yd0.html +108 -0
- data/reference-docs/isosts-v1/doc/n-3zs0.html +73 -0
- data/reference-docs/isosts-v1/doc/n-44e0.html +205 -0
- data/reference-docs/isosts-v1/doc/n-45w0.html +140 -0
- data/reference-docs/isosts-v1/doc/n-4gf0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-4h00.html +170 -0
- data/reference-docs/isosts-v1/doc/n-4iv0.html +203 -0
- data/reference-docs/isosts-v1/doc/n-4y70.html +165 -0
- data/reference-docs/isosts-v1/doc/n-4ys0.html +209 -0
- data/reference-docs/isosts-v1/doc/n-5240.html +354 -0
- data/reference-docs/isosts-v1/doc/n-55a0.html +166 -0
- data/reference-docs/isosts-v1/doc/n-56w0.html +258 -0
- data/reference-docs/isosts-v1/doc/n-5930.html +229 -0
- data/reference-docs/isosts-v1/doc/n-5ae0.html +165 -0
- data/reference-docs/isosts-v1/doc/n-5b40.html +205 -0
- data/reference-docs/isosts-v1/doc/n-5eg0.html +46 -0
- data/reference-docs/isosts-v1/doc/n-5h80.html +217 -0
- data/reference-docs/isosts-v1/doc/n-5j30.html +93 -0
- data/reference-docs/isosts-v1/doc/n-5qw0.html +65 -0
- data/reference-docs/isosts-v1/doc/n-5r30.html +112 -0
- data/reference-docs/isosts-v1/doc/n-5rx0.html +103 -0
- data/reference-docs/isosts-v1/doc/n-5sg0.html +54 -0
- data/reference-docs/isosts-v1/doc/n-5ud0.html +50 -0
- data/reference-docs/isosts-v1/doc/n-5v30.html +93 -0
- data/reference-docs/isosts-v1/doc/n-5z40.html +196 -0
- data/reference-docs/isosts-v1/doc/n-6420.html +162 -0
- data/reference-docs/isosts-v1/doc/n-6430.html +106 -0
- data/reference-docs/isosts-v1/doc/n-6ew0.html +243 -0
- data/reference-docs/isosts-v1/doc/n-6f60.html +108 -0
- data/reference-docs/isosts-v1/doc/n-6fe0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-6g30.html +126 -0
- data/reference-docs/isosts-v1/doc/n-6g50.html +251 -0
- data/reference-docs/isosts-v1/doc/n-6g70.html +230 -0
- data/reference-docs/isosts-v1/doc/n-6q30.html +71 -0
- data/reference-docs/isosts-v1/doc/n-6t00.html +189 -0
- data/reference-docs/isosts-v1/doc/n-6uv0.html +359 -0
- data/reference-docs/isosts-v1/doc/n-6wn0.html +108 -0
- data/reference-docs/isosts-v1/doc/n-76s0.html +72 -0
- data/reference-docs/isosts-v1/doc/n-7760.html +46 -0
- data/reference-docs/isosts-v1/doc/n-7cf0.html +54 -0
- data/reference-docs/isosts-v1/doc/n-7cn0.html +49 -0
- data/reference-docs/isosts-v1/doc/n-7cw0.html +71 -0
- data/reference-docs/isosts-v1/doc/n-7ev0.html +138 -0
- data/reference-docs/isosts-v1/doc/n-7na0.html +235 -0
- data/reference-docs/isosts-v1/doc/n-7p60.html +54 -0
- data/reference-docs/isosts-v1/doc/n-7rg0.html +64 -0
- data/reference-docs/isosts-v1/doc/n-7s40.html +185 -0
- data/reference-docs/isosts-v1/doc/n-7v80.html +81 -0
- data/reference-docs/isosts-v1/doc/n-7zf0.html +46 -0
- data/reference-docs/isosts-v1/doc/n-83n0.html +94 -0
- data/reference-docs/isosts-v1/doc/n-83s0.html +98 -0
- data/reference-docs/isosts-v1/doc/n-8ag0.html +78 -0
- data/reference-docs/isosts-v1/doc/n-8b30.html +98 -0
- data/reference-docs/isosts-v1/doc/n-8i70.html +144 -0
- data/reference-docs/isosts-v1/doc/n-8jw0.html +129 -0
- data/reference-docs/isosts-v1/doc/n-8n40.html +111 -0
- data/reference-docs/isosts-v1/doc/n-8pn0.html +67 -0
- data/reference-docs/isosts-v1/doc/n-8tt0.html +142 -0
- data/reference-docs/isosts-v1/doc/n-8u70.html +271 -0
- data/reference-docs/isosts-v1/doc/n-9a40.html +101 -0
- data/reference-docs/isosts-v1/doc/n-9b00.html +72 -0
- data/reference-docs/isosts-v1/doc/n-9ba0.html +321 -0
- data/reference-docs/isosts-v1/doc/n-9e40.html +157 -0
- data/reference-docs/isosts-v1/doc/n-9h20.html +149 -0
- data/reference-docs/isosts-v1/doc/n-9j80.html +91 -0
- data/reference-docs/isosts-v1/doc/n-9r30.html +79 -0
- data/reference-docs/isosts-v1/doc/n-9sc0.html +66 -0
- data/reference-docs/isosts-v1/doc/n-9xf0.html +65 -0
- data/reference-docs/isosts-v1/doc/n-a4g0.html +61 -0
- data/reference-docs/isosts-v1/doc/n-a5d0.html +88 -0
- data/reference-docs/isosts-v1/doc/n-aht0.html +264 -0
- data/reference-docs/isosts-v1/doc/n-aia0.html +236 -0
- data/reference-docs/isosts-v1/doc/n-amu0.html +220 -0
- data/reference-docs/isosts-v1/doc/n-apg0.html +62 -0
- data/reference-docs/isosts-v1/doc/n-ard0.html +178 -0
- data/reference-docs/isosts-v1/doc/n-asw0.html +205 -0
- data/reference-docs/isosts-v1/doc/n-ax50.html +127 -0
- data/reference-docs/isosts-v1/doc/n-bbg0.html +64 -0
- data/reference-docs/isosts-v1/doc/n-bc60.html +63 -0
- data/reference-docs/isosts-v1/doc/n-bie0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-bjx0.html +121 -0
- data/reference-docs/isosts-v1/doc/n-bpc0.html +99 -0
- data/reference-docs/isosts-v1/doc/n-bu20.html +277 -0
- data/reference-docs/isosts-v1/doc/n-bve0.html +45 -0
- data/reference-docs/isosts-v1/doc/n-bvf0.html +50 -0
- data/reference-docs/isosts-v1/doc/n-bz80.html +101 -0
- data/reference-docs/isosts-v1/doc/n-c000.html +23 -0
- data/reference-docs/isosts-v1/doc/n-c500.html +397 -0
- data/reference-docs/isosts-v1/doc/n-c6d0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-c6v0.html +226 -0
- data/reference-docs/isosts-v1/doc/n-c9x0.html +214 -0
- data/reference-docs/isosts-v1/doc/n-cdf0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-cie0.html +59 -0
- data/reference-docs/isosts-v1/doc/n-cj60.html +68 -0
- data/reference-docs/isosts-v1/doc/n-cn80.html +159 -0
- data/reference-docs/isosts-v1/doc/n-cvd0.html +166 -0
- data/reference-docs/isosts-v1/doc/n-cvn0.html +128 -0
- data/reference-docs/isosts-v1/doc/n-d2t0.html +78 -0
- data/reference-docs/isosts-v1/doc/n-d5g0.html +56 -0
- data/reference-docs/isosts-v1/doc/n-d750.html +116 -0
- data/reference-docs/isosts-v1/doc/n-d950.html +45 -0
- data/reference-docs/isosts-v1/doc/n-d9m0.html +692 -0
- data/reference-docs/isosts-v1/doc/n-des0.html +191 -0
- data/reference-docs/isosts-v1/doc/n-dg20.html +256 -0
- data/reference-docs/isosts-v1/doc/n-dpe0.html +56 -0
- data/reference-docs/isosts-v1/doc/n-dsn0.html +56 -0
- data/reference-docs/isosts-v1/doc/n-du60.html +97 -0
- data/reference-docs/isosts-v1/doc/n-dwx0.html +91 -0
- data/reference-docs/isosts-v1/doc/n-dzv0.html +94 -0
- data/reference-docs/isosts-v1/doc/n-e8g0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-edd0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-edg0.html +58 -0
- data/reference-docs/isosts-v1/doc/n-efg0.html +78 -0
- data/reference-docs/isosts-v1/doc/n-egd0.html +60 -0
- data/reference-docs/isosts-v1/doc/n-ejg0.html +49 -0
- data/reference-docs/isosts-v1/doc/n-eme0.html +73 -0
- data/reference-docs/isosts-v1/doc/n-en60.html +95 -0
- data/reference-docs/isosts-v1/doc/n-epf0.html +72 -0
- data/reference-docs/isosts-v1/doc/n-eqe0.html +53 -0
- data/reference-docs/isosts-v1/doc/n-eqv0.html +207 -0
- data/reference-docs/isosts-v1/doc/n-f6e0.html +67 -0
- data/reference-docs/isosts-v1/doc/n-f900.html +170 -0
- data/reference-docs/isosts-v1/doc/n-f980.html +170 -0
- data/reference-docs/isosts-v1/doc/n-fi60.html +55 -0
- data/reference-docs/isosts-v1/doc/n-fkn0.html +60 -0
- data/reference-docs/isosts-v1/doc/n-fp40.html +141 -0
- data/reference-docs/isosts-v1/doc/n-fp80.html +83 -0
- data/reference-docs/isosts-v1/doc/n-fsa0.html +77 -0
- data/reference-docs/isosts-v1/doc/n-ft30.html +159 -0
- data/reference-docs/isosts-v1/doc/n-ftc0.html +136 -0
- data/reference-docs/isosts-v1/doc/n-fvx0.html +170 -0
- data/reference-docs/isosts-v1/doc/n-fw80.html +109 -0
- data/reference-docs/isosts-v1/doc/n-g3a0.html +63 -0
- data/reference-docs/isosts-v1/doc/n-g3e0.html +108 -0
- data/reference-docs/isosts-v1/doc/n-g7u0.html +206 -0
- data/reference-docs/isosts-v1/doc/n-g7v0.html +110 -0
- data/reference-docs/isosts-v1/doc/n-g8w0.html +305 -0
- data/reference-docs/isosts-v1/doc/n-gef0.html +54 -0
- data/reference-docs/isosts-v1/doc/n-gfx0.html +62 -0
- data/reference-docs/isosts-v1/doc/n-ghg0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-gj00.html +198 -0
- data/reference-docs/isosts-v1/doc/n-gk20.html +143 -0
- data/reference-docs/isosts-v1/doc/n-gk30.html +208 -0
- data/reference-docs/isosts-v1/doc/n-gqn0.html +54 -0
- data/reference-docs/isosts-v1/doc/n-gxx0.html +126 -0
- data/reference-docs/isosts-v1/doc/n-h5e0.html +113 -0
- data/reference-docs/isosts-v1/doc/n-h860.html +62 -0
- data/reference-docs/isosts-v1/doc/n-hcg0.html +61 -0
- data/reference-docs/isosts-v1/doc/n-he00.html +104 -0
- data/reference-docs/isosts-v1/doc/n-hka0.html +160 -0
- data/reference-docs/isosts-v1/doc/n-hkf0.html +123 -0
- data/reference-docs/isosts-v1/doc/n-hqc0.html +300 -0
- data/reference-docs/isosts-v1/doc/n-hqf0.html +143 -0
- data/reference-docs/isosts-v1/doc/n-hqx0.html +123 -0
- data/reference-docs/isosts-v1/doc/n-hu40.html +155 -0
- data/reference-docs/isosts-v1/doc/n-hz60.html +46 -0
- data/reference-docs/isosts-v1/doc/n-i640.html +99 -0
- data/reference-docs/isosts-v1/doc/n-i6u0.html +497 -0
- data/reference-docs/isosts-v1/doc/n-ic50.html +134 -0
- data/reference-docs/isosts-v1/doc/n-id60.html +49 -0
- data/reference-docs/isosts-v1/doc/n-ide0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-ig60.html +53 -0
- data/reference-docs/isosts-v1/doc/n-iha0.html +43 -0
- data/reference-docs/isosts-v1/doc/n-ihx0.html +103 -0
- data/reference-docs/isosts-v1/doc/n-iic0.html +156 -0
- data/reference-docs/isosts-v1/doc/n-iix0.html +62 -0
- data/reference-docs/isosts-v1/doc/n-inf0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-isu0.html +220 -0
- data/reference-docs/isosts-v1/doc/n-itx0.html +209 -0
- data/reference-docs/isosts-v1/doc/n-iz00.html +116 -0
- data/reference-docs/isosts-v1/doc/n-j2r0.html +1135 -0
- data/reference-docs/isosts-v1/doc/n-j5t0.html +254 -0
- data/reference-docs/isosts-v1/doc/n-j660.html +60 -0
- data/reference-docs/isosts-v1/doc/n-j6d0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-j6g0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-ja60.html +54 -0
- data/reference-docs/isosts-v1/doc/n-je30.html +127 -0
- data/reference-docs/isosts-v1/doc/n-jeg0.html +49 -0
- data/reference-docs/isosts-v1/doc/n-jmf0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-jnu0.html +49 -0
- data/reference-docs/isosts-v1/doc/n-jpt0.html +353 -0
- data/reference-docs/isosts-v1/doc/n-jr40.html +107 -0
- data/reference-docs/isosts-v1/doc/n-k3w0.html +114 -0
- data/reference-docs/isosts-v1/doc/n-k480.html +178 -0
- data/reference-docs/isosts-v1/doc/n-k560.html +63 -0
- data/reference-docs/isosts-v1/doc/n-k6n0.html +158 -0
- data/reference-docs/isosts-v1/doc/n-k7e0.html +124 -0
- data/reference-docs/isosts-v1/doc/n-k850.html +255 -0
- data/reference-docs/isosts-v1/doc/n-k860.html +48 -0
- data/reference-docs/isosts-v1/doc/n-kbg0.html +54 -0
- data/reference-docs/isosts-v1/doc/n-kbw0.html +167 -0
- data/reference-docs/isosts-v1/doc/n-kds0.html +223 -0
- data/reference-docs/isosts-v1/doc/n-kft0.html +354 -0
- data/reference-docs/isosts-v1/doc/n-kkf0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-kr00.html +101 -0
- data/reference-docs/isosts-v1/doc/n-kse0.html +125 -0
- data/reference-docs/isosts-v1/doc/n-ktx0.html +90 -0
- data/reference-docs/isosts-v1/doc/n-m7n0.html +69 -0
- data/reference-docs/isosts-v1/doc/n-m9n0.html +75 -0
- data/reference-docs/isosts-v1/doc/n-mbd0.html +215 -0
- data/reference-docs/isosts-v1/doc/n-mce0.html +70 -0
- data/reference-docs/isosts-v1/doc/n-mfa0.html +44 -0
- data/reference-docs/isosts-v1/doc/n-mgg0.html +136 -0
- data/reference-docs/isosts-v1/doc/n-mhn0.html +173 -0
- data/reference-docs/isosts-v1/doc/n-mid0.html +26 -0
- data/reference-docs/isosts-v1/doc/n-mkg0.html +85 -0
- data/reference-docs/isosts-v1/doc/n-mkt0.html +69 -0
- data/reference-docs/isosts-v1/doc/n-msf0.html +93 -0
- data/reference-docs/isosts-v1/doc/n-muf0.html +63 -0
- data/reference-docs/isosts-v1/doc/n-mx70.html +139 -0
- data/reference-docs/isosts-v1/doc/n-n2n0.html +56 -0
- data/reference-docs/isosts-v1/doc/n-n4f0.html +95 -0
- data/reference-docs/isosts-v1/doc/n-n7s0.html +199 -0
- data/reference-docs/isosts-v1/doc/n-n8u0.html +126 -0
- data/reference-docs/isosts-v1/doc/n-naa0.html +84 -0
- data/reference-docs/isosts-v1/doc/n-nf00.html +240 -0
- data/reference-docs/isosts-v1/doc/n-ngx0.html +206 -0
- data/reference-docs/isosts-v1/doc/n-nk40.html +66 -0
- data/reference-docs/isosts-v1/doc/n-nmt0.html +229 -0
- data/reference-docs/isosts-v1/doc/n-nt80.html +257 -0
- data/reference-docs/isosts-v1/doc/n-ntn0.html +71 -0
- data/reference-docs/isosts-v1/doc/n-ntu0.html +60 -0
- data/reference-docs/isosts-v1/doc/n-nx80.html +117 -0
- data/reference-docs/isosts-v1/doc/n-nye0.html +169 -0
- data/reference-docs/isosts-v1/doc/n-nyw0.html +66 -0
- data/reference-docs/isosts-v1/doc/n-p6c0.html +227 -0
- data/reference-docs/isosts-v1/doc/n-pau0.html +259 -0
- data/reference-docs/isosts-v1/doc/n-pcd0.html +53 -0
- data/reference-docs/isosts-v1/doc/n-pd80.html +136 -0
- data/reference-docs/isosts-v1/doc/n-pfv0.html +177 -0
- data/reference-docs/isosts-v1/doc/n-ph30.html +99 -0
- data/reference-docs/isosts-v1/doc/n-pr70.html +133 -0
- data/reference-docs/isosts-v1/doc/n-pud0.html +54 -0
- data/reference-docs/isosts-v1/doc/n-pux0.html +103 -0
- data/reference-docs/isosts-v1/doc/n-pv50.html +231 -0
- data/reference-docs/isosts-v1/doc/n-pv70.html +355 -0
- data/reference-docs/isosts-v1/doc/n-pwf0.html +62 -0
- data/reference-docs/isosts-v1/doc/n-px40.html +177 -0
- data/reference-docs/isosts-v1/doc/n-pxt0.html +125 -0
- data/reference-docs/isosts-v1/doc/n-pz20.html +499 -0
- data/reference-docs/isosts-v1/doc/n-pzg0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-q3g0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-q4a0.html +100 -0
- data/reference-docs/isosts-v1/doc/n-qc70.html +270 -0
- data/reference-docs/isosts-v1/doc/n-qd40.html +361 -0
- data/reference-docs/isosts-v1/doc/n-qdf0.html +58 -0
- data/reference-docs/isosts-v1/doc/n-qe50.html +162 -0
- data/reference-docs/isosts-v1/doc/n-qf50.html +101 -0
- data/reference-docs/isosts-v1/doc/n-qr20.html +89 -0
- data/reference-docs/isosts-v1/doc/n-qv30.html +93 -0
- data/reference-docs/isosts-v1/doc/n-qxe0.html +81 -0
- data/reference-docs/isosts-v1/doc/n-qzs0.html +102 -0
- data/reference-docs/isosts-v1/doc/n-r650.html +79 -0
- data/reference-docs/isosts-v1/doc/n-r7e0.html +156 -0
- data/reference-docs/isosts-v1/doc/n-rd50.html +522 -0
- data/reference-docs/isosts-v1/doc/n-rf70.html +140 -0
- data/reference-docs/isosts-v1/doc/n-riw0.html +114 -0
- data/reference-docs/isosts-v1/doc/n-rj20.html +183 -0
- data/reference-docs/isosts-v1/doc/n-rkv0.html +338 -0
- data/reference-docs/isosts-v1/doc/n-rm50.html +81 -0
- data/reference-docs/isosts-v1/doc/n-rn30.html +186 -0
- data/reference-docs/isosts-v1/doc/n-rrf0.html +54 -0
- data/reference-docs/isosts-v1/doc/n-s280.html +69 -0
- data/reference-docs/isosts-v1/doc/n-s6f0.html +47 -0
- data/reference-docs/isosts-v1/doc/n-s9w0.html +196 -0
- data/reference-docs/isosts-v1/doc/n-sb60.html +71 -0
- data/reference-docs/isosts-v1/doc/n-sbn0.html +80 -0
- data/reference-docs/isosts-v1/doc/n-sc20.html +98 -0
- data/reference-docs/isosts-v1/doc/n-sif0.html +203 -0
- data/reference-docs/isosts-v1/doc/n-sjn0.html +52 -0
- data/reference-docs/isosts-v1/doc/n-snd0.html +48 -0
- data/reference-docs/isosts-v1/doc/n-sq20.html +259 -0
- data/reference-docs/isosts-v1/doc/n-sq80.html +166 -0
- data/reference-docs/isosts-v1/doc/n-swt0.html +115 -0
- data/reference-docs/isosts-v1/doc/n-syx0.html +122 -0
- data/reference-docs/isosts-v1/doc/n-t220.html +103 -0
- data/reference-docs/isosts-v1/doc/n-t250.html +116 -0
- data/reference-docs/isosts-v1/doc/n-t2x0.html +328 -0
- data/reference-docs/isosts-v1/doc/n-t3u0.html +78 -0
- data/reference-docs/isosts-v1/doc/n-t4w0.html +117 -0
- data/reference-docs/isosts-v1/doc/n-t5s0.html +289 -0
- data/reference-docs/isosts-v1/doc/n-tga0.html +67 -0
- data/reference-docs/isosts-v1/doc/n-thf0.html +65 -0
- data/reference-docs/isosts-v1/doc/n-tqs0.html +225 -0
- data/reference-docs/isosts-v1/doc/n-tr60.html +120 -0
- data/reference-docs/isosts-v1/doc/n-tre0.html +57 -0
- data/reference-docs/isosts-v1/doc/n-tua0.html +261 -0
- data/reference-docs/isosts-v1/doc/n-tve0.html +44 -0
- data/reference-docs/isosts-v1/doc/n-twc0.html +247 -0
- data/reference-docs/isosts-v1/doc/n-tx30.html +91 -0
- data/reference-docs/isosts-v1/doc/n-ty60.html +48 -0
- data/reference-docs/isosts-v1/doc/n-uba0.html +85 -0
- data/reference-docs/isosts-v1/doc/n-ube0.html +51 -0
- data/reference-docs/isosts-v1/doc/n-ue40.html +103 -0
- data/reference-docs/isosts-v1/doc/n-ufa0.html +106 -0
- data/reference-docs/isosts-v1/doc/n-ui40.html +231 -0
- data/reference-docs/isosts-v1/doc/n-uig0.html +60 -0
- data/reference-docs/isosts-v1/doc/n-umg0.html +63 -0
- data/reference-docs/isosts-v1/doc/n-unn0.html +57 -0
- data/reference-docs/isosts-v1/doc/n-upa0.html +104 -0
- data/reference-docs/isosts-v1/doc/n-upd0.html +63 -0
- data/reference-docs/isosts-v1/doc/n-uyg0.html +72 -0
- data/reference-docs/isosts-v1/doc/n-v530.html +91 -0
- data/reference-docs/isosts-v1/doc/n-v550.html +71 -0
- data/reference-docs/isosts-v1/doc/n-vad0.html +56 -0
- data/reference-docs/isosts-v1/doc/n-vff0.html +62 -0
- data/reference-docs/isosts-v1/doc/n-vge0.html +95 -0
- data/reference-docs/isosts-v1/doc/n-vjx0.html +74 -0
- data/reference-docs/isosts-v1/doc/n-vs30.html +106 -0
- data/reference-docs/isosts-v1/doc/n-vta0.html +168 -0
- data/reference-docs/isosts-v1/doc/n-vzn0.html +208 -0
- data/reference-docs/isosts-v1/doc/n-w5c0.html +209 -0
- data/reference-docs/isosts-v1/doc/n-w6u0.html +49 -0
- data/reference-docs/isosts-v1/doc/n-wau0.html +80 -0
- data/reference-docs/isosts-v1/doc/n-wc80.html +266 -0
- data/reference-docs/isosts-v1/doc/n-wct0.html +208 -0
- data/reference-docs/isosts-v1/doc/n-wfn0.html +133 -0
- data/reference-docs/isosts-v1/doc/n-wgc0.html +183 -0
- data/reference-docs/isosts-v1/doc/n-whe0.html +58 -0
- data/reference-docs/isosts-v1/doc/n-wqd0.html +90 -0
- data/reference-docs/isosts-v1/doc/n-wvg0.html +106 -0
- data/reference-docs/isosts-v1/doc/n-wvs0.html +244 -0
- data/reference-docs/isosts-v1/doc/n-wxd0.html +55 -0
- data/reference-docs/isosts-v1/doc/n-wz50.html +131 -0
- data/reference-docs/isosts-v1/doc/n-wz80.html +96 -0
- data/reference-docs/isosts-v1/doc/n-x3f0.html +99 -0
- data/reference-docs/isosts-v1/doc/n-x4t0.html +105 -0
- data/reference-docs/isosts-v1/doc/n-x4u0.html +102 -0
- data/reference-docs/isosts-v1/doc/n-x5u0.html +92 -0
- data/reference-docs/isosts-v1/doc/n-x7f0.html +91 -0
- data/reference-docs/isosts-v1/doc/n-xa80.html +188 -0
- data/reference-docs/isosts-v1/doc/n-xp30.html +122 -0
- data/reference-docs/isosts-v1/doc/n-xq60.html +66 -0
- data/reference-docs/isosts-v1/doc/n-xqg0.html +49 -0
- data/reference-docs/isosts-v1/doc/n-ybu0.html +164 -0
- data/reference-docs/isosts-v1/doc/n-yea0.html +45 -0
- data/reference-docs/isosts-v1/doc/n-ym70.html +213 -0
- data/reference-docs/isosts-v1/doc/n-yp70.html +249 -0
- data/reference-docs/isosts-v1/doc/n-yt20.html +220 -0
- data/reference-docs/isosts-v1/doc/n-z5n0.html +109 -0
- data/reference-docs/isosts-v1/doc/n-z7t0.html +86 -0
- data/reference-docs/isosts-v1/doc/n-zbe0.html +75 -0
- data/reference-docs/isosts-v1/doc/n-zga0.html +43 -0
- data/reference-docs/isosts-v1/doc/n-zkd0.html +78 -0
- data/reference-docs/isosts-v1/doc/n-zpx0.html +104 -0
- data/reference-docs/isosts-v1/doc/n-zsg0.html +149 -0
- data/reference-docs/isosts-v1/doc/t-2000.html +403 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX.indexListcomp.html +941 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX.xsd +571 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_Glossary.html +334 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_impIDLangTgtDtypScrpt-atts.html +732 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_bpt-attlist.html +533 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_crossReference-attlist.html +482 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_definition-attlist.html +541 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_entailedTerm-attlist.html +626 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_ept-attlist.html +469 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_example-attlist.html +468 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_externalCrossReference-attlist.html +472 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_geographicalUsage-attlist.html +474 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_grammaticalGender-attlist.html +584 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_grammaticalNumber-attlist.html +566 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_langSet-attlist.html +577 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_normativeAuthorization-attlist.html +626 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_note-attlist.html +571 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_partOfSpeech-attlist.html +600 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_ph-attlist.html +469 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_pronunciation-attlist.html +339 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_see-attlist.html +478 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_source-attlist.html +485 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_subjectField-attlist.html +480 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_term-attlist.html +555 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_termEntry-attlist.html +492 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_termType-attlist.html +622 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_tig-attlist.html +475 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_usageNote-attlist.html +469 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xGraphic-attlist.html +446 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xMathML-attlist.html +441 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xSource-attlist.html +441 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_xref-atts.html +546 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_id.html +450 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_script.html +448 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_target.html +393 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_value.html +431 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_xtarget.html +400 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_ChangeHistory.html +348 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Complex_Type_tbx_basicText-model.html +429 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Complex_Type_tbx_noteText-model.html +400 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Complex_Type_tbx_simpleText-model.html +464 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_DCT-format.html +353 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_bpt.html +425 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_crossReference.html +533 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_definition.html +536 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_encapsulating-elements.html +418 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_entailedTerm.html +487 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_ept.html +412 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_example.html +521 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_externalCrossReference.html +486 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_geographicalUsage.html +488 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_grammaticalGender.html +498 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_grammaticalNumber.html +499 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_highlight-elements.html +564 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_langSet.html +562 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_normativeAuthorization.html +521 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_note.html +511 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_partOfSpeech.html +489 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_ph.html +412 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_pronunciation.html +508 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_see.html +498 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_source.html +512 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_subjectField.html +482 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_term.html +501 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_termEntry.html +464 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_termType.html +517 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_tig.html +511 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_usageNote.html +514 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_xGraphic.html +462 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_xMathML.html +462 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_xSource.html +461 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Examples.html +17 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Guidelines.html +391 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Introduction.html +391 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Main_schema_ISO-TBX_xsd.html +285 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_contentTypes.html +358 -0
- data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_entryLevels.html +376 -0
- data/reference-docs/isosts-v1/doc/tbx/docHtml.css +590 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a210.14.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a211.251.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a211.27.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a212.4133.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a212.4134.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.3121.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.3122.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.313.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.314.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.496.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.497.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.498.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a214.93.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a215.31.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a215.37.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a216.311.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a216.319.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a217.374.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a218.37.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a22.31.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a22.32.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a221.322.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a222.1112.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a222.3121.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a222.45.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a223.251.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a225.911.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a227.114.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a227.2263.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a228.14.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a229.131.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a23.311.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a24.313.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a25.27.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a25.44418.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a26.020513.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a26.2150.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a27.234.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a28.2138.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a29.13.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10360-1.a216.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/iso_std_iso_3951-2_ed-1_en_term_3.10.PNG +0 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/snippets/snippets.xml +46 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/tbx-examples.html +1704 -0
- data/reference-docs/isosts-v1/doc/tbx/examples/tbx-examples.xml +1704 -0
- data/reference-docs/isosts-v1/doc/tbx/img/HierarchyArrow12.jpg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/HierarchyCycle12.jpg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_impIDLangScrpt-atts.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_impIDLangTgtDtypScrpt-atts.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx-xref-atts.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_bpt-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_crossReference-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_definition-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_entailedTerm-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_ept-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_example-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_externalCrossReference-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_geographicalUsage-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_grammaticalGender-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_grammaticalNumber-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_langSet-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_normativeAuthorization-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_note-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_partOfSpeech-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_ph-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_pronunciation-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_see-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_source-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_subjectField-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_term-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_termEntry-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_termType-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_tig-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_usageNote-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xGraphic-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xMathML-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xSource-attlist.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_xref-atts.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Complex_Type_tbx_basicText-model.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Complex_Type_tbx_noteText-model.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Complex_Type_tbx_simpleText-model.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_bpt.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_crossReference.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_definition.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_encapsulating-elements.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_entailedTerm.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_ept.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_example.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_externalCrossReference.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_geographicalUsage.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_grammaticalGender.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_grammaticalNumber.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_highlight-elements.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_langSet.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_normativeAuthorization.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_note.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_partOfSpeech.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_ph.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_pronunciation.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_see.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_source.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_subjectField.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_term.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_termEntry.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_termType.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_tig.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_usageNote.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_xGraphic.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_xMathML.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_xSource.jpeg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/Import12.jpg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/Include12.jpg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/Redefine12.jpg +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/btM.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/btP.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/cBL.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/cBR.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/cTL.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/cTR.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/hierarchy_arrow.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/lB.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/lL.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/lR.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/lT.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/logo_iso copy.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/img/logo_iso.gif +0 -0
- data/reference-docs/isosts-v1/doc/tbx/index.html +14 -0
- data/reference-docs/isosts-v1/doc/tbx/schHierarchy.html +284 -0
- data/reference-docs/isosts-v1/doc/tbx/xml.xsd +5 -0
- data/reference-docs/isosts-v1/doc/tbx/xml_xsd_Attribute_xml_lang.html +449 -0
- data/reference-docs/isosts-v1/doc/tbx/xml_xsd_Imported_schema_xml_xsd.html +303 -0
- data/reference-docs/isosts-v1/htmltable.dtd +334 -0
- data/reference-docs/isosts-v1/iso8879/isobox.ent +61 -0
- data/reference-docs/isosts-v1/iso8879/isocyr1.ent +88 -0
- data/reference-docs/isosts-v1/iso8879/isocyr2.ent +47 -0
- data/reference-docs/isosts-v1/iso8879/isodia.ent +35 -0
- data/reference-docs/isosts-v1/iso8879/isolat1.ent +83 -0
- data/reference-docs/isosts-v1/iso8879/isolat2.ent +142 -0
- data/reference-docs/isosts-v1/iso8879/isonum.ent +97 -0
- data/reference-docs/isosts-v1/iso8879/isopub.ent +105 -0
- data/reference-docs/isosts-v1/iso9573-13/isoamsa.ent +167 -0
- data/reference-docs/isosts-v1/iso9573-13/isoamsb.ent +143 -0
- data/reference-docs/isosts-v1/iso9573-13/isoamsc.ent +43 -0
- data/reference-docs/isosts-v1/iso9573-13/isoamsn.ent +114 -0
- data/reference-docs/isosts-v1/iso9573-13/isoamso.ent +73 -0
- data/reference-docs/isosts-v1/iso9573-13/isoamsr.ent +204 -0
- data/reference-docs/isosts-v1/iso9573-13/isogrk3.ent +64 -0
- data/reference-docs/isosts-v1/iso9573-13/isomfrk.ent +75 -0
- data/reference-docs/isosts-v1/iso9573-13/isomopf.ent +49 -0
- data/reference-docs/isosts-v1/iso9573-13/isomscr.ent +75 -0
- data/reference-docs/isosts-v1/iso9573-13/isotech.ent +182 -0
- data/reference-docs/isosts-v1/jats-publishing-dtd-0.4.zip +0 -0
- data/reference-docs/isosts-v1/mathml/mmlalias.ent +564 -0
- data/reference-docs/isosts-v1/mathml/mmlextra.ent +122 -0
- data/reference-docs/isosts-v1/mathml2-qname-1.mod +286 -0
- data/reference-docs/isosts-v1/mathml2.dtd +2206 -0
- data/reference-docs/isosts-v1/oasis-exchange.ent +384 -0
- data/reference-docs/isosts-v1/rng/ISOSTS-classes.ent.rng +335 -0
- data/reference-docs/isosts-v1/rng/ISOSTS-iso-metadata.ent.rng +1125 -0
- data/reference-docs/isosts-v1/rng/ISOSTS-mixes.ent.rng +236 -0
- data/reference-docs/isosts-v1/rng/ISOSTS-models.ent.rng +1392 -0
- data/reference-docs/isosts-v1/rng/ISOSTS-nat-metadata.ent.rng +198 -0
- data/reference-docs/isosts-v1/rng/ISOSTS-reg-metadata.ent.rng +208 -0
- data/reference-docs/isosts-v1/rng/ISOSTS-tbx-namespace.ent.rng +686 -0
- data/reference-docs/isosts-v1/rng/ISOSTS-tbx-setup.ent.rng +130 -0
- data/reference-docs/isosts-v1/rng/ISOSTS.rng +368 -0
- data/reference-docs/isosts-v1/rng/JATS-XHTMLtablesetup0.ent.rng +301 -0
- data/reference-docs/isosts-v1/rng/JATS-articlemeta0.ent.rng +2284 -0
- data/reference-docs/isosts-v1/rng/JATS-backmatter0.ent.rng +347 -0
- data/reference-docs/isosts-v1/rng/JATS-chars0.ent.rng +498 -0
- data/reference-docs/isosts-v1/rng/JATS-common0.ent.rng +4267 -0
- data/reference-docs/isosts-v1/rng/JATS-default-classes0.ent.rng +1045 -0
- data/reference-docs/isosts-v1/rng/JATS-default-mixes0.ent.rng +299 -0
- data/reference-docs/isosts-v1/rng/JATS-display0.ent.rng +847 -0
- data/reference-docs/isosts-v1/rng/JATS-format0.ent.rng +702 -0
- data/reference-docs/isosts-v1/rng/JATS-funding0.ent.rng +578 -0
- data/reference-docs/isosts-v1/rng/JATS-journalpubcustom-classes0.ent.rng +196 -0
- data/reference-docs/isosts-v1/rng/JATS-journalpubcustom-mixes0.ent.rng +140 -0
- data/reference-docs/isosts-v1/rng/JATS-journalpubcustom-models0.ent.rng +852 -0
- data/reference-docs/isosts-v1/rng/JATS-link0.ent.rng +426 -0
- data/reference-docs/isosts-v1/rng/JATS-list0.ent.rng +459 -0
- data/reference-docs/isosts-v1/rng/JATS-math0.ent.rng +344 -0
- data/reference-docs/isosts-v1/rng/JATS-mathmlsetup0.ent.rng +231 -0
- data/reference-docs/isosts-v1/rng/JATS-nlmcitation0.ent.rng +269 -0
- data/reference-docs/isosts-v1/rng/JATS-para0.ent.rng +436 -0
- data/reference-docs/isosts-v1/rng/JATS-phrase0.ent.rng +505 -0
- data/reference-docs/isosts-v1/rng/JATS-references0.ent.rng +1137 -0
- data/reference-docs/isosts-v1/rng/JATS-related-object0.ent.rng +138 -0
- data/reference-docs/isosts-v1/rng/JATS-section0.ent.rng +231 -0
- data/reference-docs/isosts-v1/rng/mathml2-qname-1.mod.rng +63 -0
- data/reference-docs/isosts-v1/rng/mathml2.rng +3320 -0
- data/reference-docs/isosts-v1/rng/xhtml-inlstyle-1.mod.rng +37 -0
- data/reference-docs/isosts-v1/rng/xhtml-table-1.mod.rng +430 -0
- data/reference-docs/isosts-v1/xhtml-inlstyle-1.mod +34 -0
- data/reference-docs/isosts-v1/xhtml-table-1.mod +333 -0
- data/reference-docs/isosts-v1/xmlchars/isogrk1.ent +70 -0
- data/reference-docs/isosts-v1/xmlchars/isogrk2.ent +41 -0
- data/reference-docs/isosts-v1/xmlchars/isogrk4.ent +66 -0
- data/reference-docs/isosts-v1/xsd/ISOSTS.xsd +6773 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/common/common-attribs.xsd +45 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/common/math.xsd +126 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/common/xlink-href.xsd +20 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/arith.xsd +90 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/calculus.xsd +146 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/common-attrib.xsd +30 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/constants.xsd +83 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/constructs.xsd +260 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/elementary-functions.xsd +117 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/functions.xsd +73 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/linear-algebra.xsd +173 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/logic.xsd +53 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/relations.xsd +55 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/semantics.xsd +85 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/sets.xsd +236 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/statistics.xsd +136 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/tokens.xsd +120 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/vector-calculus.xsd +88 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/mathml2.xsd +59 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/action.xsd +44 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/characters.xsd +37 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/common-attribs.xsd +113 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/common-types.xsd +103 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/error.xsd +40 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/layout.xsd +195 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/scripts.xsd +186 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/space.xsd +52 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/style.xsd +69 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/table.xsd +216 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/tokens.xsd +124 -0
- data/reference-docs/isosts-v1/xsd/ncbi-mathml2/readme.txt +17 -0
- data/reference-docs/isosts-v1/xsd/tbx.xsd +790 -0
- data/reference-docs/isosts-v1/xsd/xlink.xsd +39 -0
- data/reference-docs/isosts-v1/xsd/xml.xsd +17 -0
- data/reference-docs/isosts-v1/xsl/cals/flatten_cals.xsl +21 -0
- data/reference-docs/isosts-v1/xsl/cals/isosts2cals.xsl +28 -0
- data/reference-docs/isosts-v1/xsl/cals/lib/css-parser.xsl +119 -0
- data/reference-docs/isosts-v1/xsl/cals/lib/xhtml2cals.xsl +580 -0
- data/reference-docs/isosts-v1/xsl/cals/readme.html +211 -0
- data/reference-docs/isosts-v1/xsl/cals/remove_oasis_ns.xsl +21 -0
- data/reference-docs/isosts-v1/xsl/cals/test/css-parser-test.html +4655 -0
- data/reference-docs/isosts-v1/xsl/cals/test/css-parser-test.xsl +983 -0
- data/reference-docs/isosts-v1/xsl/cals/test/css2colrowsep-test.html +161 -0
- data/reference-docs/isosts-v1/xsl/cals/test/css2colrowsep-test.xsl +212 -0
- data/reference-docs/isosts-v1/xsl/cals/test/isosts_tables.cals.xml +214 -0
- data/reference-docs/isosts-v1/xsl/cals/test/isosts_tables.html +28 -0
- data/reference-docs/isosts-v1/xsl/cals/test/isosts_tables.xml +544 -0
- data/reference-docs/isosts-v1/xsl/cals/test/styles.txt +4010 -0
- data/reference-docs/isosts-v1/xsl/cals/tm9901.dtd +313 -0
- data/sts.gemspec +1 -1
- metadata +1168 -7
|
@@ -0,0 +1,1704 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<standard xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:mml="http://www.w3.org/1998/Math/MathML"
|
|
3
|
+
xmlns:tbx="urn:iso:std:iso:30042:ed-1">
|
|
4
|
+
<!--
|
|
5
|
+
|
|
|
6
|
+
| The purpose of this file is to show TBX markup for a given layout.
|
|
7
|
+
| The examples are mainly taken from ISO 10241-1:2011, Annex A.
|
|
8
|
+
|
|
|
9
|
+
|-->
|
|
10
|
+
<front>
|
|
11
|
+
<iso-meta>
|
|
12
|
+
<title-wrap xml:lang="en">
|
|
13
|
+
<main>TBX markup examples</main>
|
|
14
|
+
<full>TBX markup examples</full>
|
|
15
|
+
</title-wrap>
|
|
16
|
+
<doc-ident>
|
|
17
|
+
<sdo>N/A</sdo>
|
|
18
|
+
<proj-id>N/A</proj-id>
|
|
19
|
+
<language>N/A</language>
|
|
20
|
+
<release-version>N/A</release-version>
|
|
21
|
+
<urn>N/A</urn>
|
|
22
|
+
</doc-ident>
|
|
23
|
+
<std-ident>
|
|
24
|
+
<originator>N/A</originator>
|
|
25
|
+
<doc-type>N/A</doc-type>
|
|
26
|
+
<doc-number>N/A</doc-number>
|
|
27
|
+
<edition>N/A</edition>
|
|
28
|
+
<version>N/A</version>
|
|
29
|
+
</std-ident>
|
|
30
|
+
<content-language>en</content-language>
|
|
31
|
+
<std-ref type="dated">TBX examples</std-ref>
|
|
32
|
+
<doc-ref>TBX examples</doc-ref>
|
|
33
|
+
<pub-date>N/A</pub-date>
|
|
34
|
+
<release-date>N/A</release-date>
|
|
35
|
+
<comm-ref>N/A</comm-ref>
|
|
36
|
+
<secretariat>N/A</secretariat>
|
|
37
|
+
<page-count count="0"/>
|
|
38
|
+
</iso-meta>
|
|
39
|
+
</front>
|
|
40
|
+
<body>
|
|
41
|
+
<sec sec-type="terms">
|
|
42
|
+
<label>3</label>
|
|
43
|
+
<title>Terms and definitions</title>
|
|
44
|
+
<p>For the purposes of this document, the following terms and definitions apply.</p>
|
|
45
|
+
<term-sec>
|
|
46
|
+
<tbx:termEntry id="ISO10241-1.a22.31">
|
|
47
|
+
<tbx:langSet xml:lang="en">
|
|
48
|
+
<tbx:note>...</tbx:note>
|
|
49
|
+
<tbx:definition>resultant of upward forces, exerted by the water on a
|
|
50
|
+
submerged or floating body, equal to the weight of the water displaced
|
|
51
|
+
by this body</tbx:definition>
|
|
52
|
+
<tbx:tig>
|
|
53
|
+
<tbx:term id="a22.31-1">buoyancy</tbx:term>
|
|
54
|
+
<tbx:partOfSpeech value="noun"/>
|
|
55
|
+
<tbx:usageNote>test for usage note</tbx:usageNote>
|
|
56
|
+
</tbx:tig>
|
|
57
|
+
</tbx:langSet>
|
|
58
|
+
</tbx:termEntry>
|
|
59
|
+
</term-sec>
|
|
60
|
+
<term-sec>
|
|
61
|
+
<tbx:termEntry id="ISO10241-1.a22.32">
|
|
62
|
+
<tbx:langSet xml:lang="en">
|
|
63
|
+
<tbx:definition>reference level for soundings in navigation
|
|
64
|
+
charts</tbx:definition>
|
|
65
|
+
<tbx:tig>
|
|
66
|
+
<tbx:term id="a22.32-1">chart datum</tbx:term>
|
|
67
|
+
<tbx:partOfSpeech value="noun"/>
|
|
68
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
69
|
+
<tbx:termType value="fullForm"/>
|
|
70
|
+
</tbx:tig>
|
|
71
|
+
<tbx:tig>
|
|
72
|
+
<tbx:term id="a22.32-2">CD</tbx:term>
|
|
73
|
+
<tbx:partOfSpeech value="noun"/>
|
|
74
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
75
|
+
<tbx:termType value="acronym"/>
|
|
76
|
+
</tbx:tig>
|
|
77
|
+
</tbx:langSet>
|
|
78
|
+
</tbx:termEntry>
|
|
79
|
+
</term-sec>
|
|
80
|
+
<term-sec>
|
|
81
|
+
<tbx:termEntry id="ISO10241-1.a23.311">
|
|
82
|
+
<tbx:langSet xml:lang="en">
|
|
83
|
+
<tbx:definition>numerical reference that indicates whether the flow will be
|
|
84
|
+
laminar or turbulent for a given set of conditions</tbx:definition>
|
|
85
|
+
<tbx:tig>
|
|
86
|
+
<tbx:term id="a23.311-1">critical Reynolds number</tbx:term>
|
|
87
|
+
<tbx:partOfSpeech value="noun"/>
|
|
88
|
+
</tbx:tig>
|
|
89
|
+
</tbx:langSet>
|
|
90
|
+
<tbx:langSet xml:lang="fr">
|
|
91
|
+
<tbx:definition>référence numérique indiquant si un écoulement est soit
|
|
92
|
+
laminaire soit turbulent pour un ensemble de conditions
|
|
93
|
+
données</tbx:definition>
|
|
94
|
+
<tbx:tig>
|
|
95
|
+
<tbx:term id="a23.311-2">nombre de Reynolds critique</tbx:term>
|
|
96
|
+
<tbx:partOfSpeech value="noun"/>
|
|
97
|
+
<tbx:grammaticalGender value="masculine"/>
|
|
98
|
+
</tbx:tig>
|
|
99
|
+
</tbx:langSet>
|
|
100
|
+
<tbx:langSet xml:lang="de">
|
|
101
|
+
<tbx:definition>numerische Bezugsgröße, die anzeigt, ob die Strömung unter
|
|
102
|
+
definierten Bedingungen laminar oder turbulent ist</tbx:definition>
|
|
103
|
+
<tbx:tig>
|
|
104
|
+
<tbx:term id="a23.311-3">kritische Reynoldszahl</tbx:term>
|
|
105
|
+
<tbx:partOfSpeech value="noun"/>
|
|
106
|
+
<tbx:grammaticalGender value="feminine"/>
|
|
107
|
+
</tbx:tig>
|
|
108
|
+
</tbx:langSet>
|
|
109
|
+
</tbx:termEntry>
|
|
110
|
+
</term-sec>
|
|
111
|
+
<term-sec>
|
|
112
|
+
<tbx:termEntry id="ISO10241-1.a24.313">
|
|
113
|
+
<tbx:langSet xml:lang="en">
|
|
114
|
+
<tbx:definition>language used in a
|
|
115
|
+
<tbx:entailedTerm>domain (3.1.2)</tbx:entailedTerm> and
|
|
116
|
+
characterized by the use of specific linguistic means of
|
|
117
|
+
expression</tbx:definition>
|
|
118
|
+
<tbx:note>The specific linguistic means of expression always include domain-
|
|
119
|
+
or subject-specific terms and other kinds of designations as well as
|
|
120
|
+
phraseology and also may cover stylistic or syntactic
|
|
121
|
+
features.</tbx:note>
|
|
122
|
+
<tbx:tig>
|
|
123
|
+
<tbx:term id="a24.313-1">special language</tbx:term>
|
|
124
|
+
<tbx:partOfSpeech value="noun"/>
|
|
125
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
126
|
+
</tbx:tig>
|
|
127
|
+
<tbx:tig>
|
|
128
|
+
<tbx:term id="a24.313-2">language for special purposes</tbx:term>
|
|
129
|
+
<tbx:partOfSpeech value="noun"/>
|
|
130
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
131
|
+
</tbx:tig>
|
|
132
|
+
<tbx:tig>
|
|
133
|
+
<tbx:term id="a24.313-3">LSP</tbx:term>
|
|
134
|
+
<tbx:partOfSpeech value="noun"/>
|
|
135
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
136
|
+
<tbx:termType value="acronym"/>
|
|
137
|
+
</tbx:tig>
|
|
138
|
+
</tbx:langSet>
|
|
139
|
+
</tbx:termEntry>
|
|
140
|
+
</term-sec>
|
|
141
|
+
<term-sec>
|
|
142
|
+
<tbx:termEntry id="ISO10241-1.a25.27">
|
|
143
|
+
<tbx:langSet xml:lang="en">
|
|
144
|
+
<tbx:definition>substance capable of holding materials together by
|
|
145
|
+
adhesion</tbx:definition>
|
|
146
|
+
<tbx:note>The term “glue” was used originally for an adhesive prepared from
|
|
147
|
+
a hard gelatin. Through general use, the term became synonymous with the
|
|
148
|
+
term “adhesive” in referring to adhesives prepared from synthetic
|
|
149
|
+
resins. The term “adhesive” is now the preferred general
|
|
150
|
+
term.</tbx:note>
|
|
151
|
+
<tbx:tig>
|
|
152
|
+
<tbx:term id="a25.27-1">adhesive</tbx:term>
|
|
153
|
+
<tbx:partOfSpeech value="noun"/>
|
|
154
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
155
|
+
</tbx:tig>
|
|
156
|
+
<tbx:tig>
|
|
157
|
+
<tbx:term id="a25.27-2">glue</tbx:term>
|
|
158
|
+
<tbx:partOfSpeech value="noun"/>
|
|
159
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
160
|
+
</tbx:tig>
|
|
161
|
+
</tbx:langSet>
|
|
162
|
+
</tbx:termEntry>
|
|
163
|
+
</term-sec>
|
|
164
|
+
<term-sec>
|
|
165
|
+
<tbx:termEntry id="ISO10241-1.a25.44418">
|
|
166
|
+
<tbx:langSet xml:lang="en">
|
|
167
|
+
<tbx:definition>means of stopping or slowing the wheelchair</tbx:definition>
|
|
168
|
+
<tbx:note>The running brake may include one or more of the following types
|
|
169
|
+
of brake: dynamic brake, regenerative brake and friction brake (either
|
|
170
|
+
fail-safe or manually applied).</tbx:note>
|
|
171
|
+
<tbx:tig>
|
|
172
|
+
<tbx:term id="a25.4418-1">running brake</tbx:term>
|
|
173
|
+
<tbx:partOfSpeech value="noun"/>
|
|
174
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
175
|
+
</tbx:tig>
|
|
176
|
+
<tbx:tig>
|
|
177
|
+
<tbx:term id="a25.4418-2">dynamic brake</tbx:term>
|
|
178
|
+
<tbx:partOfSpeech value="noun"/>
|
|
179
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
180
|
+
</tbx:tig>
|
|
181
|
+
<tbx:tig>
|
|
182
|
+
<tbx:term id="a25.4418-3">friction brake</tbx:term>
|
|
183
|
+
<tbx:partOfSpeech value="noun"/>
|
|
184
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
185
|
+
</tbx:tig>
|
|
186
|
+
<tbx:tig>
|
|
187
|
+
<tbx:term id="a25.4418-4">regenerative brake</tbx:term>
|
|
188
|
+
<tbx:partOfSpeech value="noun"/>
|
|
189
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
190
|
+
</tbx:tig>
|
|
191
|
+
<tbx:tig>
|
|
192
|
+
<tbx:term id="a25.4418-5">service brake</tbx:term>
|
|
193
|
+
<tbx:partOfSpeech value="noun"/>
|
|
194
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
195
|
+
</tbx:tig>
|
|
196
|
+
</tbx:langSet>
|
|
197
|
+
</tbx:termEntry>
|
|
198
|
+
</term-sec>
|
|
199
|
+
<term-sec>
|
|
200
|
+
<tbx:termEntry id="ISO10241-1.a26.020513">
|
|
201
|
+
<tbx:langSet xml:lang="en">
|
|
202
|
+
<tbx:definition>
|
|
203
|
+
<!-- target attribute is allowed on hi to point to the internal location of the entailedTerm, and xtarget is allowed to point to an entry in another document -->
|
|
204
|
+
<tbx:entailedTerm>Boolean operation (02.05.01)</tbx:entailedTerm> whose
|
|
205
|
+
result has the Boolean value 0 if and only if each
|
|
206
|
+
<tbx:entailedTerm>operand (02.10.02)</tbx:entailedTerm> has the
|
|
207
|
+
Boolean value 0</tbx:definition>
|
|
208
|
+
<!-- target attribute is allowed on ref below to point to the internal location of the table.
|
|
209
|
+
The following example also tests the script attribute.-->
|
|
210
|
+
<tbx:see script="xyz">Table of Boolean operations</tbx:see>
|
|
211
|
+
<tbx:tig>
|
|
212
|
+
<tbx:term id="a26.020513-1">disjunction</tbx:term>
|
|
213
|
+
<tbx:partOfSpeech value="noun"/>
|
|
214
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
215
|
+
</tbx:tig>
|
|
216
|
+
<tbx:tig>
|
|
217
|
+
<tbx:term id="a26.020513-2">OR operation</tbx:term>
|
|
218
|
+
<tbx:partOfSpeech value="noun"/>
|
|
219
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
220
|
+
</tbx:tig>
|
|
221
|
+
<tbx:tig>
|
|
222
|
+
<tbx:term id="a26.020513-3">INCLUSIVE-OR operation</tbx:term>
|
|
223
|
+
<tbx:partOfSpeech value="noun"/>
|
|
224
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
225
|
+
</tbx:tig>
|
|
226
|
+
<tbx:tig>
|
|
227
|
+
<tbx:term id="a26.020513-4">logical add</tbx:term>
|
|
228
|
+
<tbx:partOfSpeech value="noun"/>
|
|
229
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
230
|
+
</tbx:tig>
|
|
231
|
+
<tbx:tig>
|
|
232
|
+
<tbx:term id="a26.020513-5">logical sum</tbx:term>
|
|
233
|
+
<tbx:partOfSpeech value="noun"/>
|
|
234
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
235
|
+
</tbx:tig>
|
|
236
|
+
<tbx:tig>
|
|
237
|
+
<tbx:term id="a26.020513-6">EITHER-OR operation</tbx:term>
|
|
238
|
+
<tbx:partOfSpeech value="noun"/>
|
|
239
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
240
|
+
</tbx:tig>
|
|
241
|
+
</tbx:langSet>
|
|
242
|
+
<tbx:langSet xml:lang="fr">
|
|
243
|
+
<tbx:definition><tbx:entailedTerm>opération booléenne (02.05.01)</tbx:entailedTerm> dont Ie résultat a Ia valeur booléenne 0 si et seulement si
|
|
244
|
+
tous les <tbx:entailedTerm>opérandes (02.10.02)</tbx:entailedTerm> ont
|
|
245
|
+
la valeur booléenne 0</tbx:definition>
|
|
246
|
+
<!-- target attribute is allowed on ref to point to the internal location of the table -->
|
|
247
|
+
<tbx:see>Tableau des opérations booléennes</tbx:see>
|
|
248
|
+
<tbx:note>«OU inclusif» a le sens de la conjonction latine «vel».</tbx:note>
|
|
249
|
+
<tbx:tig>
|
|
250
|
+
<tbx:term id="a26.020513-7">union</tbx:term>
|
|
251
|
+
<tbx:partOfSpeech value="noun"/>
|
|
252
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
253
|
+
</tbx:tig>
|
|
254
|
+
<tbx:tig>
|
|
255
|
+
<tbx:term id="a26.020513-8">réunion</tbx:term>
|
|
256
|
+
<tbx:partOfSpeech value="noun"/>
|
|
257
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
258
|
+
</tbx:tig>
|
|
259
|
+
<tbx:tig>
|
|
260
|
+
<tbx:term id="a26.020513-9">opération OU</tbx:term>
|
|
261
|
+
<tbx:partOfSpeech value="noun"/>
|
|
262
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
263
|
+
</tbx:tig>
|
|
264
|
+
<tbx:tig>
|
|
265
|
+
<tbx:term id="a26.020513-10">opértion OU inclusif</tbx:term>
|
|
266
|
+
<tbx:partOfSpeech value="noun"/>
|
|
267
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
268
|
+
</tbx:tig>
|
|
269
|
+
</tbx:langSet>
|
|
270
|
+
</tbx:termEntry>
|
|
271
|
+
</term-sec>
|
|
272
|
+
<term-sec>
|
|
273
|
+
<tbx:termEntry id="ISO10241-1.a26.2150">
|
|
274
|
+
<tbx:langSet xml:lang="en">
|
|
275
|
+
<tbx:definition>primary single component or portion of a
|
|
276
|
+
<tbx:entailedTerm>dental implant</tbx:entailedTerm> which is
|
|
277
|
+
intended to remain within tissues</tbx:definition>
|
|
278
|
+
<tbx:tig>
|
|
279
|
+
<tbx:term id="a26.2150-1">implant body</tbx:term>
|
|
280
|
+
<tbx:partOfSpeech value="noun"/>
|
|
281
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
282
|
+
</tbx:tig>
|
|
283
|
+
<tbx:tig>
|
|
284
|
+
<tbx:term id="a26.2150-2">dental implant body</tbx:term>
|
|
285
|
+
<tbx:partOfSpeech value="noun"/>
|
|
286
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
287
|
+
</tbx:tig>
|
|
288
|
+
<tbx:tig>
|
|
289
|
+
<tbx:term id="a26.2150-3">implant fixture</tbx:term>
|
|
290
|
+
<tbx:partOfSpeech value="noun"/>
|
|
291
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
292
|
+
</tbx:tig>
|
|
293
|
+
<tbx:tig>
|
|
294
|
+
<tbx:term id="a26.2150-4">endosteal implant body</tbx:term>
|
|
295
|
+
<tbx:partOfSpeech value="noun"/>
|
|
296
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
297
|
+
</tbx:tig>
|
|
298
|
+
</tbx:langSet>
|
|
299
|
+
<tbx:langSet xml:lang="fr">
|
|
300
|
+
<tbx:definition>partie ou composant individuel primaire d'un
|
|
301
|
+
<tbx:entailedTerm>implant dentaire</tbx:entailedTerm> conçu pour
|
|
302
|
+
rester dans les tissus</tbx:definition>
|
|
303
|
+
<tbx:tig>
|
|
304
|
+
<tbx:term id="a26.2150-5">corps d'implant</tbx:term>
|
|
305
|
+
<tbx:partOfSpeech value="noun"/>
|
|
306
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
307
|
+
</tbx:tig>
|
|
308
|
+
<tbx:tig>
|
|
309
|
+
<tbx:term id="a26.2150-6">corps d'implant dentaire</tbx:term>
|
|
310
|
+
<tbx:partOfSpeech value="noun"/>
|
|
311
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
312
|
+
</tbx:tig>
|
|
313
|
+
<tbx:tig>
|
|
314
|
+
<tbx:term id="a26.2150-7">fixture</tbx:term>
|
|
315
|
+
<tbx:partOfSpeech value="noun"/>
|
|
316
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
317
|
+
</tbx:tig>
|
|
318
|
+
<tbx:tig>
|
|
319
|
+
<tbx:term id="a26.2150-8">corps d'implant endostéal</tbx:term>
|
|
320
|
+
<tbx:partOfSpeech value="noun"/>
|
|
321
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
322
|
+
</tbx:tig>
|
|
323
|
+
</tbx:langSet>
|
|
324
|
+
</tbx:termEntry>
|
|
325
|
+
</term-sec>
|
|
326
|
+
<term-sec>
|
|
327
|
+
<tbx:termEntry id="ISO10241-1.a27.234">
|
|
328
|
+
<tbx:langSet xml:lang="en">
|
|
329
|
+
<tbx:definition>deck structure supported by vertical and possibly inclined
|
|
330
|
+
piles extending into the sea, frequently in a direction normal to the
|
|
331
|
+
coastline</tbx:definition>
|
|
332
|
+
<tbx:tig>
|
|
333
|
+
<tbx:term id="a27.234-1">jetty</tbx:term>
|
|
334
|
+
<tbx:partOfSpeech value="noun"/>
|
|
335
|
+
<tbx:geographicalUsage>en GB</tbx:geographicalUsage>
|
|
336
|
+
</tbx:tig>
|
|
337
|
+
<tbx:tig>
|
|
338
|
+
<tbx:term id="a27.234-2">pier</tbx:term>
|
|
339
|
+
<tbx:partOfSpeech value="noun"/>
|
|
340
|
+
<tbx:geographicalUsage>en US</tbx:geographicalUsage>
|
|
341
|
+
</tbx:tig>
|
|
342
|
+
</tbx:langSet>
|
|
343
|
+
</tbx:termEntry>
|
|
344
|
+
</term-sec>
|
|
345
|
+
<term-sec>
|
|
346
|
+
<tbx:termEntry id="ISO10241-1.a28.2138">
|
|
347
|
+
<tbx:langSet xml:lang="en">
|
|
348
|
+
<tbx:definition>diaphragm, usually of fixed size</tbx:definition>
|
|
349
|
+
<tbx:note>This term is often used loosely.</tbx:note>
|
|
350
|
+
<tbx:tig>
|
|
351
|
+
<tbx:term id="a28.2138-1">stop</tbx:term>
|
|
352
|
+
<tbx:partOfSpeech value="noun"/>
|
|
353
|
+
</tbx:tig>
|
|
354
|
+
</tbx:langSet>
|
|
355
|
+
<tbx:langSet xml:lang="fr">
|
|
356
|
+
<tbx:definition>diaphragme, généralement de format fixe</tbx:definition>
|
|
357
|
+
<tbx:note>Ce terme est souvent employé dans le sens large.</tbx:note>
|
|
358
|
+
<tbx:tig>
|
|
359
|
+
<tbx:term id="a28.2138-2">arrêt</tbx:term>
|
|
360
|
+
<tbx:partOfSpeech value="noun"/>
|
|
361
|
+
</tbx:tig>
|
|
362
|
+
</tbx:langSet>
|
|
363
|
+
<tbx:langSet xml:lang="ru">
|
|
364
|
+
<tbx:definition>диафрагмa, обычно нерегули¬руемaя</tbx:definition>
|
|
365
|
+
<tbx:note>Этoт термин в русскoм языкe сливается с термином «диафрагма» и
|
|
366
|
+
отдельно не существует.</tbx:note>
|
|
367
|
+
<tbx:tig>
|
|
368
|
+
<!-- this shows a case where there is no term, which will be rendered by 5 middle dots -->
|
|
369
|
+
<tbx:term id="a28.2138-3"/>
|
|
370
|
+
<tbx:partOfSpeech value="noun"/>
|
|
371
|
+
</tbx:tig>
|
|
372
|
+
</tbx:langSet>
|
|
373
|
+
</tbx:termEntry>
|
|
374
|
+
</term-sec>
|
|
375
|
+
<term-sec>
|
|
376
|
+
<tbx:termEntry id="ISO10241-1.a29.13">
|
|
377
|
+
<tbx:langSet xml:lang="en">
|
|
378
|
+
<tbx:definition>group of related <tbx:entailedTerm>subjects of standardization (1.2)</tbx:entailedTerm>
|
|
379
|
+
</tbx:definition>
|
|
380
|
+
<tbx:tig>
|
|
381
|
+
<tbx:term id="a29.13-1">field of standardization</tbx:term>
|
|
382
|
+
<tbx:partOfSpeech value="noun"/>
|
|
383
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
384
|
+
</tbx:tig>
|
|
385
|
+
<tbx:tig>
|
|
386
|
+
<tbx:term id="a29.13-2">domain of standardization</tbx:term>
|
|
387
|
+
<tbx:partOfSpeech value="noun"/>
|
|
388
|
+
<tbx:normativeAuthorization value="deprecatedTerm"/>
|
|
389
|
+
</tbx:tig>
|
|
390
|
+
</tbx:langSet>
|
|
391
|
+
<tbx:langSet xml:lang="fr">
|
|
392
|
+
<tbx:definition>groupe de <tbx:entailedTerm>sujets de
|
|
393
|
+
normalisation (1.2)</tbx:entailedTerm> reliés entre
|
|
394
|
+
eux</tbx:definition>
|
|
395
|
+
<tbx:tig>
|
|
396
|
+
<tbx:term id="a29.13-3">domaine de normalisation</tbx:term>
|
|
397
|
+
<tbx:partOfSpeech value="noun"/>
|
|
398
|
+
</tbx:tig>
|
|
399
|
+
</tbx:langSet>
|
|
400
|
+
<tbx:langSet xml:lang="ru">
|
|
401
|
+
<tbx:definition>совокупность взаимосвязанных <tbx:entailedTerm>объектов
|
|
402
|
+
стандартизации (1.2)</tbx:entailedTerm></tbx:definition>
|
|
403
|
+
<tbx:tig>
|
|
404
|
+
<tbx:term id="a29.13-4">область стандартизации</tbx:term>
|
|
405
|
+
<tbx:partOfSpeech value="noun"/>
|
|
406
|
+
</tbx:tig>
|
|
407
|
+
</tbx:langSet>
|
|
408
|
+
<tbx:langSet xml:lang="de">
|
|
409
|
+
<tbx:tig>
|
|
410
|
+
<tbx:term id="a29.13-5">Normungsgebiet</tbx:term>
|
|
411
|
+
<tbx:partOfSpeech value="noun"/>
|
|
412
|
+
</tbx:tig>
|
|
413
|
+
</tbx:langSet>
|
|
414
|
+
<tbx:langSet xml:lang="es">
|
|
415
|
+
<tbx:tig>
|
|
416
|
+
<tbx:term id="a29.13-6">campo de normalización</tbx:term>
|
|
417
|
+
<tbx:partOfSpeech value="noun"/>
|
|
418
|
+
</tbx:tig>
|
|
419
|
+
</tbx:langSet>
|
|
420
|
+
<tbx:langSet xml:lang="it">
|
|
421
|
+
<tbx:tig>
|
|
422
|
+
<tbx:term id="a29.13-7">campo di normazione</tbx:term>
|
|
423
|
+
<tbx:partOfSpeech value="noun"/>
|
|
424
|
+
</tbx:tig>
|
|
425
|
+
</tbx:langSet>
|
|
426
|
+
<tbx:langSet xml:lang="nl">
|
|
427
|
+
<tbx:tig>
|
|
428
|
+
<tbx:term id="a29.13-8">gebied van normalisatie</tbx:term>
|
|
429
|
+
<tbx:partOfSpeech value="noun"/>
|
|
430
|
+
</tbx:tig>
|
|
431
|
+
</tbx:langSet>
|
|
432
|
+
<tbx:langSet xml:lang="sv">
|
|
433
|
+
<tbx:tig>
|
|
434
|
+
<tbx:term id="a29.13-9">standardiser-ingsområde</tbx:term>
|
|
435
|
+
<tbx:partOfSpeech value="noun"/>
|
|
436
|
+
</tbx:tig>
|
|
437
|
+
</tbx:langSet>
|
|
438
|
+
</tbx:termEntry>
|
|
439
|
+
</term-sec>
|
|
440
|
+
<term-sec>
|
|
441
|
+
<tbx:termEntry id="ISO10241-1.a210.14">
|
|
442
|
+
<tbx:langSet xml:lang="en">
|
|
443
|
+
<tbx:definition>any event or series of events that disrupt ecosystem,
|
|
444
|
+
community, or population structure and alters the physical
|
|
445
|
+
environment</tbx:definition>
|
|
446
|
+
<tbx:source>U.S. ENVIRONMENTAL PROTECTION AGENCY. <italic>Terms of
|
|
447
|
+
Environment: Glossary, Abbreviations and Acronyms</italic> online,
|
|
448
|
+
viewed 2010-07-29].</tbx:source>
|
|
449
|
+
<tbx:xSource xtarget="http://www.epa.gov/OCEPAterms/dterms.html">Available
|
|
450
|
+
from: http://www.epa.gov/OCEPAterms/dterms.html.</tbx:xSource>
|
|
451
|
+
<tbx:tig>
|
|
452
|
+
<tbx:term id="a210.14-1">disturbance</tbx:term>
|
|
453
|
+
<tbx:partOfSpeech value="noun"/>
|
|
454
|
+
<tbx:pronunciation>/dıˈstɜ:bəns/</tbx:pronunciation>
|
|
455
|
+
</tbx:tig>
|
|
456
|
+
</tbx:langSet>
|
|
457
|
+
</tbx:termEntry>
|
|
458
|
+
</term-sec>
|
|
459
|
+
<term-sec>
|
|
460
|
+
<tbx:termEntry id="ISO10241-1.a211.251">
|
|
461
|
+
<tbx:langSet xml:lang="en">
|
|
462
|
+
<tbx:definition>hypothesis to be tested by means of a statistical
|
|
463
|
+
test</tbx:definition>
|
|
464
|
+
<tbx:source>ISO 3534-1:2006, 1.4.1</tbx:source>
|
|
465
|
+
<tbx:note>Modified — The examples and notes given in ISO 3534-1:2006 for
|
|
466
|
+
this entry have been omitted.</tbx:note>
|
|
467
|
+
<tbx:tig>
|
|
468
|
+
<tbx:term id="a211.251-1">null hypothesis</tbx:term>
|
|
469
|
+
<tbx:partOfSpeech value="noun"/>
|
|
470
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
471
|
+
</tbx:tig>
|
|
472
|
+
<tbx:tig>
|
|
473
|
+
<tbx:term id="a211.251-2"><italic>H<sub>O</sub></italic>
|
|
474
|
+
</tbx:term>
|
|
475
|
+
<tbx:partOfSpeech value="noun"/>
|
|
476
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
477
|
+
<tbx:termType value="symbol"/>
|
|
478
|
+
</tbx:tig>
|
|
479
|
+
</tbx:langSet>
|
|
480
|
+
</tbx:termEntry>
|
|
481
|
+
</term-sec>
|
|
482
|
+
<term-sec>
|
|
483
|
+
<tbx:termEntry id="ISO10241-1.a211.27">
|
|
484
|
+
<tbx:langSet xml:lang="en">
|
|
485
|
+
<tbx:definition>length of the path travelled by light in vacuum during a
|
|
486
|
+
time interval of 1/299 792 458 of a second</tbx:definition>
|
|
487
|
+
<tbx:source>BIPM, <italic>Definition of the metre</italic> [online].
|
|
488
|
+
Resolution 1 of the 17th meeting of the CGPM (1983) [viewed 2010-07-29]. </tbx:source>
|
|
489
|
+
<tbx:xSource xtarget="http://www.bipm.org/en/CGPM/db/17/1/">Available from:
|
|
490
|
+
http://www.bipm.org/en/CGPM/db/17/1/.</tbx:xSource>
|
|
491
|
+
<tbx:tig>
|
|
492
|
+
<tbx:term id="a211.27-1">meter</tbx:term>
|
|
493
|
+
<tbx:partOfSpeech value="noun"/>
|
|
494
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
495
|
+
</tbx:tig>
|
|
496
|
+
<tbx:tig>
|
|
497
|
+
<tbx:term id="a211.27-2">m</tbx:term>
|
|
498
|
+
<tbx:partOfSpeech value="noun"/>
|
|
499
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
500
|
+
<tbx:termType value="symbol"/>
|
|
501
|
+
</tbx:tig>
|
|
502
|
+
</tbx:langSet>
|
|
503
|
+
<tbx:langSet xml:lang="fr">
|
|
504
|
+
<tbx:definition>longueur du trajet parcouru dans le vide par la lumière
|
|
505
|
+
pendant une durée de 1/299 792 458 de seconde</tbx:definition>
|
|
506
|
+
<tbx:source>BIPM, <italic>Définition du mètre </italic> [en ligne].
|
|
507
|
+
Résolution 1 de la 17e réunion de la CGPM (1983) [consulté le
|
|
508
|
+
2010-07-29]. </tbx:source>
|
|
509
|
+
<tbx:xSource xtarget="http://www.bipm.org/en/CGPM/db/17/1/">Disponible à
|
|
510
|
+
l'adresse: http://www.bipm.org/fr/CGPM/db/17/1/.</tbx:xSource>
|
|
511
|
+
<tbx:tig>
|
|
512
|
+
<tbx:term id="a211.27-3">mètre</tbx:term>
|
|
513
|
+
<tbx:partOfSpeech value="noun"/>
|
|
514
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
515
|
+
</tbx:tig>
|
|
516
|
+
<tbx:tig>
|
|
517
|
+
<tbx:term id="a211.27-4">m</tbx:term>
|
|
518
|
+
<tbx:partOfSpeech value="noun"/>
|
|
519
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
520
|
+
<tbx:termType value="symbol"/>
|
|
521
|
+
</tbx:tig>
|
|
522
|
+
</tbx:langSet>
|
|
523
|
+
</tbx:termEntry>
|
|
524
|
+
</term-sec>
|
|
525
|
+
<term-sec>
|
|
526
|
+
<tbx:termEntry id="ISO10241-1.a212.4133">
|
|
527
|
+
<tbx:langSet xml:lang="en">
|
|
528
|
+
<tbx:definition>rapid, self-sustaining, sub-sonic propagation of
|
|
529
|
+
<tbx:entailedTerm>combustion (4.46)</tbx:entailedTerm> in a gaseous
|
|
530
|
+
medium, usually with emission of light</tbx:definition>
|
|
531
|
+
<tbx:note>The term “flame” also represents the concept defined in
|
|
532
|
+
4.134.</tbx:note>
|
|
533
|
+
<tbx:tig>
|
|
534
|
+
<tbx:term id="a212.4133-1">flame</tbx:term>
|
|
535
|
+
<tbx:partOfSpeech value="noun"/>
|
|
536
|
+
</tbx:tig>
|
|
537
|
+
</tbx:langSet>
|
|
538
|
+
</tbx:termEntry>
|
|
539
|
+
</term-sec>
|
|
540
|
+
<term-sec>
|
|
541
|
+
<tbx:termEntry id="ISO10241-1.a212.4134">
|
|
542
|
+
<tbx:langSet xml:lang="en">
|
|
543
|
+
<tbx:definition>to produce <tbx:entailedTerm>flame
|
|
544
|
+
(4.133)</tbx:entailedTerm></tbx:definition>
|
|
545
|
+
<tbx:note>The term “flame” also represents the concept defined in
|
|
546
|
+
4.133.</tbx:note>
|
|
547
|
+
<tbx:tig>
|
|
548
|
+
<tbx:term id="a212.4134-1">flame</tbx:term>
|
|
549
|
+
<tbx:partOfSpeech value="verb"/>
|
|
550
|
+
</tbx:tig>
|
|
551
|
+
</tbx:langSet>
|
|
552
|
+
</tbx:termEntry>
|
|
553
|
+
</term-sec>
|
|
554
|
+
<term-sec>
|
|
555
|
+
<tbx:termEntry id="ISO10241-1.a213.496">
|
|
556
|
+
<tbx:langSet xml:lang="en">
|
|
557
|
+
<tbx:subjectField>general</tbx:subjectField>
|
|
558
|
+
<tbx:definition>process of <tbx:entailedTerm>combustion
|
|
559
|
+
(4.46)</tbx:entailedTerm> characterized by the emission of heat and <tbx:entailedTerm>fire
|
|
560
|
+
effluent (4.105</tbx:entailedTerm>) and usually accompanied by
|
|
561
|
+
<tbx:entailedTerm>smoke (4.293)</tbx:entailedTerm>,
|
|
562
|
+
<tbx:entailedTerm>flame (4.133)</tbx:entailedTerm>,
|
|
563
|
+
<tbx:entailedTerm>glowing (4.168)</tbx:entailedTerm> or a
|
|
564
|
+
combination thereof</tbx:definition>
|
|
565
|
+
<tbx:note>In the English language the term “fire” is used to designate three
|
|
566
|
+
concepts, two of which relate to specific types of self-supporting
|
|
567
|
+
combustion with different meanings, and two of them are designated using
|
|
568
|
+
two different terms in both French and German.</tbx:note>
|
|
569
|
+
<tbx:tig>
|
|
570
|
+
<tbx:term id="a213.496-1">fire</tbx:term>
|
|
571
|
+
<tbx:partOfSpeech value="noun"/>
|
|
572
|
+
</tbx:tig>
|
|
573
|
+
</tbx:langSet>
|
|
574
|
+
</tbx:termEntry>
|
|
575
|
+
</term-sec>
|
|
576
|
+
<term-sec>
|
|
577
|
+
<tbx:termEntry id="ISO10241-1.a213.497">
|
|
578
|
+
<tbx:langSet xml:lang="en">
|
|
579
|
+
<tbx:subjectField>controlled</tbx:subjectField>
|
|
580
|
+
<tbx:definition>self-supporting
|
|
581
|
+
<tbx:entailedTerm>combustion (4.46)</tbx:entailedTerm> that has been
|
|
582
|
+
deliberately arranged to provide useful effects and is limited in its
|
|
583
|
+
extent in time and space</tbx:definition>
|
|
584
|
+
<tbx:tig>
|
|
585
|
+
<tbx:term id="a213.497-1">fire</tbx:term>
|
|
586
|
+
<tbx:partOfSpeech value="noun"/>
|
|
587
|
+
</tbx:tig>
|
|
588
|
+
</tbx:langSet>
|
|
589
|
+
</tbx:termEntry>
|
|
590
|
+
</term-sec>
|
|
591
|
+
<term-sec>
|
|
592
|
+
<tbx:termEntry id="ISO10241-1.a213.498">
|
|
593
|
+
<tbx:langSet xml:lang="en">
|
|
594
|
+
<tbx:subjectField>uncontrolled</tbx:subjectField>
|
|
595
|
+
<tbx:definition>self-supporting
|
|
596
|
+
<tbx:entailedTerm>combustion (4.46)</tbx:entailedTerm> that has not
|
|
597
|
+
been deliberately arranged to provide useful effects and is not limited
|
|
598
|
+
in its extent in time and space
|
|
599
|
+
<!--the following MathML is irrelevant and has been inserted merely as a proof of concept-->.
|
|
600
|
+
<mml:math display="block">
|
|
601
|
+
<mml:semantics>
|
|
602
|
+
<mml:mrow>
|
|
603
|
+
<mml:mo>[</mml:mo>
|
|
604
|
+
<mml:mi>η</mml:mi>
|
|
605
|
+
<mml:mo>]</mml:mo>
|
|
606
|
+
</mml:mrow>
|
|
607
|
+
<mml:mo>=</mml:mo>
|
|
608
|
+
<mml:munder>
|
|
609
|
+
<mml:mrow>
|
|
610
|
+
<mml:mtext>lim</mml:mtext>
|
|
611
|
+
</mml:mrow>
|
|
612
|
+
<mml:mrow>
|
|
613
|
+
<mml:mi>c</mml:mi>
|
|
614
|
+
<mml:mo>→</mml:mo>
|
|
615
|
+
<mml:mtext>0</mml:mtext>
|
|
616
|
+
</mml:mrow>
|
|
617
|
+
</mml:munder>
|
|
618
|
+
<mml:mtext> </mml:mtext>
|
|
619
|
+
<mml:mrow>
|
|
620
|
+
<mml:mo>(</mml:mo>
|
|
621
|
+
<mml:mrow>
|
|
622
|
+
<mml:mfrac>
|
|
623
|
+
<mml:mrow>
|
|
624
|
+
<mml:mi>η</mml:mi>
|
|
625
|
+
<mml:mtext> </mml:mtext>
|
|
626
|
+
<mml:mo>−</mml:mo>
|
|
627
|
+
<mml:mi>η</mml:mi>
|
|
628
|
+
<mml:mtext>0</mml:mtext>
|
|
629
|
+
</mml:mrow>
|
|
630
|
+
<mml:mrow>
|
|
631
|
+
<mml:mi>η</mml:mi>
|
|
632
|
+
<mml:mtext>0</mml:mtext>
|
|
633
|
+
<mml:mtext> </mml:mtext>
|
|
634
|
+
<mml:mi>c</mml:mi>
|
|
635
|
+
</mml:mrow>
|
|
636
|
+
</mml:mfrac>
|
|
637
|
+
</mml:mrow>
|
|
638
|
+
<mml:mo>)</mml:mo>
|
|
639
|
+
</mml:mrow>
|
|
640
|
+
</mml:semantics>
|
|
641
|
+
</mml:math>
|
|
642
|
+
</tbx:definition>
|
|
643
|
+
<tbx:tig>
|
|
644
|
+
<tbx:term id="a213.498-1">fire</tbx:term>
|
|
645
|
+
<tbx:partOfSpeech value="noun"/>
|
|
646
|
+
</tbx:tig>
|
|
647
|
+
</tbx:langSet>
|
|
648
|
+
</tbx:termEntry>
|
|
649
|
+
</term-sec>
|
|
650
|
+
<term-sec>
|
|
651
|
+
<tbx:termEntry id="ISO10241-1.a213.3121">
|
|
652
|
+
<!-- this entry shows different subject fields for different languages -->
|
|
653
|
+
<tbx:langSet xml:lang="en">
|
|
654
|
+
<tbx:subjectField>encircled power (energy)</tbx:subjectField>
|
|
655
|
+
<tbx:note>For clarity, the term “beam waist radius” is always used in
|
|
656
|
+
combination with the symbol and its appropriate subscripts: <italic>w
|
|
657
|
+
<sub>0,u</sub></italic> or <italic>w <sub>σ
|
|
658
|
+
0</sub>.</italic></tbx:note>
|
|
659
|
+
<!-- note - can now have italics and subscript at the same time -->
|
|
660
|
+
<tbx:definition>radius <italic>w</italic><sub>u</sub> of the beam at the
|
|
661
|
+
location of the beam waist</tbx:definition>
|
|
662
|
+
<tbx:tig>
|
|
663
|
+
<tbx:term id="a213.3121-1">beam waist radius</tbx:term>
|
|
664
|
+
<tbx:partOfSpeech value="noun"/>
|
|
665
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
666
|
+
</tbx:tig>
|
|
667
|
+
<tbx:tig>
|
|
668
|
+
<tbx:term id="a213.3121-2"><italic>w<sub>0,u</sub></italic></tbx:term>
|
|
669
|
+
<tbx:partOfSpeech value="noun"/>
|
|
670
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
671
|
+
<tbx:termType value="symbol"/>
|
|
672
|
+
</tbx:tig>
|
|
673
|
+
</tbx:langSet>
|
|
674
|
+
<tbx:langSet xml:lang="fr">
|
|
675
|
+
<tbx:subjectField>puissance (énergie) circulaire</tbx:subjectField>
|
|
676
|
+
<!-- note - can now have italics and subscript at the same time -->
|
|
677
|
+
<tbx:definition>rayon <italic>w<sub>u</sub></italic> du faisceau au niveau
|
|
678
|
+
du col (de la taille)</tbx:definition>
|
|
679
|
+
<tbx:note>Pour clarifier la définition, le terme «rayon du col du faisceau»
|
|
680
|
+
est toujours utilisé en combinaison avec le symbole et son indice
|
|
681
|
+
approprié: <italic>w <sub>0,u</sub></italic> ou <italic>w <sub>σ
|
|
682
|
+
0</sub>.</italic></tbx:note>
|
|
683
|
+
<tbx:tig>
|
|
684
|
+
<tbx:term id="a213.3121-3">rayon du col du faisceau</tbx:term>
|
|
685
|
+
<tbx:partOfSpeech value="noun"/>
|
|
686
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
687
|
+
</tbx:tig>
|
|
688
|
+
<tbx:tig>
|
|
689
|
+
<tbx:term id="a213.3121-4"><italic>w</italic><sub>0,u</sub></tbx:term>
|
|
690
|
+
<tbx:partOfSpeech value="noun"/>
|
|
691
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
692
|
+
<tbx:termType value="symbol"/>
|
|
693
|
+
</tbx:tig>
|
|
694
|
+
</tbx:langSet>
|
|
695
|
+
</tbx:termEntry>
|
|
696
|
+
</term-sec>
|
|
697
|
+
<term-sec>
|
|
698
|
+
<tbx:termEntry id="ISO10241-1.a213.3122">
|
|
699
|
+
<tbx:langSet xml:lang="en">
|
|
700
|
+
<tbx:subjectField>second moment of power (energy) density distribution
|
|
701
|
+
function</tbx:subjectField>
|
|
702
|
+
<tbx:note>For clarity, the term “beam waist radius” is always used in
|
|
703
|
+
combination with the symbol and its appropriate subscripts: <italic>w
|
|
704
|
+
<sub>0,u</sub></italic> or <italic>w <sub>σ
|
|
705
|
+
0</sub>.</italic></tbx:note>
|
|
706
|
+
<!-- note - can now have italics and subscript at the same time -->
|
|
707
|
+
<tbx:definition>radius <italic>w<sub>u</sub></italic> of the beam at the
|
|
708
|
+
location of the beam waist</tbx:definition>
|
|
709
|
+
<tbx:tig>
|
|
710
|
+
<tbx:term id="a213.3122-1">beam waist radius</tbx:term>
|
|
711
|
+
<tbx:partOfSpeech value="noun"/>
|
|
712
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
713
|
+
</tbx:tig>
|
|
714
|
+
<tbx:tig>
|
|
715
|
+
<tbx:term id="a213.3122-2">
|
|
716
|
+
<italic>w<sub>σ0</sub></italic>
|
|
717
|
+
</tbx:term>
|
|
718
|
+
<tbx:partOfSpeech value="noun"/>
|
|
719
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
720
|
+
<tbx:termType value="symbol"/>
|
|
721
|
+
</tbx:tig>
|
|
722
|
+
</tbx:langSet>
|
|
723
|
+
<tbx:langSet xml:lang="fr">
|
|
724
|
+
<tbx:subjectField>moment de second ordre de la fonction de distribution de
|
|
725
|
+
la densité de puissance (d'énergie)> </tbx:subjectField>
|
|
726
|
+
<tbx:note>Pour clarifier la définition, le terme «rayon du col du faisceau»
|
|
727
|
+
est toujours utilisé en combinaison avec le symbole et son indice
|
|
728
|
+
approprié: <italic>w <sub>0,u</sub></italic> or <italic>w <sub>σ
|
|
729
|
+
0</sub>.</italic></tbx:note>
|
|
730
|
+
<!-- note - can now have italics and subscript at the same time -->
|
|
731
|
+
<tbx:definition>rayon <italic>w<sub>u</sub></italic> du faisceau au niveau
|
|
732
|
+
du col (de la taille)</tbx:definition>
|
|
733
|
+
<tbx:tig>
|
|
734
|
+
<tbx:term id="a213.3122-3">rayon du col du faisceau</tbx:term>
|
|
735
|
+
<tbx:partOfSpeech value="noun"/>
|
|
736
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
737
|
+
</tbx:tig>
|
|
738
|
+
<tbx:tig>
|
|
739
|
+
<tbx:term id="a213.3122-4"><italic>w<sub>σ 0</sub></italic></tbx:term>
|
|
740
|
+
<tbx:partOfSpeech value="noun"/>
|
|
741
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
742
|
+
<tbx:termType value="symbol"/>
|
|
743
|
+
</tbx:tig>
|
|
744
|
+
</tbx:langSet>
|
|
745
|
+
</tbx:termEntry>
|
|
746
|
+
</term-sec>
|
|
747
|
+
<term-sec>
|
|
748
|
+
<tbx:termEntry id="ISO10241-1.a213.313">
|
|
749
|
+
<tbx:langSet xml:lang="en">
|
|
750
|
+
<tbx:subjectField>linear actuator</tbx:subjectField>
|
|
751
|
+
<tbx:definition>condition where the valve drifts from the set
|
|
752
|
+
position</tbx:definition>
|
|
753
|
+
<tbx:tig>
|
|
754
|
+
<tbx:term id="a213.313-1">backdriving</tbx:term>
|
|
755
|
+
<tbx:partOfSpeech value="noun"/>
|
|
756
|
+
</tbx:tig>
|
|
757
|
+
</tbx:langSet>
|
|
758
|
+
</tbx:termEntry>
|
|
759
|
+
</term-sec>
|
|
760
|
+
<term-sec>
|
|
761
|
+
<tbx:termEntry id="ISO10241-1.a213.314">
|
|
762
|
+
<tbx:langSet xml:lang="en">
|
|
763
|
+
<tbx:subjectField>rotary actuator</tbx:subjectField>
|
|
764
|
+
<tbx:definition>condition where the valve continues to change position
|
|
765
|
+
subsequent to the completion of a positional movement</tbx:definition>
|
|
766
|
+
<tbx:tig>
|
|
767
|
+
<tbx:term id="a213.314-1">backdriving</tbx:term>
|
|
768
|
+
<tbx:partOfSpeech value="noun"/>
|
|
769
|
+
</tbx:tig>
|
|
770
|
+
</tbx:langSet>
|
|
771
|
+
</tbx:termEntry>
|
|
772
|
+
</term-sec>
|
|
773
|
+
<term-sec>
|
|
774
|
+
<tbx:termEntry id="ISO10241-1.a214.93">
|
|
775
|
+
<tbx:langSet xml:lang="en">
|
|
776
|
+
<tbx:definition>consumed flow rate for <!-- list formatting is using the ISOSTS markup -->
|
|
777
|
+
<list list-type="bullet">
|
|
778
|
+
<list-item>
|
|
779
|
+
<label>—</label>
|
|
780
|
+
<p>pilot flow rate,</p>
|
|
781
|
+
</list-item>
|
|
782
|
+
<list-item>
|
|
783
|
+
<label>—</label>
|
|
784
|
+
<p>internal leakage flow rate,</p>
|
|
785
|
+
</list-item>
|
|
786
|
+
<list-item>
|
|
787
|
+
<label>—</label>
|
|
788
|
+
<p>output flow rate</p>
|
|
789
|
+
</list-item>
|
|
790
|
+
</list>
|
|
791
|
+
</tbx:definition>
|
|
792
|
+
<tbx:tig>
|
|
793
|
+
<tbx:term>total flow rate</tbx:term>
|
|
794
|
+
<tbx:partOfSpeech value="noun"/>
|
|
795
|
+
</tbx:tig>
|
|
796
|
+
</tbx:langSet>
|
|
797
|
+
<tbx:langSet xml:lang="fr">
|
|
798
|
+
<tbx:definition>débit de fluide dépensé comprenant <list list-type="bullet">
|
|
799
|
+
<list-item>
|
|
800
|
+
<label>—</label>
|
|
801
|
+
<p>le débit de pilotage,</p>
|
|
802
|
+
</list-item>
|
|
803
|
+
<list-item>
|
|
804
|
+
<label>—</label>
|
|
805
|
+
<p>le débit des fuites internes,</p>
|
|
806
|
+
</list-item>
|
|
807
|
+
<list-item>
|
|
808
|
+
<label>—</label>
|
|
809
|
+
<p>le débit de sortie</p>
|
|
810
|
+
</list-item>
|
|
811
|
+
</list>
|
|
812
|
+
</tbx:definition>
|
|
813
|
+
<tbx:tig>
|
|
814
|
+
<tbx:term>débit total</tbx:term>
|
|
815
|
+
<tbx:partOfSpeech value="noun"/>
|
|
816
|
+
<tbx:grammaticalGender value="masculine"/>
|
|
817
|
+
</tbx:tig>
|
|
818
|
+
</tbx:langSet>
|
|
819
|
+
<tbx:langSet xml:lang="de">
|
|
820
|
+
<tbx:definition>verbrauchter Volumenstrom, bestehend aus <list
|
|
821
|
+
list-type="bullet">
|
|
822
|
+
<list-item>
|
|
823
|
+
<label>—</label>
|
|
824
|
+
<p>Steuervolumenstrom,</p>
|
|
825
|
+
</list-item>
|
|
826
|
+
<list-item>
|
|
827
|
+
<label>—</label>
|
|
828
|
+
<p>innerer Leckvolumenstrom,</p>
|
|
829
|
+
</list-item>
|
|
830
|
+
<list-item>
|
|
831
|
+
<label>—</label>
|
|
832
|
+
<p>Ausgangsvolumenstrom</p>
|
|
833
|
+
</list-item>
|
|
834
|
+
</list>
|
|
835
|
+
</tbx:definition>
|
|
836
|
+
<tbx:tig>
|
|
837
|
+
<tbx:term>Gesamtvolumenstrom</tbx:term>
|
|
838
|
+
<tbx:partOfSpeech value="noun"/>
|
|
839
|
+
<tbx:grammaticalGender value="masculine"/>
|
|
840
|
+
</tbx:tig>
|
|
841
|
+
</tbx:langSet>
|
|
842
|
+
</tbx:termEntry>
|
|
843
|
+
</term-sec>
|
|
844
|
+
<term-sec>
|
|
845
|
+
<tbx:termEntry id="ISO10241-1.a215.37">
|
|
846
|
+
<tbx:langSet xml:lang="en">
|
|
847
|
+
<tbx:definition>centrally held collection of data that is accessible to
|
|
848
|
+
users</tbx:definition>
|
|
849
|
+
<tbx:source>ISO 20252:2006, 2.18.</tbx:source>
|
|
850
|
+
<tbx:tig>
|
|
851
|
+
<tbx:term id="a215.37-1">database</tbx:term>
|
|
852
|
+
<tbx:partOfSpeech value="noun"/>
|
|
853
|
+
</tbx:tig>
|
|
854
|
+
</tbx:langSet>
|
|
855
|
+
</tbx:termEntry>
|
|
856
|
+
</term-sec>
|
|
857
|
+
<term-sec>
|
|
858
|
+
<tbx:termEntry id="ISO10241-1.a215.31">
|
|
859
|
+
<tbx:langSet xml:lang="en">
|
|
860
|
+
<tbx:definition>surroundings in which an
|
|
861
|
+
<tbx:entailedTerm>organization (3.4)</tbx:entailedTerm> operates,
|
|
862
|
+
in¬cluding air, water, land, natural resources, flora, fauna, humans,
|
|
863
|
+
and their interrelation</tbx:definition>
|
|
864
|
+
<tbx:source>ISO 14001:2004, 3.5.</tbx:source>
|
|
865
|
+
<tbx:note>Surroundings in this context extend from within an organization to
|
|
866
|
+
the global system.</tbx:note>
|
|
867
|
+
<tbx:tig>
|
|
868
|
+
<tbx:term id="a215.31-1">environment</tbx:term>
|
|
869
|
+
<tbx:partOfSpeech value="noun"/>
|
|
870
|
+
</tbx:tig>
|
|
871
|
+
</tbx:langSet>
|
|
872
|
+
<tbx:langSet xml:lang="fr">
|
|
873
|
+
<tbx:definition>milieu dans lequel un
|
|
874
|
+
<tbx:entailedTerm>organisme (3.4)</tbx:entailedTerm> fonctionne,
|
|
875
|
+
incluant l'air, l'eau, le sol, les ressources naturelles, la flore, la
|
|
876
|
+
faune, les êtres humains et leurs interrelations</tbx:definition>
|
|
877
|
+
<tbx:source>ISO 14001:2004, 3.5.</tbx:source>
|
|
878
|
+
<tbx:note>Dans ce contexte, le milieu s'étend de l'intérieur de l'organisme
|
|
879
|
+
au système global.</tbx:note>
|
|
880
|
+
<tbx:tig>
|
|
881
|
+
<tbx:term id="a215.31-2">environnement</tbx:term>
|
|
882
|
+
<tbx:partOfSpeech value="noun"/>
|
|
883
|
+
</tbx:tig>
|
|
884
|
+
</tbx:langSet>
|
|
885
|
+
<tbx:langSet xml:lang="ru">
|
|
886
|
+
<tbx:definition>окружение, в котором функционирует
|
|
887
|
+
<tbx:entailedTerm>организация (3.4)</tbx:entailedTerm>, включая
|
|
888
|
+
воздух, воду, землю, природные ресурсы, флору, фауну, людей и их
|
|
889
|
+
взаимодействие</tbx:definition>
|
|
890
|
+
<tbx:source>ИСО 14001:2004, 3.5.</tbx:source>
|
|
891
|
+
<tbx:note>Примечание 1 к терминологической записи: В данном контексте
|
|
892
|
+
понятие “окружение” распространяется на среду в пределах организации и
|
|
893
|
+
до глобальной системы.</tbx:note>
|
|
894
|
+
<tbx:tig>
|
|
895
|
+
<tbx:term id="a215.31-3" script="Cyrl">окружающая среда</tbx:term>
|
|
896
|
+
<tbx:partOfSpeech value="noun"/>
|
|
897
|
+
<tbx:geographicalUsage>ru RU</tbx:geographicalUsage>
|
|
898
|
+
</tbx:tig>
|
|
899
|
+
</tbx:langSet>
|
|
900
|
+
</tbx:termEntry>
|
|
901
|
+
</term-sec>
|
|
902
|
+
<term-sec>
|
|
903
|
+
<tbx:termEntry id="ISO10241-1.a216.311">
|
|
904
|
+
<tbx:langSet xml:lang="en">
|
|
905
|
+
<tbx:definition>standard that is concerned with
|
|
906
|
+
<tbx:entailedTerm>terms (3.4.1.2)</tbx:entailedTerm> accompanied by
|
|
907
|
+
their <tbx:entailedTerm>definitions (3.4.2.1)</tbx:entailedTerm>, and
|
|
908
|
+
sometimes by explanatory notes, illustrations, examples,
|
|
909
|
+
etc.</tbx:definition>
|
|
910
|
+
<tbx:source>ISO/IEC Guide 2:2004, 5.2</tbx:source>
|
|
911
|
+
<tbx:note>Modified — By omitting “usually” in front of “accompanied by their
|
|
912
|
+
definitions”, this terminological entry is made consistent with the
|
|
913
|
+
other terms and definitions in this part of ISO 10241.</tbx:note>
|
|
914
|
+
<tbx:tig>
|
|
915
|
+
<tbx:term id="a216.311-1">terminology standard</tbx:term>
|
|
916
|
+
<tbx:partOfSpeech value="noun"/>
|
|
917
|
+
</tbx:tig>
|
|
918
|
+
</tbx:langSet>
|
|
919
|
+
</tbx:termEntry>
|
|
920
|
+
</term-sec>
|
|
921
|
+
<term-sec>
|
|
922
|
+
<tbx:termEntry id="ISO10241-1.a216.319">
|
|
923
|
+
<tbx:langSet xml:lang="en">
|
|
924
|
+
<tbx:definition>expectation of the mean time to dangerous
|
|
925
|
+
failure</tbx:definition>
|
|
926
|
+
<tbx:source>ISO 13849-1:2006, 3.1.25</tbx:source>
|
|
927
|
+
<tbx:tig>
|
|
928
|
+
<tbx:term id="a216.319-1">mean time to dangerous failure</tbx:term>
|
|
929
|
+
<tbx:partOfSpeech value="noun"/>
|
|
930
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
931
|
+
</tbx:tig>
|
|
932
|
+
<tbx:tig>
|
|
933
|
+
<tbx:term id="a216.319-2">MTTF<sub>d</sub></tbx:term>
|
|
934
|
+
<tbx:partOfSpeech value="noun"/>
|
|
935
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
936
|
+
<tbx:termType value="symbol"/>
|
|
937
|
+
</tbx:tig>
|
|
938
|
+
</tbx:langSet>
|
|
939
|
+
<!-- the following entry shows two notes, one for the language section, and one for the definition -->
|
|
940
|
+
<tbx:langSet xml:lang="fr">
|
|
941
|
+
<tbx:note>Le terme abrégé «MTTFd» est dérivé de l'anglais <tbx:entailedTerm
|
|
942
|
+
xml:lang="en">mean time to dangerous
|
|
943
|
+
failure</tbx:entailedTerm>.</tbx:note>
|
|
944
|
+
<tbx:definition>espérance de la durée moyenne de fonctionnement avant une
|
|
945
|
+
défaillance dangereuse</tbx:definition>
|
|
946
|
+
<tbx:source>ISO 13849-1:2006, 3.1.25</tbx:source>
|
|
947
|
+
<tbx:note>Modifié — Dans le terme, «temps moyen» est devenu “durée moyenne”.
|
|
948
|
+
La définition était «valeur probable de la durée moyenne avant
|
|
949
|
+
défaillance dangereuse».]</tbx:note>
|
|
950
|
+
<tbx:tig>
|
|
951
|
+
<tbx:term id="a216.319-3">durée moyenne avant défaillance
|
|
952
|
+
dangereuse</tbx:term>
|
|
953
|
+
<tbx:partOfSpeech value="noun"/>
|
|
954
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
955
|
+
</tbx:tig>
|
|
956
|
+
<tbx:tig>
|
|
957
|
+
<tbx:term id="a216.319-4">MTTF<sub>d</sub></tbx:term>
|
|
958
|
+
<tbx:partOfSpeech value="noun"/>
|
|
959
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
960
|
+
<tbx:termType value="symbol"/>
|
|
961
|
+
</tbx:tig>
|
|
962
|
+
</tbx:langSet>
|
|
963
|
+
</tbx:termEntry>
|
|
964
|
+
</term-sec>
|
|
965
|
+
<term-sec>
|
|
966
|
+
<tbx:termEntry id="ISO10241-1.a217.374">
|
|
967
|
+
<tbx:langSet xml:lang="en">
|
|
968
|
+
<tbx:definition><tbx:entailedTerm target="databank">data
|
|
969
|
+
bank (ISO 1087-2:2000, 6.7)</tbx:entailedTerm> containing
|
|
970
|
+
<!-- inserted xtarget just for testing purposes --><tbx:entailedTerm
|
|
971
|
+
xtarget="xyz">terminological data</tbx:entailedTerm>
|
|
972
|
+
(3.8.1)</tbx:definition>
|
|
973
|
+
<tbx:source>ISO 1087-2:2000, 6.8</tbx:source>
|
|
974
|
+
<tbx:tig>
|
|
975
|
+
<tbx:term id="a217.374-1">term bank</tbx:term>
|
|
976
|
+
<tbx:partOfSpeech value="noun"/>
|
|
977
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
978
|
+
</tbx:tig>
|
|
979
|
+
<tbx:tig>
|
|
980
|
+
<tbx:term id="a217.374-2">terminological data bank</tbx:term>
|
|
981
|
+
<tbx:partOfSpeech value="noun"/>
|
|
982
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
983
|
+
</tbx:tig>
|
|
984
|
+
</tbx:langSet>
|
|
985
|
+
</tbx:termEntry>
|
|
986
|
+
</term-sec>
|
|
987
|
+
<!-- entry inserted merely to test the target attribute on an entailed term in the above entry -->
|
|
988
|
+
<term-sec>
|
|
989
|
+
<tbx:termEntry id="databank">
|
|
990
|
+
<tbx:langSet xml:lang="en">
|
|
991
|
+
<tbx:tig>
|
|
992
|
+
<tbx:term>data bank</tbx:term>
|
|
993
|
+
<tbx:partOfSpeech value="noun"/>
|
|
994
|
+
</tbx:tig>
|
|
995
|
+
</tbx:langSet>
|
|
996
|
+
</tbx:termEntry>
|
|
997
|
+
</term-sec>
|
|
998
|
+
<term-sec>
|
|
999
|
+
<tbx:termEntry id="ISO10241-1.a218.37">
|
|
1000
|
+
<tbx:langSet xml:lang="en">
|
|
1001
|
+
<tbx:definition>language where a word form may consist of more than one
|
|
1002
|
+
morph but the boundaries between morphs are always
|
|
1003
|
+
clear-cut</tbx:definition>
|
|
1004
|
+
<tbx:source>ISBN 0-226-11433-3(1989)<43>(1.0)</tbx:source>
|
|
1005
|
+
<tbx:note>Modified — In this part of ISO 10241, “word form” has been used
|
|
1006
|
+
instead of “word” and “morph” has been used instead of “morpheme”. The
|
|
1007
|
+
example has been added.</tbx:note>
|
|
1008
|
+
<tbx:note>This note is just showing how you must use an XML entity to
|
|
1009
|
+
represent the ampersand sign: &</tbx:note>
|
|
1010
|
+
<tbx:example>Korean, Japanese, Hungarian and Turkish are agglutinating
|
|
1011
|
+
languages.</tbx:example>
|
|
1012
|
+
<tbx:tig>
|
|
1013
|
+
<tbx:term id="a218.37-1">agglutinating language</tbx:term>
|
|
1014
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1015
|
+
</tbx:tig>
|
|
1016
|
+
</tbx:langSet>
|
|
1017
|
+
</tbx:termEntry>
|
|
1018
|
+
</term-sec>
|
|
1019
|
+
<!-- example A.2.18, 3.27 is not necessary, all datcats already shown in other entries -->
|
|
1020
|
+
<!-- examples A.2.19 to A.2.20, not done because examples with MathML have already been shown above, see ISO10241-1.a213.498-->
|
|
1021
|
+
<term-sec>
|
|
1022
|
+
<tbx:termEntry id="ISO10241-1.a221.322">
|
|
1023
|
+
<!-- example showing a reference to another document part -->
|
|
1024
|
+
<tbx:langSet xml:lang="en">
|
|
1025
|
+
<tbx:definition>pressure using absolute vacuum as a
|
|
1026
|
+
reference</tbx:definition>
|
|
1027
|
+
<tbx:see>Figures 1 and 2.</tbx:see>
|
|
1028
|
+
<tbx:tig>
|
|
1029
|
+
<tbx:term id="a221.322-1">absolute pressure</tbx:term>
|
|
1030
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1031
|
+
</tbx:tig>
|
|
1032
|
+
</tbx:langSet>
|
|
1033
|
+
<tbx:langSet xml:lang="fr">
|
|
1034
|
+
<tbx:definition>pression utilisant le vide absolu comme
|
|
1035
|
+
référence</tbx:definition>
|
|
1036
|
+
<tbx:see>Figures 1 et 2.</tbx:see>
|
|
1037
|
+
<tbx:tig>
|
|
1038
|
+
<tbx:term id="a221.322-2">pression absolue</tbx:term>
|
|
1039
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1040
|
+
<tbx:grammaticalGender value="feminine"/>
|
|
1041
|
+
</tbx:tig>
|
|
1042
|
+
</tbx:langSet>
|
|
1043
|
+
<tbx:langSet xml:lang="de">
|
|
1044
|
+
<tbx:definition>Druck bezogen auf das absolute Vakuum</tbx:definition>
|
|
1045
|
+
<tbx:see>Bilder 1 und 2.</tbx:see>
|
|
1046
|
+
<tbx:tig>
|
|
1047
|
+
<tbx:term id="a221.322-3">Absolutdruck</tbx:term>
|
|
1048
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1049
|
+
<tbx:grammaticalGender value="masculine"/>
|
|
1050
|
+
</tbx:tig>
|
|
1051
|
+
</tbx:langSet>
|
|
1052
|
+
</tbx:termEntry>
|
|
1053
|
+
</term-sec>
|
|
1054
|
+
<term-sec>
|
|
1055
|
+
<tbx:termEntry id="ISO10241-1.a222.45">
|
|
1056
|
+
<!-- example showing a graphic at entry level, shared for all languages, and language-specific subject fields -->
|
|
1057
|
+
<tbx:xGraphic xtarget="http://example.com/graphic/ctr-open-exh.png"/>
|
|
1058
|
+
<tbx:langSet xml:lang="en">
|
|
1059
|
+
<tbx:subjectField>pneumatic</tbx:subjectField>
|
|
1060
|
+
<tbx:definition>valve centre position in which the inlet supply is not
|
|
1061
|
+
connected to an outlet, but outlets are connected to
|
|
1062
|
+
exhaust</tbx:definition>
|
|
1063
|
+
<tbx:tig>
|
|
1064
|
+
<tbx:term id="a222.45-1">centre open to exhaust position</tbx:term>
|
|
1065
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1066
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
1067
|
+
</tbx:tig>
|
|
1068
|
+
<tbx:tig>
|
|
1069
|
+
<tbx:term id="a222.45-2">negative position</tbx:term>
|
|
1070
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1071
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
1072
|
+
</tbx:tig>
|
|
1073
|
+
</tbx:langSet>
|
|
1074
|
+
<tbx:langSet xml:lang="fr">
|
|
1075
|
+
<tbx:subjectField>pneumatique</tbx:subjectField>
|
|
1076
|
+
<tbx:definition>position centrale d’un distributeur dans laquelle
|
|
1077
|
+
l’alimentation à l’entrée n’est pas reliée à une sortie, mais où les
|
|
1078
|
+
sorties communiquent avec l’échappement</tbx:definition>
|
|
1079
|
+
<tbx:tig>
|
|
1080
|
+
<tbx:term id="a222.45-3">position centre ouvert à
|
|
1081
|
+
l’échappement</tbx:term>
|
|
1082
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1083
|
+
<tbx:grammaticalGender value="feminine"/>
|
|
1084
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
1085
|
+
</tbx:tig>
|
|
1086
|
+
<tbx:tig>
|
|
1087
|
+
<tbx:term id="a222.45-4">position négative</tbx:term>
|
|
1088
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1089
|
+
<tbx:grammaticalGender value="feminine"/>
|
|
1090
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
1091
|
+
</tbx:tig>
|
|
1092
|
+
</tbx:langSet>
|
|
1093
|
+
<tbx:langSet xml:lang="de">
|
|
1094
|
+
<tbx:subjectField>Pneumatik</tbx:subjectField>
|
|
1095
|
+
<tbx:definition>mittlere Stellung des Ventils, in der der
|
|
1096
|
+
Versorgungs-anschluss gesperrt ist und die Arbeitsanschlüsse mit den
|
|
1097
|
+
Entlüftungsanschlüssen verbunden sind</tbx:definition>
|
|
1098
|
+
<tbx:tig>
|
|
1099
|
+
<tbx:term id="a222.45-5">entlüftete Mittelstellung</tbx:term>
|
|
1100
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1101
|
+
<tbx:grammaticalGender value="feminine"/>
|
|
1102
|
+
</tbx:tig>
|
|
1103
|
+
</tbx:langSet>
|
|
1104
|
+
</tbx:termEntry>
|
|
1105
|
+
</term-sec>
|
|
1106
|
+
<term-sec>
|
|
1107
|
+
<tbx:termEntry id="ISO10241-1.a222.3121">
|
|
1108
|
+
<!-- entry showing an xref at termEntry level, shared across all languages -->
|
|
1109
|
+
<tbx:xGraphic xtarget="location-of-graphic-file2"/>
|
|
1110
|
+
<tbx:langSet xml:lang="en">
|
|
1111
|
+
<tbx:definition>hydraulic tool with percussive mechanism for light
|
|
1112
|
+
demolition work, primarily for use in the horizontal
|
|
1113
|
+
plane</tbx:definition>
|
|
1114
|
+
<tbx:tig>
|
|
1115
|
+
<tbx:term id="a222.3121-1">pick hammer</tbx:term>
|
|
1116
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1117
|
+
</tbx:tig>
|
|
1118
|
+
</tbx:langSet>
|
|
1119
|
+
<tbx:langSet xml:lang="fr">
|
|
1120
|
+
<tbx:definition>machine portative hydraulique avec mécanisme de percussion
|
|
1121
|
+
utilisée pour des travaux légers de démolition, principalement pour
|
|
1122
|
+
l'utilisation sur un plan horizontal</tbx:definition>
|
|
1123
|
+
<tbx:tig>
|
|
1124
|
+
<tbx:term id="a222.3121-2">marteau-piqueur</tbx:term>
|
|
1125
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1126
|
+
</tbx:tig>
|
|
1127
|
+
</tbx:langSet>
|
|
1128
|
+
</tbx:termEntry>
|
|
1129
|
+
</term-sec>
|
|
1130
|
+
<term-sec>
|
|
1131
|
+
<tbx:termEntry id="ISO10241-1.a222.1112">
|
|
1132
|
+
<tbx:xGraphic xtarget="location-of-graphic-file3"/>
|
|
1133
|
+
<tbx:langSet xml:lang="en">
|
|
1134
|
+
<tbx:definition>crane with the bridge girders supported on the rail tracks
|
|
1135
|
+
by legs</tbx:definition>
|
|
1136
|
+
<tbx:tig>
|
|
1137
|
+
<tbx:term id="a222.1112-1">gantry crane</tbx:term>
|
|
1138
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1139
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
1140
|
+
</tbx:tig>
|
|
1141
|
+
<tbx:tig>
|
|
1142
|
+
<tbx:term id="a222.1112-2">portal bridge crane</tbx:term>
|
|
1143
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1144
|
+
<tbx:normativeAuthorization value="preferredTerm"/>
|
|
1145
|
+
</tbx:tig>
|
|
1146
|
+
</tbx:langSet>
|
|
1147
|
+
<tbx:langSet xml:lang="fr">
|
|
1148
|
+
<tbx:definition>appareil de levage à charge suspendue dont les éléments
|
|
1149
|
+
porteurs s'appuient sur une voie de roulement par l'intermédiaire de
|
|
1150
|
+
palées d'appui</tbx:definition>
|
|
1151
|
+
<tbx:tig>
|
|
1152
|
+
<tbx:term id="a222.1112-3">pont portique</tbx:term>
|
|
1153
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1154
|
+
</tbx:tig>
|
|
1155
|
+
</tbx:langSet>
|
|
1156
|
+
<tbx:langSet xml:lang="ru">
|
|
1157
|
+
<tbx:definition>кран, несущие элементы конструкции которого опираются на
|
|
1158
|
+
подкрановый путь при помощи опорных стоек</tbx:definition>
|
|
1159
|
+
<tbx:tig>
|
|
1160
|
+
<tbx:term id="a222.1112-4">кран козловой</tbx:term>
|
|
1161
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1162
|
+
</tbx:tig>
|
|
1163
|
+
</tbx:langSet>
|
|
1164
|
+
</tbx:termEntry>
|
|
1165
|
+
</term-sec>
|
|
1166
|
+
<term-sec>
|
|
1167
|
+
<tbx:termEntry id="ISO10241-1.a223.251">
|
|
1168
|
+
<tbx:langSet xml:lang="en">
|
|
1169
|
+
<tbx:definition>glowing produced without combustion or other chemical
|
|
1170
|
+
reaction</tbx:definition>
|
|
1171
|
+
<tbx:example>Glowing produced by electrical heating of a tungsten
|
|
1172
|
+
filament.</tbx:example>
|
|
1173
|
+
<tbx:source>ISO 472:1999</tbx:source>
|
|
1174
|
+
<tbx:tig>
|
|
1175
|
+
<tbx:term id="a223.251-1">incandescence</tbx:term>
|
|
1176
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1177
|
+
</tbx:tig>
|
|
1178
|
+
</tbx:langSet>
|
|
1179
|
+
</tbx:termEntry>
|
|
1180
|
+
</term-sec>
|
|
1181
|
+
<!-- example A.2.24 not necessary, all datcats already shown -->
|
|
1182
|
+
<term-sec>
|
|
1183
|
+
<!-- notes with table -->
|
|
1184
|
+
<tbx:termEntry id="ISO10241-1.a225.911">
|
|
1185
|
+
<tbx:langSet xml:lang="en">
|
|
1186
|
+
<tbx:definition>error of indication within which the range of radii of a
|
|
1187
|
+
test sphere (8.4) can be determined by a CMM (2.1), the measurements
|
|
1188
|
+
being taken by scanning (2.9) using one stylus (4.1) </tbx:definition>
|
|
1189
|
+
<tbx:note>There are four scanning probing errors based on different
|
|
1190
|
+
combinations of high point density (7.8) or low point density (7.9) and
|
|
1191
|
+
predefined path scanning (7.5) or non-predefined path scanning (7.6).
|
|
1192
|
+
These combinations are designated as follows: <table-wrap>
|
|
1193
|
+
<table border="1">
|
|
1194
|
+
<col width="100"/>
|
|
1195
|
+
<col width="100"/>
|
|
1196
|
+
<col width="100"/>
|
|
1197
|
+
<thead>
|
|
1198
|
+
<tr>
|
|
1199
|
+
<th>Point density</th>
|
|
1200
|
+
<th>Predefined path<break/><italic>(j = p)</italic></th>
|
|
1201
|
+
<th>Non-predefined path<break/><italic>(j =
|
|
1202
|
+
N)</italic></th>
|
|
1203
|
+
</tr>
|
|
1204
|
+
</thead>
|
|
1205
|
+
<tbody>
|
|
1206
|
+
<tr>
|
|
1207
|
+
<td>High <italic>(i = H)</italic></td>
|
|
1208
|
+
<td><italic>T<sub>HP</sub></italic></td>
|
|
1209
|
+
<td><italic>T<sub>HN</sub></italic></td>
|
|
1210
|
+
</tr>
|
|
1211
|
+
<tr>
|
|
1212
|
+
<td>Low <italic>(i = L)</italic></td>
|
|
1213
|
+
<td><italic>T<sub>LP</sub></italic></td>
|
|
1214
|
+
<td><italic>T<sub>LN</sub></italic></td>
|
|
1215
|
+
</tr>
|
|
1216
|
+
</tbody>
|
|
1217
|
+
</table>
|
|
1218
|
+
</table-wrap>
|
|
1219
|
+
</tbx:note>
|
|
1220
|
+
<tbx:tig>
|
|
1221
|
+
<tbx:term id="a225.911-1">scanning probing error</tbx:term>
|
|
1222
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1223
|
+
</tbx:tig>
|
|
1224
|
+
<tbx:tig>
|
|
1225
|
+
<tbx:term id="a225.911-2"><italic>T<sub>ij</sub></italic></tbx:term>
|
|
1226
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1227
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
1228
|
+
<tbx:termType value="symbol"/>
|
|
1229
|
+
</tbx:tig>
|
|
1230
|
+
</tbx:langSet>
|
|
1231
|
+
<tbx:langSet xml:lang="fr">
|
|
1232
|
+
<tbx:definition>erreur d’indication à l’intérieur de laquelle l’étendue des
|
|
1233
|
+
rayons d’une sphère d’essai (8.4) peut être déterminée par une MMT
|
|
1234
|
+
(2.1), les mesurages étant effectués par scanning (2.9) avec un seul
|
|
1235
|
+
stylet (4.1) </tbx:definition>
|
|
1236
|
+
<tbx:note>Il y a quatre erreurs de palpage en mode scanning selon les
|
|
1237
|
+
différentes combinaisons de haute densité de points (7.8) ou basse
|
|
1238
|
+
densité de points (7.9) et de trajectoire de scanning prédéfinie (7.5)
|
|
1239
|
+
ou trajectoire de scanning non prédéfinie (7.6). Ces combinaisons sont
|
|
1240
|
+
désignées comme suit: <table-wrap>
|
|
1241
|
+
<table border="1">
|
|
1242
|
+
<col width="100"/>
|
|
1243
|
+
<col width="100"/>
|
|
1244
|
+
<col width="100"/>
|
|
1245
|
+
<thead>
|
|
1246
|
+
<tr>
|
|
1247
|
+
<th>Densité de points</th>
|
|
1248
|
+
<th>Trajectoire prédéfinie<break/><italic>(j =
|
|
1249
|
+
p)</italic></th>
|
|
1250
|
+
<th>Trajectoire non prédéfinie<break/><italic>(j =
|
|
1251
|
+
N)</italic></th>
|
|
1252
|
+
</tr>
|
|
1253
|
+
</thead>
|
|
1254
|
+
<tbody>
|
|
1255
|
+
<tr>
|
|
1256
|
+
<td>Haute <italic>(i = H)</italic></td>
|
|
1257
|
+
<td><italic>T<sub>HP</sub></italic></td>
|
|
1258
|
+
<td><italic>T<sub>HN</sub></italic></td>
|
|
1259
|
+
</tr>
|
|
1260
|
+
<tr>
|
|
1261
|
+
<td>Basse <italic>(i = L)</italic></td>
|
|
1262
|
+
<td><italic>T<sub>LP</sub></italic></td>
|
|
1263
|
+
<td><italic>T<sub>LN</sub></italic></td>
|
|
1264
|
+
</tr>
|
|
1265
|
+
</tbody>
|
|
1266
|
+
</table>
|
|
1267
|
+
</table-wrap>
|
|
1268
|
+
</tbx:note>
|
|
1269
|
+
<tbx:tig>
|
|
1270
|
+
<tbx:term id="a225.911-1.fr">erreur de palpage en mode
|
|
1271
|
+
scanning</tbx:term>
|
|
1272
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1273
|
+
<tbx:grammaticalGender value="feminine"/>
|
|
1274
|
+
</tbx:tig>
|
|
1275
|
+
<tbx:tig>
|
|
1276
|
+
<tbx:term id="a225.911-2.fr"><italic>T<sub>ij</sub></italic></tbx:term>
|
|
1277
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1278
|
+
<tbx:normativeAuthorization value="admittedTerm"/>
|
|
1279
|
+
<tbx:termType value="symbol"/>
|
|
1280
|
+
</tbx:tig>
|
|
1281
|
+
</tbx:langSet>
|
|
1282
|
+
</tbx:termEntry>
|
|
1283
|
+
</term-sec>
|
|
1284
|
+
<!-- examples A.2.26 not necessary, all datcats already shown -->
|
|
1285
|
+
<term-sec>
|
|
1286
|
+
<!-- entry with an example -->
|
|
1287
|
+
<tbx:termEntry id="ISO10241-1.a227.2263">
|
|
1288
|
+
<tbx:langSet xml:lang="en">
|
|
1289
|
+
<tbx:definition>means of connecting two or more components</tbx:definition>
|
|
1290
|
+
<tbx:example>Plain pipe to a fitting, or plain pipe to plain
|
|
1291
|
+
pipe.</tbx:example>
|
|
1292
|
+
<tbx:tig>
|
|
1293
|
+
<tbx:term id="a227.2263-1">joint</tbx:term>
|
|
1294
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1295
|
+
</tbx:tig>
|
|
1296
|
+
</tbx:langSet>
|
|
1297
|
+
</tbx:termEntry>
|
|
1298
|
+
</term-sec>
|
|
1299
|
+
<term-sec>
|
|
1300
|
+
<!-- two notes -->
|
|
1301
|
+
<tbx:termEntry id="ISO10241-1.a227.114">
|
|
1302
|
+
<tbx:langSet xml:lang="en">
|
|
1303
|
+
<tbx:definition><tbx:entailedTerm>scale</tbx:entailedTerm> with a continuum
|
|
1304
|
+
of possible values</tbx:definition>
|
|
1305
|
+
<tbx:example><tbx:entailedTerm>Interval scale</tbx:entailedTerm> and
|
|
1306
|
+
<tbx:entailedTerm>ratio scale</tbx:entailedTerm>.</tbx:example>
|
|
1307
|
+
<tbx:note>A continuous scale can be transformed into a
|
|
1308
|
+
<tbx:entailedTerm>discrete scale</tbx:entailedTerm>, by grouping
|
|
1309
|
+
“values”. This inevitably leads to some loss of information. Often the
|
|
1310
|
+
resulting discrete scale will be ordinal.</tbx:note>
|
|
1311
|
+
<tbx:note>Scale resolution can be adversely affected by measurement system
|
|
1312
|
+
limitations. Such measurement limitations can, sometimes, give rise to
|
|
1313
|
+
measurements being represented on a discrete, ordinal scale.</tbx:note>
|
|
1314
|
+
<tbx:tig>
|
|
1315
|
+
<tbx:term id="a227.114-1">continuous scale</tbx:term>
|
|
1316
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1317
|
+
</tbx:tig>
|
|
1318
|
+
</tbx:langSet>
|
|
1319
|
+
<tbx:langSet xml:lang="fr">
|
|
1320
|
+
<tbx:definition><tbx:entailedTerm>échelle</tbx:entailedTerm> présentant une
|
|
1321
|
+
série de valeurs possibles</tbx:definition>
|
|
1322
|
+
<tbx:example><tbx:entailedTerm>Échelle d'intervalle </tbx:entailedTerm> et
|
|
1323
|
+
<tbx:entailedTerm>échelle de
|
|
1324
|
+
rapport</tbx:entailedTerm>.</tbx:example>
|
|
1325
|
+
<tbx:note>Une échelle continue peut être transformée en
|
|
1326
|
+
<tbx:entailedTerm>échelle discrète</tbx:entailedTerm> en groupant
|
|
1327
|
+
les «valeurs». Cela entraîne des pertes d'informations inévitables.
|
|
1328
|
+
Souvent, l'échelle discrète en résultant sera ordinale.</tbx:note>
|
|
1329
|
+
<tbx:note>La résolution d'échelle peut être affectée par les limites du
|
|
1330
|
+
système de mesure. De telles limitations de mesures peuvent parfois
|
|
1331
|
+
donner lieu à des mesures représentées par une échelle discrète,
|
|
1332
|
+
ordinale.</tbx:note>
|
|
1333
|
+
<tbx:tig>
|
|
1334
|
+
<tbx:term id="a227.114-2">continuous scale</tbx:term>
|
|
1335
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1336
|
+
</tbx:tig>
|
|
1337
|
+
</tbx:langSet>
|
|
1338
|
+
</tbx:termEntry>
|
|
1339
|
+
</term-sec>
|
|
1340
|
+
<term-sec>
|
|
1341
|
+
<!-- entry showing a cross reference to another term internal to the term section. Not shown is the target attribute which must
|
|
1342
|
+
point to the unique ID of the target term or entry. -->
|
|
1343
|
+
<tbx:termEntry id="ISO10241-1.a228.14">
|
|
1344
|
+
<tbx:langSet xml:lang="en">
|
|
1345
|
+
<tbx:definition>part capable of conducting electric current</tbx:definition>
|
|
1346
|
+
<tbx:note>Although not necessarily electrically energized in normal
|
|
1347
|
+
operating conditions, it may become electrically energized under fault
|
|
1348
|
+
conditions of the <tbx:entailedTerm>basic insulation
|
|
1349
|
+
(4)</tbx:entailedTerm>. </tbx:note>
|
|
1350
|
+
<tbx:crossReference>exposed conductive part</tbx:crossReference>
|
|
1351
|
+
<!--For rendering, the reference to the entry number should be automatically generated in parentheses after the term,
|
|
1352
|
+
using the label of the term section. The reference
|
|
1353
|
+
should be prepended with "Related term: -->
|
|
1354
|
+
<tbx:tig>
|
|
1355
|
+
<tbx:term id="a228.14-1">conductive part</tbx:term>
|
|
1356
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1357
|
+
</tbx:tig>
|
|
1358
|
+
</tbx:langSet>
|
|
1359
|
+
<tbx:langSet xml:lang="fr">
|
|
1360
|
+
<tbx:definition>pièce à même de conduire le courant
|
|
1361
|
+
électrique</tbx:definition>
|
|
1362
|
+
<tbx:note>Bien que non nécessairement sous tension dans les conditions
|
|
1363
|
+
normales de service, elle peut devenir sous tension en cas de
|
|
1364
|
+
défaillance de l'<tbx:entailedTerm>isolation de base
|
|
1365
|
+
(4)</tbx:entailedTerm>.</tbx:note>
|
|
1366
|
+
<tbx:crossReference>pièce conductrice apparente</tbx:crossReference>
|
|
1367
|
+
<tbx:tig>
|
|
1368
|
+
<tbx:term id="a228.14-2">pièce conductrice</tbx:term>
|
|
1369
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1370
|
+
</tbx:tig>
|
|
1371
|
+
</tbx:langSet>
|
|
1372
|
+
</tbx:termEntry>
|
|
1373
|
+
</term-sec>
|
|
1374
|
+
<term-sec>
|
|
1375
|
+
<tbx:termEntry id="ISO10241-1.a229.131">
|
|
1376
|
+
<tbx:langSet xml:lang="en">
|
|
1377
|
+
<tbx:definition>grain of <italic>Avena sativa</italic> L.</tbx:definition>
|
|
1378
|
+
<tbx:source>ISO 11520-2:2001, 3.10.</tbx:source>
|
|
1379
|
+
<tbx:tig>
|
|
1380
|
+
<tbx:term id="a229.131-1">oats</tbx:term>
|
|
1381
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1382
|
+
<tbx:grammaticalNumber value="singular"/>
|
|
1383
|
+
</tbx:tig>
|
|
1384
|
+
</tbx:langSet>
|
|
1385
|
+
</tbx:termEntry>
|
|
1386
|
+
</term-sec>
|
|
1387
|
+
<term-sec>
|
|
1388
|
+
<!-- entry with multiple definitions and multiple sources -->
|
|
1389
|
+
<tbx:termEntry id="ISO10241-1.a229.131b">
|
|
1390
|
+
<tbx:langSet xml:lang="en">
|
|
1391
|
+
<tbx:definition>grain of <italic>Avena sativa</italic> L.</tbx:definition>
|
|
1392
|
+
<tbx:source>ISO 11520-2:2001, 3.10.</tbx:source>
|
|
1393
|
+
<tbx:definition>another definition</tbx:definition>
|
|
1394
|
+
<tbx:source>another source</tbx:source>
|
|
1395
|
+
<tbx:tig>
|
|
1396
|
+
<tbx:term id="a229.131-1b">oats</tbx:term>
|
|
1397
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1398
|
+
<tbx:grammaticalNumber value="singular"/>
|
|
1399
|
+
</tbx:tig>
|
|
1400
|
+
</tbx:langSet>
|
|
1401
|
+
</tbx:termEntry>
|
|
1402
|
+
</term-sec>
|
|
1403
|
+
<term-sec>
|
|
1404
|
+
<!-- entry from 10360-1:2000, number 2.16, showing a symbol as a term -->
|
|
1405
|
+
<tbx:termEntry id="ISO10360-1.a216">
|
|
1406
|
+
<tbx:langSet xml:lang="en">
|
|
1407
|
+
<tbx:definition>vector used to translate an <tbx:entailedTerm>indicated
|
|
1408
|
+
measured point (2.12)</tbx:entailedTerm> to a
|
|
1409
|
+
<tbx:entailedTerm>corrected measured point
|
|
1410
|
+
(2.13)</tbx:entailedTerm></tbx:definition>
|
|
1411
|
+
<tbx:see>Figures 3 and 4</tbx:see>
|
|
1412
|
+
<!-- the following note includes symbols. It may require NLM or other
|
|
1413
|
+
markup to handle additional formatting-->
|
|
1414
|
+
<!-- it illustrates that both MathML and TeX/LaTeX math representations are available -->
|
|
1415
|
+
<tbx:note>The tip correction vector normally includes the physical size of
|
|
1416
|
+
the tip (e.g. radius) and a correction for the systematic errors of the
|
|
1417
|
+
<tbx:entailedTerm> probing system (2.6)</tbx:entailedTerm>. The
|
|
1418
|
+
translation from an <tbx:entailedTerm> indicated measured point
|
|
1419
|
+
(2.12)</tbx:entailedTerm> ot a <tbx:entailedTerm>corrected measured
|
|
1420
|
+
point (2.13)</tbx:entailedTerm> is expressed by the equation: <mml:math>
|
|
1421
|
+
<mml:mrow><!--MathML markup of the equation--></mml:mrow>
|
|
1422
|
+
</mml:math> where <mml:math>
|
|
1423
|
+
<mml:mrow><!--MathML markup of the symbol--></mml:mrow>
|
|
1424
|
+
</mml:math> is the vector of the corrected measured point; <mml:math>
|
|
1425
|
+
<mml:mrow><!--MathML markup of the symbol--></mml:mrow>
|
|
1426
|
+
</mml:math> is the vector of the indicated measured point; <mml:math>
|
|
1427
|
+
<mml:mrow><!--MathML markup of the symbol--></mml:mrow>
|
|
1428
|
+
</mml:math> is the tip correction vector. </tbx:note>
|
|
1429
|
+
<tbx:note>The conventional practice is normally to use an approximate
|
|
1430
|
+
<tbx:entailedTerm>stylus tip (4.2)</tbx:entailedTerm> radius to
|
|
1431
|
+
establish the magnitude of this vector and an estimated surface normal
|
|
1432
|
+
to establish the direction. The tip diameter can include correction
|
|
1433
|
+
effects such as stylus staft bending and is usually referred to as
|
|
1434
|
+
"effective tip diameter".</tbx:note>
|
|
1435
|
+
<tbx:tig>
|
|
1436
|
+
<tbx:term id="a216-1">tip correction vector</tbx:term>
|
|
1437
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1438
|
+
</tbx:tig>
|
|
1439
|
+
<tbx:tig>
|
|
1440
|
+
<tbx:term id="a216-2"><mml:math>
|
|
1441
|
+
<mml:mrow><!--MathML markup of the symbol--></mml:mrow>
|
|
1442
|
+
</mml:math></tbx:term>
|
|
1443
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1444
|
+
<tbx:termType value="symbol"/>
|
|
1445
|
+
</tbx:tig>
|
|
1446
|
+
</tbx:langSet>
|
|
1447
|
+
<tbx:langSet xml:lang="fr">
|
|
1448
|
+
<tbx:definition>vecteur utilisé pour la translation d'un
|
|
1449
|
+
<tbx:entailedTerm>point de mesure indiqué (2.12)</tbx:entailedTerm>
|
|
1450
|
+
vers un <tbx:entailedTerm>point de mesure corrigé
|
|
1451
|
+
(2.13)</tbx:entailedTerm></tbx:definition>
|
|
1452
|
+
<tbx:see>Figures 3 et 4</tbx:see>
|
|
1453
|
+
<!-- the following note includes symbols. It may require NLM or other
|
|
1454
|
+
markup to handle additional formatting-->
|
|
1455
|
+
<tbx:note>Le vecteur de correction de touche inclut normalement la taille de
|
|
1456
|
+
la touche (par exemple le rayon) et une correction de l'erreur
|
|
1457
|
+
systématique du <tbx:entailedTerm>système de palpage
|
|
1458
|
+
(2.6)</tbx:entailedTerm>. La translation d'unf <tbx:entailedTerm>point de mesure
|
|
1459
|
+
indiqué (2.12)</tbx:entailedTerm> vers un <tbx:entailedTerm>point de
|
|
1460
|
+
mesure corrigé (2.13)</tbx:entailedTerm> est exprimé par l'équation: <mml:math>
|
|
1461
|
+
<mml:mrow><!--MathML markup of the equation--></mml:mrow>
|
|
1462
|
+
</mml:math> où <mml:math>
|
|
1463
|
+
<mml:mrow><!--MathML markup of the symbol--></mml:mrow>
|
|
1464
|
+
</mml:math> est le vecteur du point de mesure corrigé; <mml:math>
|
|
1465
|
+
<mml:mrow><!--MathML markup of the symbol--></mml:mrow>
|
|
1466
|
+
</mml:math> est le vecteur du point de mesure indiqué; <mml:math>
|
|
1467
|
+
<mml:mrow><!--MathML markup of the symbol--></mml:mrow>
|
|
1468
|
+
</mml:math> est le vecteur de correction de touche. </tbx:note>
|
|
1469
|
+
<tbx:note>La pratique conventionnelle utilise couramment un rayon approché
|
|
1470
|
+
de <tbx:entailedTerm>touche du stylet (4.2)</tbx:entailedTerm> pour
|
|
1471
|
+
établir l’amplitude de ce vecteur et une normale à la surface estimée
|
|
1472
|
+
pour établir la direction. Le diamètre de la touche peut inclure des
|
|
1473
|
+
éléments de correction tels que la flexion de l’arbre du stylet, et il
|
|
1474
|
+
est couramment appelé «diamètre effectif de touche».</tbx:note>
|
|
1475
|
+
<tbx:tig>
|
|
1476
|
+
<tbx:term id="a216-3">vecteur de correction de touche</tbx:term>
|
|
1477
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1478
|
+
<tbx:grammaticalGender value="masculine"/>
|
|
1479
|
+
</tbx:tig>
|
|
1480
|
+
<tbx:tig>
|
|
1481
|
+
<tbx:term id="a216-4"><mml:math>
|
|
1482
|
+
<mml:mrow><!--MathML markup of the symbol--></mml:mrow>
|
|
1483
|
+
</mml:math></tbx:term>
|
|
1484
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1485
|
+
<tbx:termType value="symbol"/>
|
|
1486
|
+
</tbx:tig>
|
|
1487
|
+
</tbx:langSet>
|
|
1488
|
+
</tbx:termEntry>
|
|
1489
|
+
</term-sec>
|
|
1490
|
+
<term-sec>
|
|
1491
|
+
<!-- use <term-display> as an alternative to TBX markup. This should only be used as a last option
|
|
1492
|
+
when the termEntry contains content which cannot be capture with TBX.
|
|
1493
|
+
When term-display is used then at least the term and its definition must be capture with tbx:term and tbx:definition -->
|
|
1494
|
+
<tbx:termEntry id="iso_std_iso_3951-2_ed-1_en_term_3.10">
|
|
1495
|
+
<tbx:langSet xml:lang="en">
|
|
1496
|
+
<tbx:definition>non-fulfilment of a requirement</tbx:definition>
|
|
1497
|
+
<tbx:source>ISO 9000</tbx:source>
|
|
1498
|
+
<tbx:note> Nonconformity will generally be classified by its degree of
|
|
1499
|
+
seriousness, such as: <list list-type="bullet">
|
|
1500
|
+
<list-item>
|
|
1501
|
+
<label>—</label>
|
|
1502
|
+
<p><bold>Class A.</bold> Nonconformity of a type considered to
|
|
1503
|
+
be of the highest concern for the product or service. Such
|
|
1504
|
+
types of nonconformity will typically be assigned very small
|
|
1505
|
+
AQL values.</p>
|
|
1506
|
+
</list-item>
|
|
1507
|
+
<list-item>
|
|
1508
|
+
<label>—</label>
|
|
1509
|
+
<p><bold>Class B.</bold> Nonconformity of a type considered to
|
|
1510
|
+
have the next lower degree of concern; this is typically
|
|
1511
|
+
assigned a larger AQL value than that in Class A and smaller
|
|
1512
|
+
than that in Class C if a third class exists, and so on.</p>
|
|
1513
|
+
</list-item>
|
|
1514
|
+
</list> The number of classes and the assignment into a class should be
|
|
1515
|
+
appropriate to the quality requirements of the specific situation. </tbx:note>
|
|
1516
|
+
<tbx:tig id="iso_std_iso_3951_-2_ed-1_en_term_3.10·1">
|
|
1517
|
+
<tbx:term>nonconformity</tbx:term>
|
|
1518
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1519
|
+
</tbx:tig>
|
|
1520
|
+
</tbx:langSet>
|
|
1521
|
+
</tbx:termEntry>
|
|
1522
|
+
<term-display>
|
|
1523
|
+
<p><bold>nonconformity</bold></p>
|
|
1524
|
+
<p>non-fulfilment of a requirement</p>
|
|
1525
|
+
<p>[ISO 9000]</p>
|
|
1526
|
+
<non-normative-note>
|
|
1527
|
+
<label>NOTE</label>
|
|
1528
|
+
<p>Nonconformity will generally be classified by its degree of seriousness,
|
|
1529
|
+
such as: <list list-type="bullet">
|
|
1530
|
+
<list-item>
|
|
1531
|
+
<label>—</label>
|
|
1532
|
+
<p><bold>Class A.</bold> Nonconformity of a type considered to
|
|
1533
|
+
be of the highest concern for the product or service. Such
|
|
1534
|
+
types of nonconformity will typically be assigned very small
|
|
1535
|
+
AQL values.</p>
|
|
1536
|
+
</list-item>
|
|
1537
|
+
<list-item>
|
|
1538
|
+
<label>—</label>
|
|
1539
|
+
<p><bold>Class B.</bold> Nonconformity of a type considered to
|
|
1540
|
+
have the next lower degree of concern; this is typically
|
|
1541
|
+
assigned a larger AQL value than that in Class A and smaller
|
|
1542
|
+
than that in Class C if a third class exists, and so on.</p>
|
|
1543
|
+
</list-item>
|
|
1544
|
+
</list> The number of classes and the assignment into a class should be
|
|
1545
|
+
appropriate to the quality requirements of the specific situation.</p>
|
|
1546
|
+
</non-normative-note>
|
|
1547
|
+
</term-display>
|
|
1548
|
+
</term-sec>
|
|
1549
|
+
<term-sec>
|
|
1550
|
+
<tbx:termEntry>
|
|
1551
|
+
<tbx:langSet xml:lang="en">
|
|
1552
|
+
<tbx:definition>care provided in an institution</tbx:definition>
|
|
1553
|
+
<!-- entry exists only to demonstrate table formatting -->
|
|
1554
|
+
<!-- table adapted from JATS version 0.4 documentation: http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/n-t7s0.html -->
|
|
1555
|
+
<tbx:note>
|
|
1556
|
+
<table-wrap id="TN0.170">
|
|
1557
|
+
<caption>
|
|
1558
|
+
<p>Numbers of patients receiving institutional care ...</p>
|
|
1559
|
+
</caption>
|
|
1560
|
+
<table>
|
|
1561
|
+
<tbody>
|
|
1562
|
+
|
|
1563
|
+
<tr>
|
|
1564
|
+
<th/>
|
|
1565
|
+
<th colspan="3" align="center" rowspan="1">Institutional
|
|
1566
|
+
care</th>
|
|
1567
|
+
<th/>
|
|
1568
|
+
<th colspan="2" align="center" rowspan="1"> Bed
|
|
1569
|
+
use (days)</th>
|
|
1570
|
+
</tr>
|
|
1571
|
+
<tr>
|
|
1572
|
+
<td>Total</td>
|
|
1573
|
+
<td align="center">208/1224</td>
|
|
1574
|
+
<td align="center">244/1214</td>
|
|
1575
|
+
<td align="center">0.77 (0.52 to 1.13)</td>
|
|
1576
|
+
<td/>
|
|
1577
|
+
<td align="center">15.0</td>
|
|
1578
|
+
<td align="center">16.4</td>
|
|
1579
|
+
</tr>
|
|
1580
|
+
|
|
1581
|
+
</tbody>
|
|
1582
|
+
</table>
|
|
1583
|
+
<table-wrap-foot>
|
|
1584
|
+
<fn-group>
|
|
1585
|
+
<fn id="TF1-150">
|
|
1586
|
+
<p>Data not available for 1 trial.</p>
|
|
1587
|
+
</fn>
|
|
1588
|
+
<fn id="TF1-151">
|
|
1589
|
+
<p>P<0.05 (random effects model).</p>
|
|
1590
|
+
</fn>
|
|
1591
|
+
</fn-group>
|
|
1592
|
+
</table-wrap-foot>
|
|
1593
|
+
</table-wrap>
|
|
1594
|
+
</tbx:note>
|
|
1595
|
+
<tbx:tig>
|
|
1596
|
+
<tbx:term>Institutional care</tbx:term>
|
|
1597
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1598
|
+
</tbx:tig>
|
|
1599
|
+
</tbx:langSet>
|
|
1600
|
+
</tbx:termEntry>
|
|
1601
|
+
</term-sec>
|
|
1602
|
+
<term-sec>
|
|
1603
|
+
<tbx:termEntry id="iso_14155_2011_en_term_3.28">
|
|
1604
|
+
<tbx:langSet xml:lang="en">
|
|
1605
|
+
<tbx:definition>any instrument, apparatus, implement, machine, appliance,
|
|
1606
|
+
implant, software, material, or other similar or related article <list>
|
|
1607
|
+
<list-item>
|
|
1608
|
+
<label>a)</label>
|
|
1609
|
+
<p>intended by the manufacturer to be used, alone or in
|
|
1610
|
+
combination, for human beings for one or more of the
|
|
1611
|
+
specific purpose(s) of <list>
|
|
1612
|
+
<list-item>
|
|
1613
|
+
<label>1)</label>
|
|
1614
|
+
<p>diagnosis, prevention, monitoring, treatment or
|
|
1615
|
+
alleviation of disease,</p>
|
|
1616
|
+
</list-item>
|
|
1617
|
+
<list-item>
|
|
1618
|
+
<label>2)</label>
|
|
1619
|
+
<p>diagnosis, monitoring, treatment, alleviation of,
|
|
1620
|
+
or compensation for, an injury,</p>
|
|
1621
|
+
</list-item>
|
|
1622
|
+
<list-item>
|
|
1623
|
+
<label>3)</label>
|
|
1624
|
+
<p>investigation, replacement, modification, or
|
|
1625
|
+
support of the anatomy or of a physiological
|
|
1626
|
+
process,</p>
|
|
1627
|
+
</list-item>
|
|
1628
|
+
<list-item>
|
|
1629
|
+
<label>4)</label>
|
|
1630
|
+
<p>supporting or sustaining life,</p>
|
|
1631
|
+
</list-item>
|
|
1632
|
+
<list-item>
|
|
1633
|
+
<label>5)</label>
|
|
1634
|
+
<p>control of conception,</p>
|
|
1635
|
+
</list-item>
|
|
1636
|
+
<list-item>
|
|
1637
|
+
<label>6)</label>
|
|
1638
|
+
<p>disinfection of medical devices, and</p>
|
|
1639
|
+
</list-item>
|
|
1640
|
+
</list></p>
|
|
1641
|
+
</list-item>
|
|
1642
|
+
<list-item>
|
|
1643
|
+
<label>b)</label>
|
|
1644
|
+
<p>which does not achieve its primary intended action in or on
|
|
1645
|
+
the human body by pharmacological, immunological or
|
|
1646
|
+
metabolic means, but which may be assisted in its intended
|
|
1647
|
+
function by such means</p>
|
|
1648
|
+
</list-item>
|
|
1649
|
+
</list></tbx:definition>
|
|
1650
|
+
<tbx:note>The term “medical device” is usually defined by national
|
|
1651
|
+
regulations. For the purposes of this International Standard, this
|
|
1652
|
+
definition does not list “in vitro diagnostic medical devices”
|
|
1653
|
+
(see <std type="dated" std-id="urn:iso:std:iso:13485:ed-1:term:3.7"><std-ref>ISO 13485:2003</std-ref>, definition 3.7</std><sup><xref ref-type="bibr" rid="biblref_1">[1]</xref></sup>).</tbx:note>
|
|
1654
|
+
<tbx:tig>
|
|
1655
|
+
<tbx:term>medical device</tbx:term>
|
|
1656
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1657
|
+
</tbx:tig>
|
|
1658
|
+
</tbx:langSet>
|
|
1659
|
+
</tbx:termEntry>
|
|
1660
|
+
</term-sec>
|
|
1661
|
+
<term-sec>
|
|
1662
|
+
<tbx:termEntry id="iso_9000_2005_en_term_3.1.6">
|
|
1663
|
+
<tbx:langSet xml:lang="en">
|
|
1664
|
+
<tbx:definition>demonstrated ability to apply knowledge and
|
|
1665
|
+
skills</tbx:definition>
|
|
1666
|
+
<tbx:note>The concept of competence is defined in a generic sense in this
|
|
1667
|
+
International Standard. The word usage can be more specific in other ISO
|
|
1668
|
+
documents.</tbx:note>
|
|
1669
|
+
<tbx:tig>
|
|
1670
|
+
<tbx:term>competence</tbx:term>
|
|
1671
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1672
|
+
</tbx:tig>
|
|
1673
|
+
</tbx:langSet>
|
|
1674
|
+
</tbx:termEntry>
|
|
1675
|
+
</term-sec>
|
|
1676
|
+
<term-sec>
|
|
1677
|
+
<tbx:termEntry id="iso_9000_2005_en_term_3.9.9">
|
|
1678
|
+
<tbx:langSet xml:lang="en">
|
|
1679
|
+
<tbx:definition>person with the demonstrated personal attributes and
|
|
1680
|
+
<tbx:entailedTerm target="iso_9000_2005_en_term_3.1.6"
|
|
1681
|
+
>competence (3.1.6 and 3.9.14)</tbx:entailedTerm> to conduct an
|
|
1682
|
+
<tbx:entailedTerm>audit (3.9.1)</tbx:entailedTerm></tbx:definition>
|
|
1683
|
+
<tbx:note>The relevant personal attributes for an auditor are described in
|
|
1684
|
+
ISO 19011.</tbx:note>
|
|
1685
|
+
<tbx:tig>
|
|
1686
|
+
<tbx:term>auditor</tbx:term>
|
|
1687
|
+
<tbx:partOfSpeech value="noun"/>
|
|
1688
|
+
</tbx:tig>
|
|
1689
|
+
</tbx:langSet>
|
|
1690
|
+
</tbx:termEntry>
|
|
1691
|
+
</term-sec>
|
|
1692
|
+
</sec>
|
|
1693
|
+
</body>
|
|
1694
|
+
<back>
|
|
1695
|
+
<ref-list content-type="bibl" id="sec_bibl">
|
|
1696
|
+
<title>Bibliography</title>
|
|
1697
|
+
<ref content-type="standard" id="biblref_1">
|
|
1698
|
+
<label>[1]</label>
|
|
1699
|
+
<std type="undated" std-id="iso:std:iso:9999"><std-ref>ISO 9999</std-ref>,
|
|
1700
|
+
<title>Sample entry referenced in note</title></std>
|
|
1701
|
+
</ref>
|
|
1702
|
+
</ref-list>
|
|
1703
|
+
</back>
|
|
1704
|
+
</standard>
|