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,839 @@
|
|
|
1
|
+
<!-- ============================================================= -->
|
|
2
|
+
<!-- MODULE: Display Class Elements -->
|
|
3
|
+
<!-- VERSION: NISO 0.4 -->
|
|
4
|
+
<!-- DATE: January 2011 -->
|
|
5
|
+
<!-- -->
|
|
6
|
+
<!-- ============================================================= -->
|
|
7
|
+
|
|
8
|
+
<!-- ============================================================= -->
|
|
9
|
+
<!-- PUBLIC DOCUMENT TYPE DEFINITION -->
|
|
10
|
+
<!-- TYPICAL INVOCATION -->
|
|
11
|
+
<!--
|
|
12
|
+
"-//NLM//DTD JATS (Z39.96) Archiving and Interchange DTD Suite Display Class Elements v0.4 20110131//EN"
|
|
13
|
+
Delivered as file "JATS-display0.ent" -->
|
|
14
|
+
<!-- ============================================================= -->
|
|
15
|
+
|
|
16
|
+
<!-- ============================================================= -->
|
|
17
|
+
<!-- SYSTEM: Archiving and Interchange DTD Suite -->
|
|
18
|
+
<!-- -->
|
|
19
|
+
<!-- PURPOSE: Describes display-related elements such as -->
|
|
20
|
+
<!-- Figures, Graphics, Math, Chemical Structures, -->
|
|
21
|
+
<!-- Graphics, etc. -->
|
|
22
|
+
<!-- -->
|
|
23
|
+
<!-- CONTAINS: 1) Parameter Entities for attribute lists -->
|
|
24
|
+
<!-- 2) Parameter Entities for content models -->
|
|
25
|
+
<!-- 3) The display class elements (alpha order) -->
|
|
26
|
+
<!-- a) Array -->
|
|
27
|
+
<!-- b) Boxed text -->
|
|
28
|
+
<!-- c) Caption -->
|
|
29
|
+
<!-- d) Chemical Structure(s) -->
|
|
30
|
+
<!-- e) Figure(s) -->
|
|
31
|
+
<!-- f) Graphic -->
|
|
32
|
+
<!-- g) Inline Graphic -->
|
|
33
|
+
<!-- h) Media -->
|
|
34
|
+
<!-- i) Pre-formatted text -->
|
|
35
|
+
<!-- j) Supplementary Information -->
|
|
36
|
+
<!-- k) Table Group -->
|
|
37
|
+
<!-- l) Table Wrapper -->
|
|
38
|
+
<!-- m) Table (invoked module) -->
|
|
39
|
+
<!-- -->
|
|
40
|
+
<!-- CREATED FOR: -->
|
|
41
|
+
<!-- Digital archives and publishers who wish to -->
|
|
42
|
+
<!-- create a custom XML DTD for original markup of -->
|
|
43
|
+
<!-- journal literature, books, and related material, -->
|
|
44
|
+
<!-- or for archiving and transferring such material -->
|
|
45
|
+
<!-- between archives. -->
|
|
46
|
+
<!-- -->
|
|
47
|
+
<!-- This DTD is in the public domain. An organization -->
|
|
48
|
+
<!-- that wishes to create its own DTD from the suite -->
|
|
49
|
+
<!-- may do so without permission from NLM. -->
|
|
50
|
+
<!-- -->
|
|
51
|
+
<!-- The suite has been set up to be extended using a -->
|
|
52
|
+
<!-- new DTD file and a new DTD-specific customization -->
|
|
53
|
+
<!-- module to redefine the many Parameter Entities. -->
|
|
54
|
+
<!-- Do not modify the suite directly or redistribute -->
|
|
55
|
+
<!-- modified versions of the suite. -->
|
|
56
|
+
<!-- -->
|
|
57
|
+
<!-- In the interest of maintaining consistency and -->
|
|
58
|
+
<!-- clarity for potential users, NLM requests: -->
|
|
59
|
+
<!-- -->
|
|
60
|
+
<!-- 1. If you create a DTD from the Archiving and -->
|
|
61
|
+
<!-- Interchange DTD Suite and intend to stay -->
|
|
62
|
+
<!-- compatible with the suite, then please include -->
|
|
63
|
+
<!-- the following statement as a comment in all of -->
|
|
64
|
+
<!-- your DTD modules: -->
|
|
65
|
+
<!-- "Created from, and fully compatible with, -->
|
|
66
|
+
<!-- the NISO Z39.96 Journal Article Tag Suite -->
|
|
67
|
+
<!-- (JATS)." -->
|
|
68
|
+
<!-- -->
|
|
69
|
+
<!-- 2. If you alter one or more modules of the suite, -->
|
|
70
|
+
<!-- then please rename your version and all its -->
|
|
71
|
+
<!-- modules to avoid any confusion with the -->
|
|
72
|
+
<!-- original suite. Also, please include the -->
|
|
73
|
+
<!-- following statement as a comment in all your -->
|
|
74
|
+
<!-- DTD modules: -->
|
|
75
|
+
<!-- "Based in part on, but not fully compatible -->
|
|
76
|
+
<!-- with, the NISO Z39.96 Journal Article Tag -->
|
|
77
|
+
<!-- Suite." -->
|
|
78
|
+
<!-- -->
|
|
79
|
+
<!-- ORIGINAL CREATION DATE: -->
|
|
80
|
+
<!-- December 2002 -->
|
|
81
|
+
<!-- -->
|
|
82
|
+
<!-- CREATED BY: Jeff Beck (NCBI) -->
|
|
83
|
+
<!-- Deborah Lapeyre (Mulberry Technologies, Inc.) -->
|
|
84
|
+
<!-- Bruce Rosenblum (Inera Inc.) -->
|
|
85
|
+
<!-- B. Tommie Usdin (Mulberry Technologies, Inc.) -->
|
|
86
|
+
<!-- -->
|
|
87
|
+
<!-- NLM thanks the Harvard University Libraries, both -->
|
|
88
|
+
<!-- for proposing that a draft archiving NLM DTD for -->
|
|
89
|
+
<!-- life sciences journals be extended to accommodate -->
|
|
90
|
+
<!-- journals in all disciplines and for sponsoring -->
|
|
91
|
+
<!-- Bruce Rosenblum's collaboration with other DTD -->
|
|
92
|
+
<!-- authors in completing NLM Version 1.0. The -->
|
|
93
|
+
<!-- Andrew W. Mellon Foundation provided support for -->
|
|
94
|
+
<!-- these important contributions. -->
|
|
95
|
+
<!-- -->
|
|
96
|
+
<!-- Suggestions for refinements and enhancements to -->
|
|
97
|
+
<!-- the DTD suite should be sent in email to: -->
|
|
98
|
+
<!-- jats@ncbi.nlm.nih.gov -->
|
|
99
|
+
<!-- -->
|
|
100
|
+
<!-- ============================================================= -->
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
<!-- ============================================================= -->
|
|
104
|
+
<!-- DTD VERSION/CHANGE HISTORY -->
|
|
105
|
+
<!-- ============================================================= -->
|
|
106
|
+
<!--
|
|
107
|
+
|
|
108
|
+
Version Reason/Occasion (who) vx.x (yyyy-mm-dd)
|
|
109
|
+
|
|
110
|
+
=============================================================
|
|
111
|
+
Version 0.4 (DAL/BTU) v0.4 (2011-01-31)
|
|
112
|
+
|
|
113
|
+
This Tag Set is in the process of becoming a NISO standard.
|
|
114
|
+
The version numbers are starting over from 0.4", as a Trial
|
|
115
|
+
Use Draft, to be made into "Version 1.0" when the Tag Suite
|
|
116
|
+
becomes a NISO standard. Thus, NLM "Version 3.1 Draft" has
|
|
117
|
+
been changed to NISO "Version 0.4". No model, attribute, or
|
|
118
|
+
parameter entity changes were made as part of this renaming.
|
|
119
|
+
|
|
120
|
+
Details on NISO Tial Use Draft Version 0.4 are available at
|
|
121
|
+
http://jats.nlm.nih.gov/JATS-0.4.
|
|
122
|
+
|
|
123
|
+
7. Updated the public identifier to "v0.4 20110131//EN",
|
|
124
|
+
modified the formal public identifier to include "JATS (Z39.96)",
|
|
125
|
+
and the filename as delivered to include "JATS" and the
|
|
126
|
+
new version number "0".
|
|
127
|
+
|
|
128
|
+
=============================================================
|
|
129
|
+
Version 3.1 (DAL/BTU) v3.1 (2010-04-30)
|
|
130
|
+
|
|
131
|
+
Version 3.1 is fully compatible with Version 3.0, but the
|
|
132
|
+
following change could break some customizations.
|
|
133
|
+
|
|
134
|
+
Details on version 3.1 are available at
|
|
135
|
+
http://jats.nlm.nih.gov/3.1.
|
|
136
|
+
|
|
137
|
+
6. INLINE GRAPHIC - Uses new class %small-access.class; (no
|
|
138
|
+
model change)
|
|
139
|
+
|
|
140
|
+
5. POSITION ATTRIBUTE - Added the value "background"
|
|
141
|
+
|
|
142
|
+
4. @SPECIFIC-USE and @XML:LANG - Added the @specific-use and
|
|
143
|
+
@xml:lang to %display-atts;. If these attribute were
|
|
144
|
+
already part of the list, deleted them. These attributes were
|
|
145
|
+
added to:
|
|
146
|
+
- array (already there)
|
|
147
|
+
- boxed-text (already there)
|
|
148
|
+
- caption (already there)
|
|
149
|
+
- chem-struct (added @xml:lang, @specific-use already)
|
|
150
|
+
- chem-struct-wrap (added @xml:lang, @specific-use already)
|
|
151
|
+
- fig (already there)
|
|
152
|
+
- fig-group (added @xml:lang, @specific-use already there)
|
|
153
|
+
- graphic (added @xml:lang, @specific-use already there)
|
|
154
|
+
- inline-graphic (both)
|
|
155
|
+
- media (added @xml:lang, @specific -use already there)
|
|
156
|
+
- preformat (already there)
|
|
157
|
+
- supplementary-material (already there)
|
|
158
|
+
- table-wrap (already there)
|
|
159
|
+
- table-wrap-group (added @xml:lang, @specific -use
|
|
160
|
+
already there)
|
|
161
|
+
|
|
162
|
+
3. GRAPHIC MODEL - Removed the dependency which had both
|
|
163
|
+
<graphic> and <media> modeled with the same parameter
|
|
164
|
+
entity %graphic-model;. Created new PE for %media-model;
|
|
165
|
+
but set it (as the default) to %graphic-model; so that no
|
|
166
|
+
customization would break. NEW PE
|
|
167
|
+
|
|
168
|
+
2. Updated public identifier to "v3.1 20100830//EN"
|
|
169
|
+
|
|
170
|
+
=============================================================
|
|
171
|
+
Version 3.0 (DAL/BTU) v3.0 (2007-10-31)
|
|
172
|
+
|
|
173
|
+
Version 3.0 is the first non-backward-compatible release.
|
|
174
|
+
In addition to the usual incremental changes, some
|
|
175
|
+
elements and attributes have been renamed and/or remodeled
|
|
176
|
+
to better meet user needs and to increase tag set consistency.
|
|
177
|
+
All module change histories are available through the Tag Suite
|
|
178
|
+
web site at http://dtd.nlm.nih.gov.
|
|
179
|
+
|
|
180
|
+
Details on version 3.0 are available at
|
|
181
|
+
http://jats.nlm.nih.gov/3.0.
|
|
182
|
+
|
|
183
|
+
1. Updated public identifier to "v3.0 20080202//EN" -->
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
<!-- ============================================================= -->
|
|
187
|
+
<!-- ATTRIBUTES FOR MULTIPLE ELEMENTS -->
|
|
188
|
+
<!-- ============================================================= -->
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
<!-- DISPLAY ATTRIBUTES -->
|
|
192
|
+
<!-- Attributes used for several of the block
|
|
193
|
+
display elements -->
|
|
194
|
+
<!ENTITY % display-atts
|
|
195
|
+
"position (anchor | background | float | margin)
|
|
196
|
+
'float'
|
|
197
|
+
orientation
|
|
198
|
+
(portrait | landscape) 'portrait'
|
|
199
|
+
specific-use
|
|
200
|
+
CDATA #IMPLIED
|
|
201
|
+
xml:lang NMTOKEN #IMPLIED" >
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
<!-- ============================================================= -->
|
|
205
|
+
<!-- SPECIFIC ATTRIBUTE LISTS -->
|
|
206
|
+
<!-- ============================================================= -->
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
<!-- ARRAY ATTRIBUTES -->
|
|
210
|
+
<!-- Attributes for the <array> element -->
|
|
211
|
+
<!ENTITY % array-atts
|
|
212
|
+
"id ID #IMPLIED
|
|
213
|
+
content-type
|
|
214
|
+
CDATA #IMPLIED
|
|
215
|
+
specific-use
|
|
216
|
+
CDATA #IMPLIED
|
|
217
|
+
orientation
|
|
218
|
+
(portrait | landscape) 'portrait'
|
|
219
|
+
xml:lang NMTOKEN #IMPLIED" >
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
<!-- BOXED TEXT ATTRIBUTES -->
|
|
223
|
+
<!-- Attributes for the <boxed-text> element -->
|
|
224
|
+
<!ENTITY % boxed-text-atts
|
|
225
|
+
"id ID #IMPLIED
|
|
226
|
+
%display-atts;
|
|
227
|
+
content-type
|
|
228
|
+
CDATA #IMPLIED" >
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
<!-- CAPTION ATTRIBUTES -->
|
|
232
|
+
<!-- Attributes for the <caption> element -->
|
|
233
|
+
<!ENTITY % caption-atts
|
|
234
|
+
"specific-use
|
|
235
|
+
CDATA #IMPLIED
|
|
236
|
+
xml:lang NMTOKEN #IMPLIED" >
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
<!-- CHEMICAL STRUCTURE ATTRIBUTES -->
|
|
240
|
+
<!-- Attributes for <chem-struct>, a wrapper
|
|
241
|
+
around one (typically inline) chemical
|
|
242
|
+
structure, or one of several structures in
|
|
243
|
+
a <chem-struct-wrap> -->
|
|
244
|
+
<!ENTITY % chem-struct-atts
|
|
245
|
+
"id ID #IMPLIED
|
|
246
|
+
content-type
|
|
247
|
+
CDATA #IMPLIED
|
|
248
|
+
specific-use
|
|
249
|
+
CDATA #IMPLIED
|
|
250
|
+
xml:lang NMTOKEN #IMPLIED
|
|
251
|
+
%might-link-atts;" >
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
<!-- CHEMICAL STRUCTURE WRAPPER ATTRIBUTES -->
|
|
255
|
+
<!-- Attributes for the <chem-struct-wrap>
|
|
256
|
+
element, the outer wrapper around one or more
|
|
257
|
+
block-level chemical structures -->
|
|
258
|
+
<!ENTITY % chem-struct-wrap-atts
|
|
259
|
+
"id ID #IMPLIED
|
|
260
|
+
%display-atts;
|
|
261
|
+
content-type
|
|
262
|
+
CDATA #IMPLIED" >
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
<!-- FIGURE ATTRIBUTES -->
|
|
266
|
+
<!-- Attributes for Figures <fig> -->
|
|
267
|
+
<!ENTITY % fig-atts
|
|
268
|
+
"id ID #IMPLIED
|
|
269
|
+
%display-atts;
|
|
270
|
+
fig-type CDATA #IMPLIED" >
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
<!-- FIGURE GROUP ATTRIBUTES -->
|
|
274
|
+
<!-- Attributes for Figure Groups <fig-group> -->
|
|
275
|
+
<!ENTITY % fig-group-atts
|
|
276
|
+
"id ID #IMPLIED
|
|
277
|
+
%display-atts;
|
|
278
|
+
content-type
|
|
279
|
+
CDATA #IMPLIED " >
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
<!-- GRAPHIC ATTRIBUTES -->
|
|
283
|
+
<!-- Attributes for the <graphic> element -->
|
|
284
|
+
<!ENTITY % graphic-atts
|
|
285
|
+
"id ID #IMPLIED
|
|
286
|
+
%display-atts;
|
|
287
|
+
content-type
|
|
288
|
+
CDATA #IMPLIED
|
|
289
|
+
mime-subtype
|
|
290
|
+
CDATA #IMPLIED
|
|
291
|
+
mimetype CDATA #IMPLIED
|
|
292
|
+
%link-atts;" >
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
<!-- INLINE GRAPHIC ATTRIBUTES -->
|
|
296
|
+
<!-- Attributes for the <inline-graphic> element-->
|
|
297
|
+
<!ENTITY % inline-graphic-atts
|
|
298
|
+
"id ID #IMPLIED
|
|
299
|
+
content-type
|
|
300
|
+
CDATA #IMPLIED
|
|
301
|
+
specific-use
|
|
302
|
+
CDATA #IMPLIED
|
|
303
|
+
baseline-shift
|
|
304
|
+
CDATA #IMPLIED
|
|
305
|
+
mimetype CDATA #IMPLIED
|
|
306
|
+
mime-subtype
|
|
307
|
+
CDATA #IMPLIED
|
|
308
|
+
xml:lang NMTOKEN #IMPLIED
|
|
309
|
+
%link-atts;" >
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
<!-- MEDIA ATTRIBUTES -->
|
|
313
|
+
<!-- Attributes for the <media> element -->
|
|
314
|
+
<!ENTITY % media-atts
|
|
315
|
+
"id ID #IMPLIED
|
|
316
|
+
%display-atts;
|
|
317
|
+
content-type
|
|
318
|
+
CDATA #IMPLIED
|
|
319
|
+
mimetype CDATA #IMPLIED
|
|
320
|
+
mime-subtype
|
|
321
|
+
CDATA #IMPLIED
|
|
322
|
+
%link-atts;" >
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
<!-- PREFORMATTED TEXT ATTRIBUTES -->
|
|
326
|
+
<!-- Attributes for the <preformat> element -->
|
|
327
|
+
<!ENTITY % preformat-atts
|
|
328
|
+
"id ID #IMPLIED
|
|
329
|
+
%display-atts;
|
|
330
|
+
preformat-type
|
|
331
|
+
CDATA #IMPLIED
|
|
332
|
+
xml:space (default | preserve) #FIXED 'preserve'" >
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
<!-- SUPPLEMENTARY INFORMATION ATTRIBUTES -->
|
|
336
|
+
<!-- Attributes for Supplementary Material
|
|
337
|
+
<supplementary-material> -->
|
|
338
|
+
<!ENTITY % supplementary-material-atts
|
|
339
|
+
"id ID #IMPLIED
|
|
340
|
+
%display-atts;
|
|
341
|
+
content-type
|
|
342
|
+
CDATA #IMPLIED
|
|
343
|
+
mimetype CDATA #IMPLIED
|
|
344
|
+
mime-subtype
|
|
345
|
+
CDATA #IMPLIED
|
|
346
|
+
%might-link-atts;" >
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
<!-- ============================================================= -->
|
|
350
|
+
<!-- TABLE ATTRIBUTES -->
|
|
351
|
+
<!-- ============================================================= -->
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
<!-- TABLE WRAPPER ATTRIBUTES -->
|
|
355
|
+
<!-- Attributes to be added to the regular NLM
|
|
356
|
+
table attributes, for example, when the
|
|
357
|
+
Elsevier or OASIS Exchange table models are
|
|
358
|
+
used. -->
|
|
359
|
+
<!ENTITY % other-table-wrap-atts
|
|
360
|
+
"" >
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
<!-- TABLE GROUP ATTRIBUTES -->
|
|
364
|
+
<!-- Attributes for groups of <table-wrap>
|
|
365
|
+
elements <table-wrap-group> -->
|
|
366
|
+
<!ENTITY % table-wrap-group-atts
|
|
367
|
+
"id ID #IMPLIED
|
|
368
|
+
%display-atts;
|
|
369
|
+
content-type
|
|
370
|
+
CDATA #IMPLIED
|
|
371
|
+
%other-table-wrap-atts;" >
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
<!-- TABLE WRAPPER ATTRIBUTES -->
|
|
375
|
+
<!-- Attributes for the <table-wrap> element,
|
|
376
|
+
the container for <table>s -->
|
|
377
|
+
<!ENTITY % table-wrap-atts
|
|
378
|
+
"id ID #IMPLIED
|
|
379
|
+
%display-atts;
|
|
380
|
+
content-type
|
|
381
|
+
CDATA #IMPLIED
|
|
382
|
+
%other-table-wrap-atts;" >
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
<!-- ============================================================= -->
|
|
386
|
+
<!-- PARAMETER ENTITIES FOR CONTENT MODELS -->
|
|
387
|
+
<!-- ============================================================= -->
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
<!-- FIGURE-LIKE CONTENT MODEL -->
|
|
391
|
+
<!-- Content model for the Figure element and any
|
|
392
|
+
similarly structured elements -->
|
|
393
|
+
<!ENTITY % fig-model "((%id.class;)*, label?, (%caption.class;)*,
|
|
394
|
+
(%access.class; | %address-link.class;)*,
|
|
395
|
+
(%block-math.class; |
|
|
396
|
+
%chem-struct-wrap.class; |
|
|
397
|
+
%intable-para.class; |
|
|
398
|
+
%just-table.class; | %just-para.class; |
|
|
399
|
+
%list.class; | %simple-display.class;)*,
|
|
400
|
+
(%display-back-matter.class;)* )" >
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
<!-- ============================================================= -->
|
|
404
|
+
<!-- ARRAY ELEMENTS -->
|
|
405
|
+
<!-- ============================================================= -->
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
<!-- ARRAY CONTENT MODEL -->
|
|
409
|
+
<!-- Content model for the <array> element -->
|
|
410
|
+
<!ENTITY % array-model "(label?,
|
|
411
|
+
(%access.class; | %address-link.class;)*,
|
|
412
|
+
( (%just-base-display.class;)* |
|
|
413
|
+
%tbody.class; ),
|
|
414
|
+
(%display-back-matter.class;)* )" >
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
<!-- ARRAY (SIMPLE TABULAR ARRAY) -->
|
|
418
|
+
<!-- Used to define in-text table-like (columnar)
|
|
419
|
+
material. Uses the XHTML table body element
|
|
420
|
+
or a graphic to express the rows and columns.
|
|
421
|
+
These have neither labels nor captions,
|
|
422
|
+
arrays with labels and captions are table
|
|
423
|
+
wrappers.
|
|
424
|
+
Details at:
|
|
425
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=array
|
|
426
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=array
|
|
427
|
+
-->
|
|
428
|
+
<!ELEMENT array %array-model; >
|
|
429
|
+
<!ATTLIST array
|
|
430
|
+
%array-atts; >
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
<!-- ============================================================= -->
|
|
434
|
+
<!-- BOXED TEXT ELEMENTS -->
|
|
435
|
+
<!-- ============================================================= -->
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
<!-- BOXED TEXT MODEL -->
|
|
439
|
+
<!-- Complete content model for the boxed text
|
|
440
|
+
element <boxed-text> -->
|
|
441
|
+
<!ENTITY % boxed-text-model
|
|
442
|
+
"((%id.class;)*, sec-meta?, label?, caption?,
|
|
443
|
+
(%para-level;)*, (%sec-level;)*,
|
|
444
|
+
(%sec-back-matter-mix;)*,
|
|
445
|
+
(%display-back-matter.class;)* )" >
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
<!-- BOXED TEXT -->
|
|
449
|
+
<!-- Textual material that is outside the flow
|
|
450
|
+
of the narrative text, for example, a
|
|
451
|
+
sidebar, marginalia, text insert, caution or
|
|
452
|
+
note box, etc.
|
|
453
|
+
Details at:
|
|
454
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=boxed-text
|
|
455
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=boxed-text
|
|
456
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=boxed-text
|
|
457
|
+
-->
|
|
458
|
+
<!ELEMENT boxed-text %boxed-text-model; >
|
|
459
|
+
<!ATTLIST boxed-text
|
|
460
|
+
%boxed-text-atts; >
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
<!-- ============================================================= -->
|
|
464
|
+
<!-- CHEMICAL STRUCTURE ELEMENTS -->
|
|
465
|
+
<!-- ============================================================= -->
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
<!-- CHEMICAL STRUCTURE WRAPPER MODEL -->
|
|
469
|
+
<!-- Content model for the Chemical Structure
|
|
470
|
+
Wrapper <chem-struct-wrap> element -->
|
|
471
|
+
<!ENTITY % chem-struct-wrap-model
|
|
472
|
+
"((%id.class;)*, label?,
|
|
473
|
+
(%caption.class;)?,
|
|
474
|
+
(%access.class; | %address-link.class;)*,
|
|
475
|
+
(%inside-chem-struct-wrap.class;)+,
|
|
476
|
+
(%display-back-matter.class;)* )" >
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
<!-- CHEMICAL STRUCTURE WRAPPER -->
|
|
480
|
+
<!-- A chemical expression, reaction, equation,
|
|
481
|
+
etc. that is set apart within the text.
|
|
482
|
+
These may be numbered.
|
|
483
|
+
Details at:
|
|
484
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=chem-struct-wrap
|
|
485
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=chem-struct-wrap
|
|
486
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=chem-struct-wrap
|
|
487
|
+
-->
|
|
488
|
+
<!ELEMENT chem-struct-wrap
|
|
489
|
+
%chem-struct-wrap-model; >
|
|
490
|
+
<!ATTLIST chem-struct-wrap
|
|
491
|
+
%chem-struct-wrap-atts; >
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
<!-- CHEMICAL STRUCTURE ELEMENTS -->
|
|
495
|
+
<!-- Those elements that may mix with the data
|
|
496
|
+
characters inside a Chemical Structure
|
|
497
|
+
<chem-struct> -->
|
|
498
|
+
<!ENTITY % chem-struct-elements
|
|
499
|
+
"| %access.class; | %address-link.class; |
|
|
500
|
+
%break.class; |
|
|
501
|
+
%emphasis.class; | %label.class; |
|
|
502
|
+
%list.class; | %math.class; |
|
|
503
|
+
%phrase-content.class; |
|
|
504
|
+
%simple-display.class; |
|
|
505
|
+
%simple-link.class; | %subsup.class; " >
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
<!-- CHEMICAL STRUCTURE MODEL -->
|
|
509
|
+
<!-- A chemical expression, reaction, equation,
|
|
510
|
+
etc. that is set apart within the text
|
|
511
|
+
-->
|
|
512
|
+
<!ENTITY % chem-struct-model
|
|
513
|
+
"(#PCDATA %chem-struct-elements;)* " >
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
<!-- CHEMICAL STRUCTURE (DISPLAY) -->
|
|
517
|
+
<!-- A chemical expression, reaction, equation,
|
|
518
|
+
etc. that is set apart within the text.
|
|
519
|
+
Details at:
|
|
520
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=chem-struct
|
|
521
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=chem-struct
|
|
522
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=chem-struct
|
|
523
|
+
-->
|
|
524
|
+
<!ELEMENT chem-struct %chem-struct-model; >
|
|
525
|
+
<!ATTLIST chem-struct
|
|
526
|
+
%chem-struct-atts; >
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
<!-- ============================================================= -->
|
|
530
|
+
<!-- FIGURE ELEMENTS -->
|
|
531
|
+
<!-- ============================================================= -->
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
<!-- FIGURE GROUP MODEL -->
|
|
535
|
+
<!-- Content model for a Figure Group element -->
|
|
536
|
+
<!ENTITY % fig-group-model
|
|
537
|
+
"(label?, (%caption.class;)?,
|
|
538
|
+
(%access.class; | %address-link.class;)*,
|
|
539
|
+
(%fig-display.class; |
|
|
540
|
+
%just-base-display.class;)* )" >
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
<!-- FIGURE GROUP -->
|
|
544
|
+
<!-- Used for a group of figures that must be
|
|
545
|
+
displayed together
|
|
546
|
+
Details at:
|
|
547
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=fig-group
|
|
548
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=fig-group
|
|
549
|
+
-->
|
|
550
|
+
<!ELEMENT fig-group %fig-group-model; >
|
|
551
|
+
<!ATTLIST fig-group
|
|
552
|
+
%fig-group-atts; >
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
<!-- FIGURE -->
|
|
556
|
+
<!-- A block of graphic or textual material that
|
|
557
|
+
is identified as a "Figure", usually with
|
|
558
|
+
a caption and a label such as "Figure" or
|
|
559
|
+
"Figure 3.".The content of a Figure need not
|
|
560
|
+
be graphical in nature,.
|
|
561
|
+
Details at:
|
|
562
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=fig
|
|
563
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=fig
|
|
564
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=fig
|
|
565
|
+
-->
|
|
566
|
+
<!ELEMENT fig %fig-model; >
|
|
567
|
+
<!ATTLIST fig
|
|
568
|
+
%fig-atts; >
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
<!-- CAPTION BODY PARTS -->
|
|
572
|
+
<!-- Elements that may be included in the body of
|
|
573
|
+
the <caption> element -->
|
|
574
|
+
<!ENTITY % caption-body-parts
|
|
575
|
+
"(%just-para.class;)*" >
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
<!-- CAPTION MODEL -->
|
|
579
|
+
<!-- Content model for the <caption> element -->
|
|
580
|
+
<!ENTITY % caption-model
|
|
581
|
+
"(title?, %caption-body-parts;)" >
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
<!-- CAPTION OF A FIGURE, TABLE, ETC. -->
|
|
585
|
+
<!-- Wrapper element for the textual description
|
|
586
|
+
associated with a figure, table, etc. In
|
|
587
|
+
some source document captions, the first
|
|
588
|
+
sentence is set off from the rest as a title.
|
|
589
|
+
Details at:
|
|
590
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=caption
|
|
591
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=caption
|
|
592
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=caption
|
|
593
|
+
-->
|
|
594
|
+
<!ELEMENT caption %caption-model; >
|
|
595
|
+
<!ATTLIST caption
|
|
596
|
+
%caption-atts; >
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
<!--ELEM title Defined in %common.ent; -->
|
|
600
|
+
<!--ELEM p Defined in %common.ent; -->
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
<!-- ============================================================= -->
|
|
604
|
+
<!-- THE GRAPHIC AND MEDIA OBJECT ELEMENTS -->
|
|
605
|
+
<!-- ============================================================= -->
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
<!-- GRAPHIC MODEL -->
|
|
609
|
+
<!-- Content model for the <graphic> element -->
|
|
610
|
+
<!ENTITY % graphic-model
|
|
611
|
+
"(%access.class; | %address-link.class; |
|
|
612
|
+
%id.class; | %label.class; |
|
|
613
|
+
%caption.class; |
|
|
614
|
+
%display-back-matter.class;)* " >
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
<!-- GRAPHIC -->
|
|
618
|
+
<!-- An external file that holds a picture,
|
|
619
|
+
illustration, etc., usually as some form of
|
|
620
|
+
binary object. The "content" of the <graphic>
|
|
621
|
+
element is not the object, but merely
|
|
622
|
+
information about the object. The "href"
|
|
623
|
+
attribute points to the file containing
|
|
624
|
+
the object.
|
|
625
|
+
Details at:
|
|
626
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=graphic
|
|
627
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=graphic
|
|
628
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=graphic
|
|
629
|
+
-->
|
|
630
|
+
<!ELEMENT graphic %graphic-model; >
|
|
631
|
+
<!ATTLIST graphic
|
|
632
|
+
%graphic-atts; >
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
<!-- MEDIA MODEL -->
|
|
636
|
+
<!-- Content model for the <media> element -->
|
|
637
|
+
<!ENTITY % media-model "(%access.class; | %address-link.class; |
|
|
638
|
+
%id.class; | %label.class; |
|
|
639
|
+
%caption.class; |
|
|
640
|
+
%display-back-matter.class;)* " >
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
<!-- MEDIA OBJECT -->
|
|
644
|
+
<!-- An external file that holds a media object,
|
|
645
|
+
such as an animation or a movie. The
|
|
646
|
+
"content" of the <media> element is not the
|
|
647
|
+
object, but merely information about the
|
|
648
|
+
object. The "href" attribute points to the
|
|
649
|
+
file containing the object.
|
|
650
|
+
Details at:
|
|
651
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=media
|
|
652
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=media
|
|
653
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=media
|
|
654
|
+
-->
|
|
655
|
+
<!ELEMENT media %media-model; >
|
|
656
|
+
<!ATTLIST media
|
|
657
|
+
%media-atts; >
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
<!-- ============================================================= -->
|
|
661
|
+
<!-- INLINE GRAPHIC -->
|
|
662
|
+
<!-- ============================================================= -->
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
<!-- INLINE GRAPHIC MODEL -->
|
|
666
|
+
<!-- Content model for the <inline-graphic>
|
|
667
|
+
element -->
|
|
668
|
+
<!ENTITY % inline-graphic-model
|
|
669
|
+
"((%small-access.class;)?)" >
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
<!-- INLINE GRAPHIC -->
|
|
673
|
+
<!-- A small graphic such as an icon or a small
|
|
674
|
+
picture symbol that is displayed or set
|
|
675
|
+
in the same line as the text.
|
|
676
|
+
Details at:
|
|
677
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=inline-graphic
|
|
678
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=inline-graphic
|
|
679
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=inline-graphic
|
|
680
|
+
-->
|
|
681
|
+
<!ELEMENT inline-graphic
|
|
682
|
+
%inline-graphic-model; >
|
|
683
|
+
<!ATTLIST inline-graphic
|
|
684
|
+
%inline-graphic-atts; >
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
<!-- ============================================================= -->
|
|
688
|
+
<!-- PRESERVE THE WHITESPACE TEXT -->
|
|
689
|
+
<!-- ============================================================= -->
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
<!-- PREFORMATTED TEXT ELEMENTS -->
|
|
693
|
+
<!-- Elements that may be used, along with data
|
|
694
|
+
characters, inside the content model for the
|
|
695
|
+
<preformat> element -->
|
|
696
|
+
<!ENTITY % preformat-elements
|
|
697
|
+
"| %access.class; | %address-link.class; |
|
|
698
|
+
%display-back-matter.class; |
|
|
699
|
+
%emphasis.class; | %id.class; |
|
|
700
|
+
%phrase.class; | %subsup.class;" >
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
<!-- PREFORMAT MODEL -->
|
|
704
|
+
<!-- Content model for the <preformat> element -->
|
|
705
|
+
<!ENTITY % preformat-model
|
|
706
|
+
"(#PCDATA %preformat-elements;)*" >
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
<!-- PREFORMATTED TEXT -->
|
|
710
|
+
<!-- Used for preformatted text such as
|
|
711
|
+
computer code in which whitespace, such as
|
|
712
|
+
tabs, line feeds, and spaces, should be
|
|
713
|
+
preserved.
|
|
714
|
+
Details at:
|
|
715
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=preformat
|
|
716
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=preformat
|
|
717
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=preformat
|
|
718
|
+
-->
|
|
719
|
+
<!ELEMENT preformat %preformat-model; >
|
|
720
|
+
<!ATTLIST preformat
|
|
721
|
+
%preformat-atts; >
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
<!-- ============================================================= -->
|
|
725
|
+
<!-- SUPPLEMENTARY MATERIAL -->
|
|
726
|
+
<!-- ============================================================= -->
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
<!-- SUPPLEMENTARY MATERIAL MODEL -->
|
|
730
|
+
<!-- Content model for the
|
|
731
|
+
<supplementary-material> element -->
|
|
732
|
+
<!ENTITY % supplementary-material-model
|
|
733
|
+
"%fig-model;" >
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
<!-- SUPPLEMENTARY MATERIAL -->
|
|
737
|
+
<!-- Additional data files that contain
|
|
738
|
+
information directly supportive of the item,
|
|
739
|
+
for example, an audio clip, movie, database,
|
|
740
|
+
spreadsheet, applet, or other external file.
|
|
741
|
+
Details at:
|
|
742
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=supplementary-material
|
|
743
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=supplementary-material
|
|
744
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=supplementary-material
|
|
745
|
+
-->
|
|
746
|
+
<!ELEMENT supplementary-material
|
|
747
|
+
%supplementary-material-model; >
|
|
748
|
+
<!ATTLIST supplementary-material
|
|
749
|
+
%supplementary-material-atts; >
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
<!-- ============================================================= -->
|
|
753
|
+
<!-- TABLE ELEMENTS -->
|
|
754
|
+
<!-- ============================================================= -->
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
<!-- TABLE WRAPPER GROUP MODEL -->
|
|
758
|
+
<!-- Content model for the <table-wrap-group>
|
|
759
|
+
element -->
|
|
760
|
+
<!ENTITY % table-wrap-group-model
|
|
761
|
+
"(label?, caption?,
|
|
762
|
+
(%access.class; | %address-link.class;)*,
|
|
763
|
+
(%just-table.class;)+ )" >
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
<!-- TABLE WRAPPER GROUP -->
|
|
767
|
+
<!-- Used as a wrapper tag to contain a group of
|
|
768
|
+
tables that must be displayed together
|
|
769
|
+
Details at:
|
|
770
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=table-wrap-group
|
|
771
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=table-wrap-group
|
|
772
|
+
-->
|
|
773
|
+
<!ELEMENT table-wrap-group
|
|
774
|
+
%table-wrap-group-model; >
|
|
775
|
+
<!ATTLIST table-wrap-group
|
|
776
|
+
%table-wrap-group-atts; >
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
<!-- TABLE WRAPPER CONTENT MODEL -->
|
|
780
|
+
<!-- Content model for the container element that
|
|
781
|
+
surrounds the standard table models for row
|
|
782
|
+
and columns. -->
|
|
783
|
+
<!ENTITY % table-wrap-model
|
|
784
|
+
"((%id.class;)*, label?, (%caption.class;)?,
|
|
785
|
+
(%access.class; | %address-link.class;)*,
|
|
786
|
+
(%inside-table-wrap;)*,
|
|
787
|
+
(%table-foot.class; |
|
|
788
|
+
%display-back-matter.class;)* )" >
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
<!-- TABLE WRAPPER -->
|
|
792
|
+
<!-- Used to hold a complete table, that is, not
|
|
793
|
+
only the rows and columns that make up a
|
|
794
|
+
table, but also the table captions, list
|
|
795
|
+
of table footnotes, alternative descriptions
|
|
796
|
+
for accessibility, etc. Within the Table
|
|
797
|
+
Wrapper element, the row and column tags that
|
|
798
|
+
describe the table cells are defined by one
|
|
799
|
+
of the popular "standard" table models, for
|
|
800
|
+
example the XHTML table model, OASIS Exchange
|
|
801
|
+
(CALS) table model, of the Elsevier Science
|
|
802
|
+
Full Length Article table body <tblbody>
|
|
803
|
+
model, et al.)
|
|
804
|
+
Details at:
|
|
805
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=table-wrap
|
|
806
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=table-wrap
|
|
807
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=table-wrap
|
|
808
|
+
-->
|
|
809
|
+
<!ELEMENT table-wrap %table-wrap-model; >
|
|
810
|
+
<!ATTLIST table-wrap
|
|
811
|
+
%table-wrap-atts; >
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
<!-- TABLE WRAP FOOTER MODEL -->
|
|
815
|
+
<!-- Content model for the <table-wrap-foot>
|
|
816
|
+
element -->
|
|
817
|
+
<!ENTITY % table-wrap-foot-model
|
|
818
|
+
"(title?,
|
|
819
|
+
(%just-para.class; | %fn-group.class; |
|
|
820
|
+
%fn-link.class; |
|
|
821
|
+
%display-back-matter.class;)+ )" >
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
<!-- TABLE WRAP FOOTER -->
|
|
825
|
+
<!-- Wrapper element to hold a group of footnotes
|
|
826
|
+
or other notes or general paragraphs at the
|
|
827
|
+
end of a table. Not the same as the
|
|
828
|
+
Table Foot <tfoot>, which contains rows
|
|
829
|
+
and columns like the rest of the table.
|
|
830
|
+
Details at:
|
|
831
|
+
http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=table-wrap-foot
|
|
832
|
+
http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=table-wrap-foot
|
|
833
|
+
http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=table-wrap-foot
|
|
834
|
+
-->
|
|
835
|
+
<!ELEMENT table-wrap-foot
|
|
836
|
+
%table-wrap-foot-model; >
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
<!-- ================== End Display Class Module ================= -->
|