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.
Files changed (1180) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop_todo.yml +4 -8
  3. data/Gemfile +0 -1
  4. data/README.adoc +173 -7
  5. data/lib/sts/iso_sts/annex_type.rb +20 -0
  6. data/lib/sts/iso_sts/app.rb +42 -0
  7. data/lib/sts/iso_sts/app_group.rb +32 -0
  8. data/lib/sts/iso_sts/array.rb +34 -0
  9. data/lib/sts/iso_sts/back.rb +26 -0
  10. data/lib/sts/iso_sts/body.rb +50 -0
  11. data/lib/sts/iso_sts/bold.rb +44 -0
  12. data/lib/sts/iso_sts/break.rb +11 -0
  13. data/lib/sts/iso_sts/caption.rb +32 -0
  14. data/lib/sts/iso_sts/col.rb +31 -0
  15. data/lib/sts/iso_sts/colgroup.rb +34 -0
  16. data/lib/sts/iso_sts/comm_ref.rb +16 -0
  17. data/lib/sts/iso_sts/copyright_holder.rb +20 -0
  18. data/lib/sts/iso_sts/copyright_statement.rb +24 -0
  19. data/lib/sts/iso_sts/copyright_year.rb +15 -0
  20. data/lib/sts/iso_sts/def.rb +28 -0
  21. data/lib/sts/iso_sts/def_item.rb +24 -0
  22. data/lib/sts/iso_sts/def_list.rb +42 -0
  23. data/lib/sts/iso_sts/disp_formula.rb +40 -0
  24. data/lib/sts/iso_sts/doc_ref.rb +16 -0
  25. data/lib/sts/iso_sts/document_identification.rb +23 -0
  26. data/lib/sts/iso_sts/edition.rb +16 -0
  27. data/lib/sts/iso_sts/ext_link.rb +33 -0
  28. data/lib/sts/iso_sts/fig.rb +56 -0
  29. data/lib/sts/iso_sts/fn.rb +32 -0
  30. data/lib/sts/iso_sts/fn_group.rb +30 -0
  31. data/lib/sts/iso_sts/front.rb +21 -0
  32. data/lib/sts/iso_sts/graphic.rb +40 -0
  33. data/lib/sts/iso_sts/inline_formula.rb +30 -0
  34. data/lib/sts/iso_sts/iso_meta.rb +53 -0
  35. data/lib/sts/iso_sts/italic.rb +44 -0
  36. data/lib/sts/iso_sts/label.rb +36 -0
  37. data/lib/sts/iso_sts/language.rb +20 -0
  38. data/lib/sts/iso_sts/list.rb +36 -0
  39. data/lib/sts/iso_sts/list_item.rb +32 -0
  40. data/lib/sts/iso_sts/mathml2/math.rb +67 -0
  41. data/lib/sts/iso_sts/mathml2.rb +9 -0
  42. data/lib/sts/iso_sts/mixed_citation.rb +54 -0
  43. data/lib/sts/iso_sts/nat_meta.rb +53 -0
  44. data/lib/sts/iso_sts/non_normative_example.rb +26 -0
  45. data/lib/sts/iso_sts/non_normative_note.rb +28 -0
  46. data/lib/sts/iso_sts/page_count.rb +15 -0
  47. data/lib/sts/iso_sts/paragraph.rb +76 -0
  48. data/lib/sts/iso_sts/permissions.rb +23 -0
  49. data/lib/sts/iso_sts/preformat.rb +42 -0
  50. data/lib/sts/iso_sts/ref.rb +34 -0
  51. data/lib/sts/iso_sts/ref_list.rb +34 -0
  52. data/lib/sts/iso_sts/reg_meta.rb +57 -0
  53. data/lib/sts/iso_sts/release_date.rb +16 -0
  54. data/lib/sts/iso_sts/sec.rb +72 -0
  55. data/lib/sts/iso_sts/secretariat.rb +16 -0
  56. data/lib/sts/iso_sts/standard.rb +27 -0
  57. data/lib/sts/iso_sts/standard_cross_reference.rb +22 -0
  58. data/lib/sts/iso_sts/standard_identification.rb +31 -0
  59. data/lib/sts/iso_sts/std.rb +41 -0
  60. data/lib/sts/iso_sts/std_ref.rb +35 -0
  61. data/lib/sts/iso_sts/styled_content.rb +62 -0
  62. data/lib/sts/iso_sts/sub.rb +16 -0
  63. data/lib/sts/iso_sts/sup.rb +16 -0
  64. data/lib/sts/iso_sts/table.rb +46 -0
  65. data/lib/sts/iso_sts/table_wrap.rb +50 -0
  66. data/lib/sts/iso_sts/table_wrap_foot.rb +29 -0
  67. data/lib/sts/iso_sts/tbody.rb +30 -0
  68. data/lib/sts/iso_sts/td.rb +74 -0
  69. data/lib/sts/iso_sts/term.rb +46 -0
  70. data/lib/sts/iso_sts/term_sec.rb +48 -0
  71. data/lib/sts/iso_sts/tfoot.rb +30 -0
  72. data/lib/sts/iso_sts/th.rb +74 -0
  73. data/lib/sts/iso_sts/thead.rb +30 -0
  74. data/lib/sts/iso_sts/title.rb +30 -0
  75. data/lib/sts/iso_sts/title_compl.rb +22 -0
  76. data/lib/sts/iso_sts/title_full.rb +22 -0
  77. data/lib/sts/iso_sts/title_intro.rb +22 -0
  78. data/lib/sts/iso_sts/title_main.rb +22 -0
  79. data/lib/sts/iso_sts/title_wrap.rb +26 -0
  80. data/lib/sts/iso_sts/tr.rb +32 -0
  81. data/lib/sts/iso_sts/xref.rb +41 -0
  82. data/lib/sts/iso_sts.rb +103 -0
  83. data/lib/sts/niso_sts/abstract.rb +23 -0
  84. data/lib/sts/niso_sts/access_date.rb +20 -0
  85. data/lib/sts/niso_sts/accrediting_organization.rb +16 -0
  86. data/lib/sts/niso_sts/ack.rb +27 -0
  87. data/lib/sts/niso_sts/addr_line.rb +20 -0
  88. data/lib/sts/niso_sts/address.rb +29 -0
  89. data/lib/sts/niso_sts/aff.rb +51 -0
  90. data/lib/sts/niso_sts/aff_alternatives.rb +15 -0
  91. data/lib/sts/niso_sts/ali/ali.rb +10 -0
  92. data/lib/sts/niso_sts/ali/free_to_read.rb +25 -0
  93. data/lib/sts/niso_sts/ali/license_ref.rb +26 -0
  94. data/lib/sts/niso_sts/alt_text.rb +16 -0
  95. data/lib/sts/niso_sts/alt_title.rb +16 -0
  96. data/lib/sts/niso_sts/alternatives.rb +16 -0
  97. data/lib/sts/niso_sts/annotation.rb +26 -0
  98. data/lib/sts/niso_sts/anonymous.rb +11 -0
  99. data/lib/sts/niso_sts/article_title.rb +20 -0
  100. data/lib/sts/niso_sts/attrib.rb +16 -0
  101. data/lib/sts/niso_sts/attribution.rb +16 -0
  102. data/lib/sts/niso_sts/author_comment.rb +24 -0
  103. data/lib/sts/niso_sts/author_notes.rb +31 -0
  104. data/lib/sts/niso_sts/authorization.rb +16 -0
  105. data/lib/sts/niso_sts/award_group.rb +26 -0
  106. data/lib/sts/niso_sts/award_id.rb +20 -0
  107. data/lib/sts/niso_sts/bio.rb +24 -0
  108. data/lib/sts/niso_sts/boxed_text.rb +31 -0
  109. data/lib/sts/niso_sts/chapter_title.rb +20 -0
  110. data/lib/sts/niso_sts/chem_struct.rb +16 -0
  111. data/lib/sts/niso_sts/chem_struct_wrap.rb +32 -0
  112. data/lib/sts/niso_sts/citation_alternatives.rb +19 -0
  113. data/lib/sts/niso_sts/city.rb +20 -0
  114. data/lib/sts/niso_sts/collab.rb +28 -0
  115. data/lib/sts/niso_sts/collab_alternatives.rb +15 -0
  116. data/lib/sts/niso_sts/comm_ref_group.rb +15 -0
  117. data/lib/sts/niso_sts/comment.rb +16 -0
  118. data/lib/sts/niso_sts/compound_kwd.rb +25 -0
  119. data/lib/sts/niso_sts/compound_kwd_part.rb +24 -0
  120. data/lib/sts/niso_sts/conf_acronym.rb +16 -0
  121. data/lib/sts/niso_sts/conf_date.rb +20 -0
  122. data/lib/sts/niso_sts/conf_loc.rb +16 -0
  123. data/lib/sts/niso_sts/conf_name.rb +16 -0
  124. data/lib/sts/niso_sts/conf_num.rb +16 -0
  125. data/lib/sts/niso_sts/conf_sponsor.rb +16 -0
  126. data/lib/sts/niso_sts/conf_theme.rb +16 -0
  127. data/lib/sts/niso_sts/conference.rb +29 -0
  128. data/lib/sts/niso_sts/content_language.rb +20 -0
  129. data/lib/sts/niso_sts/contrib.rb +58 -0
  130. data/lib/sts/niso_sts/contrib_group.rb +22 -0
  131. data/lib/sts/niso_sts/contrib_id.rb +20 -0
  132. data/lib/sts/niso_sts/copyright_holder.rb +16 -0
  133. data/lib/sts/niso_sts/copyright_statement.rb +16 -0
  134. data/lib/sts/niso_sts/copyright_year.rb +16 -0
  135. data/lib/sts/niso_sts/corresp.rb +20 -0
  136. data/lib/sts/niso_sts/country.rb +20 -0
  137. data/lib/sts/niso_sts/counts.rb +25 -0
  138. data/lib/sts/niso_sts/data_title.rb +20 -0
  139. data/lib/sts/niso_sts/date.rb +25 -0
  140. data/lib/sts/niso_sts/date_in_citation.rb +25 -0
  141. data/lib/sts/niso_sts/day.rb +16 -0
  142. data/lib/sts/niso_sts/degrees.rb +20 -0
  143. data/lib/sts/niso_sts/disp_formula_group.rb +26 -0
  144. data/lib/sts/niso_sts/disp_quote.rb +27 -0
  145. data/lib/sts/niso_sts/doc_number.rb +16 -0
  146. data/lib/sts/niso_sts/doc_type.rb +16 -0
  147. data/lib/sts/niso_sts/editing_instruction.rb +24 -0
  148. data/lib/sts/niso_sts/edition.rb +16 -0
  149. data/lib/sts/niso_sts/element_citation.rb +103 -0
  150. data/lib/sts/niso_sts/elocation_id.rb +17 -0
  151. data/lib/sts/niso_sts/email.rb +20 -0
  152. data/lib/sts/niso_sts/equation_count.rb +14 -0
  153. data/lib/sts/niso_sts/era.rb +16 -0
  154. data/lib/sts/niso_sts/etal.rb +22 -0
  155. data/lib/sts/niso_sts/fax.rb +20 -0
  156. data/lib/sts/niso_sts/fig_count.rb +14 -0
  157. data/lib/sts/niso_sts/fig_group.rb +30 -0
  158. data/lib/sts/niso_sts/floats_group.rb +16 -0
  159. data/lib/sts/niso_sts/fpage.rb +20 -0
  160. data/lib/sts/niso_sts/funding_group.rb +22 -0
  161. data/lib/sts/niso_sts/funding_source.rb +26 -0
  162. data/lib/sts/niso_sts/funding_statement.rb +20 -0
  163. data/lib/sts/niso_sts/given_names.rb +20 -0
  164. data/lib/sts/niso_sts/glossary.rb +33 -0
  165. data/lib/sts/niso_sts/gov.rb +20 -0
  166. data/lib/sts/niso_sts/history.rb +18 -0
  167. data/lib/sts/niso_sts/hr.rb +11 -0
  168. data/lib/sts/niso_sts/ics.rb +15 -0
  169. data/lib/sts/niso_sts/ics_desc.rb +16 -0
  170. data/lib/sts/niso_sts/ics_wrap.rb +15 -0
  171. data/lib/sts/niso_sts/index_term.rb +32 -0
  172. data/lib/sts/niso_sts/index_term_range_end.rb +17 -0
  173. data/lib/sts/niso_sts/inline_graphic.rb +39 -0
  174. data/lib/sts/niso_sts/inline_supplementary_material.rb +38 -0
  175. data/lib/sts/niso_sts/institution.rb +20 -0
  176. data/lib/sts/niso_sts/institution_id.rb +18 -0
  177. data/lib/sts/niso_sts/institution_wrap.rb +17 -0
  178. data/lib/sts/niso_sts/intro.rb +16 -0
  179. data/lib/sts/niso_sts/is_proof.rb +15 -0
  180. data/lib/sts/niso_sts/isbn.rb +20 -0
  181. data/lib/sts/niso_sts/issn.rb +22 -0
  182. data/lib/sts/niso_sts/issn_l.rb +20 -0
  183. data/lib/sts/niso_sts/issue.rb +20 -0
  184. data/lib/sts/niso_sts/kwd.rb +26 -0
  185. data/lib/sts/niso_sts/kwd_group.rb +35 -0
  186. data/lib/sts/niso_sts/license.rb +19 -0
  187. data/lib/sts/niso_sts/license_p.rb +16 -0
  188. data/lib/sts/niso_sts/long_desc.rb +22 -0
  189. data/lib/sts/niso_sts/lpage.rb +20 -0
  190. data/lib/sts/niso_sts/main.rb +16 -0
  191. data/lib/sts/niso_sts/mathml.rb +69 -0
  192. data/lib/sts/niso_sts/media.rb +44 -0
  193. data/lib/sts/niso_sts/milestone_end.rb +26 -0
  194. data/lib/sts/niso_sts/milestone_start.rb +24 -0
  195. data/lib/sts/niso_sts/mixed_citation.rb +98 -5
  196. data/lib/sts/niso_sts/mml_content/apply.rb +47 -0
  197. data/lib/sts/niso_sts/mml_content/bind.rb +22 -0
  198. data/lib/sts/niso_sts/mml_content/calculus.rb +77 -0
  199. data/lib/sts/niso_sts/mml_content/ci.rb +22 -0
  200. data/lib/sts/niso_sts/mml_content/cn.rb +24 -0
  201. data/lib/sts/niso_sts/mml_content/constants.rb +114 -0
  202. data/lib/sts/niso_sts/mml_content/containers.rb +104 -0
  203. data/lib/sts/niso_sts/mml_content/csymbol.rb +24 -0
  204. data/lib/sts/niso_sts/mml_content/functional.rb +110 -0
  205. data/lib/sts/niso_sts/mml_content/linear_algebra.rb +98 -0
  206. data/lib/sts/niso_sts/mml_content/operators.rb +154 -0
  207. data/lib/sts/niso_sts/mml_content/qualifiers.rb +111 -0
  208. data/lib/sts/niso_sts/mml_content/relations.rb +84 -0
  209. data/lib/sts/niso_sts/mml_content/sets.rb +84 -0
  210. data/lib/sts/niso_sts/mml_content/statistics.rb +49 -0
  211. data/lib/sts/niso_sts/mml_content/trigonometry.rb +135 -0
  212. data/lib/sts/niso_sts/mml_content.rb +152 -0
  213. data/lib/sts/niso_sts/monospace.rb +22 -0
  214. data/lib/sts/niso_sts/month.rb +16 -0
  215. data/lib/sts/niso_sts/name.rb +25 -0
  216. data/lib/sts/niso_sts/name_alternatives.rb +15 -0
  217. data/lib/sts/niso_sts/nat_meta.rb +44 -0
  218. data/lib/sts/niso_sts/nested_kwd.rb +19 -0
  219. data/lib/sts/niso_sts/nlm_citation.rb +103 -0
  220. data/lib/sts/niso_sts/normative_example.rb +27 -0
  221. data/lib/sts/niso_sts/normative_note.rb +29 -0
  222. data/lib/sts/niso_sts/note.rb +29 -0
  223. data/lib/sts/niso_sts/notes.rb +31 -0
  224. data/lib/sts/niso_sts/notes_group.rb +26 -0
  225. data/lib/sts/niso_sts/on_behalf_of.rb +20 -0
  226. data/lib/sts/niso_sts/open_access.rb +16 -0
  227. data/lib/sts/niso_sts/originator.rb +16 -0
  228. data/lib/sts/niso_sts/overline.rb +22 -0
  229. data/lib/sts/niso_sts/page_range.rb +20 -0
  230. data/lib/sts/niso_sts/paragraph.rb +2 -2
  231. data/lib/sts/niso_sts/part_number.rb +16 -0
  232. data/lib/sts/niso_sts/part_of_speech.rb +16 -0
  233. data/lib/sts/niso_sts/patent.rb +20 -0
  234. data/lib/sts/niso_sts/person_group.rb +28 -0
  235. data/lib/sts/niso_sts/phone.rb +20 -0
  236. data/lib/sts/niso_sts/postal_code.rb +20 -0
  237. data/lib/sts/niso_sts/prefix.rb +20 -0
  238. data/lib/sts/niso_sts/preformat.rb +26 -0
  239. data/lib/sts/niso_sts/price.rb +16 -0
  240. data/lib/sts/niso_sts/principal_award_recipient.rb +16 -0
  241. data/lib/sts/niso_sts/principal_investigator.rb +16 -0
  242. data/lib/sts/niso_sts/private_char.rb +22 -0
  243. data/lib/sts/niso_sts/product.rb +20 -0
  244. data/lib/sts/niso_sts/proj_id.rb +16 -0
  245. data/lib/sts/niso_sts/pub_date.rb +29 -0
  246. data/lib/sts/niso_sts/pub_id.rb +19 -0
  247. data/lib/sts/niso_sts/publisher.rb +17 -0
  248. data/lib/sts/niso_sts/publisher_loc.rb +20 -0
  249. data/lib/sts/niso_sts/publisher_name.rb +20 -0
  250. data/lib/sts/niso_sts/rb.rb +22 -0
  251. data/lib/sts/niso_sts/ref_count.rb +14 -0
  252. data/lib/sts/niso_sts/reference.rb +6 -0
  253. data/lib/sts/niso_sts/reg_meta.rb +44 -0
  254. data/lib/sts/niso_sts/related_article.rb +24 -0
  255. data/lib/sts/niso_sts/related_object.rb +22 -0
  256. data/lib/sts/niso_sts/related_term.rb +18 -0
  257. data/lib/sts/niso_sts/release_date.rb +19 -0
  258. data/lib/sts/niso_sts/release_version.rb +16 -0
  259. data/lib/sts/niso_sts/release_version_id.rb +16 -0
  260. data/lib/sts/niso_sts/role.rb +22 -0
  261. data/lib/sts/niso_sts/roman.rb +22 -0
  262. data/lib/sts/niso_sts/rp.rb +18 -0
  263. data/lib/sts/niso_sts/rt.rb +22 -0
  264. data/lib/sts/niso_sts/ruby.rb +23 -0
  265. data/lib/sts/niso_sts/sans_serif.rb +22 -0
  266. data/lib/sts/niso_sts/sc.rb +22 -0
  267. data/lib/sts/niso_sts/sdo.rb +16 -0
  268. data/lib/sts/niso_sts/season.rb +16 -0
  269. data/lib/sts/niso_sts/secretariat.rb +16 -0
  270. data/lib/sts/niso_sts/see.rb +26 -0
  271. data/lib/sts/niso_sts/see_also.rb +26 -0
  272. data/lib/sts/niso_sts/self_uri.rb +22 -0
  273. data/lib/sts/niso_sts/series.rb +22 -0
  274. data/lib/sts/niso_sts/series_text.rb +22 -0
  275. data/lib/sts/niso_sts/series_title.rb +22 -0
  276. data/lib/sts/niso_sts/sig.rb +18 -0
  277. data/lib/sts/niso_sts/sig_block.rb +22 -0
  278. data/lib/sts/niso_sts/size.rb +18 -0
  279. data/lib/sts/niso_sts/source.rb +20 -0
  280. data/lib/sts/niso_sts/speaker.rb +16 -0
  281. data/lib/sts/niso_sts/speech.rb +25 -0
  282. data/lib/sts/niso_sts/state.rb +20 -0
  283. data/lib/sts/niso_sts/statement.rb +29 -0
  284. data/lib/sts/niso_sts/std_doc_meta.rb +44 -0
  285. data/lib/sts/niso_sts/std_org.rb +25 -0
  286. data/lib/sts/niso_sts/std_org_abbrev.rb +16 -0
  287. data/lib/sts/niso_sts/std_org_group.rb +15 -0
  288. data/lib/sts/niso_sts/std_org_loc.rb +16 -0
  289. data/lib/sts/niso_sts/std_org_name.rb +16 -0
  290. data/lib/sts/niso_sts/std_organization.rb +16 -0
  291. data/lib/sts/niso_sts/strike.rb +22 -0
  292. data/lib/sts/niso_sts/string_conf.rb +16 -0
  293. data/lib/sts/niso_sts/string_date.rb +16 -0
  294. data/lib/sts/niso_sts/string_name.rb +24 -0
  295. data/lib/sts/niso_sts/styled_content.rb +26 -0
  296. data/lib/sts/niso_sts/sub.rb +20 -0
  297. data/lib/sts/niso_sts/subj_group.rb +24 -0
  298. data/lib/sts/niso_sts/subject.rb +24 -0
  299. data/lib/sts/niso_sts/subtitle.rb +16 -0
  300. data/lib/sts/niso_sts/suffix.rb +20 -0
  301. data/lib/sts/niso_sts/sup.rb +20 -0
  302. data/lib/sts/niso_sts/suppl_number.rb +16 -0
  303. data/lib/sts/niso_sts/suppl_type.rb +16 -0
  304. data/lib/sts/niso_sts/suppl_version.rb +16 -0
  305. data/lib/sts/niso_sts/supplement.rb +24 -0
  306. data/lib/sts/niso_sts/supplementary_material.rb +46 -0
  307. data/lib/sts/niso_sts/surname.rb +20 -0
  308. data/lib/sts/niso_sts/table_count.rb +14 -0
  309. data/lib/sts/niso_sts/target.rb +24 -0
  310. data/lib/sts/niso_sts/term.rb +4 -2
  311. data/lib/sts/niso_sts/term_head.rb +16 -0
  312. data/lib/sts/niso_sts/term_source.rb +16 -0
  313. data/lib/sts/niso_sts/tex_math.rb +16 -0
  314. data/lib/sts/niso_sts/textual_form.rb +16 -0
  315. data/lib/sts/niso_sts/time_stamp.rb +20 -0
  316. data/lib/sts/niso_sts/trans_abstract.rb +23 -0
  317. data/lib/sts/niso_sts/trans_source.rb +20 -0
  318. data/lib/sts/niso_sts/trans_title.rb +20 -0
  319. data/lib/sts/niso_sts/trans_title_group.rb +15 -0
  320. data/lib/sts/niso_sts/underline.rb +22 -0
  321. data/lib/sts/niso_sts/unstructured_kwd_group.rb +24 -0
  322. data/lib/sts/niso_sts/uri.rb +20 -0
  323. data/lib/sts/niso_sts/urn.rb +16 -0
  324. data/lib/sts/niso_sts/verse_group.rb +29 -0
  325. data/lib/sts/niso_sts/verse_line.rb +16 -0
  326. data/lib/sts/niso_sts/version.rb +16 -0
  327. data/lib/sts/niso_sts/volume.rb +20 -0
  328. data/lib/sts/niso_sts/volume_id.rb +22 -0
  329. data/lib/sts/niso_sts/volume_issue_group.rb +16 -0
  330. data/lib/sts/niso_sts/volume_series.rb +16 -0
  331. data/lib/sts/niso_sts/word_count.rb +14 -0
  332. data/lib/sts/niso_sts/xi/fallback.rb +18 -0
  333. data/lib/sts/niso_sts/xi/include.rb +27 -0
  334. data/lib/sts/niso_sts/xi/xi.rb +10 -0
  335. data/lib/sts/niso_sts/year.rb +16 -0
  336. data/lib/sts/niso_sts.rb +233 -1
  337. data/lib/sts/tbx_iso_tml/colgroup.rb +30 -0
  338. data/lib/sts/tbx_iso_tml/table.rb +18 -0
  339. data/lib/sts/tbx_iso_tml/table_wrap.rb +8 -0
  340. data/lib/sts/tbx_iso_tml/table_wrap_foot.rb +12 -0
  341. data/lib/sts/tbx_iso_tml/td.rb +14 -4
  342. data/lib/sts/tbx_iso_tml/tfoot.rb +26 -0
  343. data/lib/sts/tbx_iso_tml/th.rb +12 -0
  344. data/lib/sts/tbx_iso_tml.rb +2 -0
  345. data/lib/sts/version.rb +1 -1
  346. data/lib/sts.rb +2 -0
  347. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/NISO-STS-extended-1-mathml3-elements.xsd +11447 -0
  348. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/NISO-STS-extended-1-mathml3.xsd +97 -0
  349. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/module-oasis.xsd +227 -0
  350. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/mathml3/mathml3-common.xsd +101 -0
  351. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/mathml3/mathml3-content.xsd +683 -0
  352. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/mathml3/mathml3-presentation.xsd +2092 -0
  353. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/mathml3/mathml3-strict-content.xsd +186 -0
  354. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/mathml3/mathml3.xsd +9 -0
  355. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/module-ali.xsd +46 -0
  356. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/module-tbx.xsd +494 -0
  357. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/module-xi.xsd +51 -0
  358. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/xlink.xsd +100 -0
  359. data/reference-docs/NISO-STS-extended-1-MathML3-XSD/standard-modules/xml.xsd +287 -0
  360. data/reference-docs/isosts-example/feature_doc.xml +502 -0
  361. data/reference-docs/isosts-v1/ISOSTS-classes.ent +277 -0
  362. data/reference-docs/isosts-v1/ISOSTS-iso-metadata.ent +765 -0
  363. data/reference-docs/isosts-v1/ISOSTS-mixes.ent +199 -0
  364. data/reference-docs/isosts-v1/ISOSTS-models.ent +869 -0
  365. data/reference-docs/isosts-v1/ISOSTS-modules.ent +207 -0
  366. data/reference-docs/isosts-v1/ISOSTS-nat-metadata.ent +169 -0
  367. data/reference-docs/isosts-v1/ISOSTS-reg-metadata.ent +156 -0
  368. data/reference-docs/isosts-v1/ISOSTS-tbx-namespace.ent +454 -0
  369. data/reference-docs/isosts-v1/ISOSTS-tbx-setup.ent +142 -0
  370. data/reference-docs/isosts-v1/ISOSTS.dtd +745 -0
  371. data/reference-docs/isosts-v1/JATS-XHTMLtablesetup0.ent +313 -0
  372. data/reference-docs/isosts-v1/JATS-articlemeta0.ent +1734 -0
  373. data/reference-docs/isosts-v1/JATS-backmatter0.ent +310 -0
  374. data/reference-docs/isosts-v1/JATS-chars0.ent +446 -0
  375. data/reference-docs/isosts-v1/JATS-common0.ent +3207 -0
  376. data/reference-docs/isosts-v1/JATS-default-classes0.ent +881 -0
  377. data/reference-docs/isosts-v1/JATS-default-mixes0.ent +317 -0
  378. data/reference-docs/isosts-v1/JATS-display0.ent +839 -0
  379. data/reference-docs/isosts-v1/JATS-format0.ent +544 -0
  380. data/reference-docs/isosts-v1/JATS-funding0.ent +440 -0
  381. data/reference-docs/isosts-v1/JATS-journalmeta0.ent +352 -0
  382. data/reference-docs/isosts-v1/JATS-journalpub-oasis-custom-classes0.ent +220 -0
  383. data/reference-docs/isosts-v1/JATS-journalpub-oasis-custom-modules0.ent +154 -0
  384. data/reference-docs/isosts-v1/JATS-journalpubcustom-classes0.ent +194 -0
  385. data/reference-docs/isosts-v1/JATS-journalpubcustom-mixes0.ent +148 -0
  386. data/reference-docs/isosts-v1/JATS-journalpubcustom-models0.ent +674 -0
  387. data/reference-docs/isosts-v1/JATS-journalpubcustom-modules0.ent +152 -0
  388. data/reference-docs/isosts-v1/JATS-journalpublishing-oasis0.dtd +721 -0
  389. data/reference-docs/isosts-v1/JATS-journalpublishing0.dtd +709 -0
  390. data/reference-docs/isosts-v1/JATS-link0.ent +341 -0
  391. data/reference-docs/isosts-v1/JATS-list0.ent +393 -0
  392. data/reference-docs/isosts-v1/JATS-math0.ent +307 -0
  393. data/reference-docs/isosts-v1/JATS-mathmlsetup0.ent +266 -0
  394. data/reference-docs/isosts-v1/JATS-modules0.ent +443 -0
  395. data/reference-docs/isosts-v1/JATS-nlmcitation0.ent +173 -0
  396. data/reference-docs/isosts-v1/JATS-notat0.ent +193 -0
  397. data/reference-docs/isosts-v1/JATS-oasis-tablesetup0.ent +290 -0
  398. data/reference-docs/isosts-v1/JATS-para0.ent +388 -0
  399. data/reference-docs/isosts-v1/JATS-phrase0.ent +415 -0
  400. data/reference-docs/isosts-v1/JATS-references0.ent +888 -0
  401. data/reference-docs/isosts-v1/JATS-related-object0.ent +159 -0
  402. data/reference-docs/isosts-v1/JATS-section0.ent +225 -0
  403. data/reference-docs/isosts-v1/JATS-xmlspecchars0.ent +312 -0
  404. data/reference-docs/isosts-v1/Smallsamples/Samp1.xml +68 -0
  405. data/reference-docs/isosts-v1/Smallsamples/Sample2.xml +41 -0
  406. data/reference-docs/isosts-v1/Smallsamples/meta-mixes_ok_1.xml +85 -0
  407. data/reference-docs/isosts-v1/Smallsamples/meta-mixes_ok_2.xml +109 -0
  408. data/reference-docs/isosts-v1/Smallsamples/nat-meta.xml +63 -0
  409. data/reference-docs/isosts-v1/Smallsamples/para-mixes_ok_1.xml +37 -0
  410. data/reference-docs/isosts-v1/Smallsamples/reg-meta.xml +65 -0
  411. data/reference-docs/isosts-v1/Smallsamples/tbx-highlight-elements.xml +54 -0
  412. data/reference-docs/isosts-v1/catalog-iso.xml +514 -0
  413. data/reference-docs/isosts-v1/catalog-jats-v0.xml +642 -0
  414. data/reference-docs/isosts-v1/catalog-test-v0.xml +642 -0
  415. data/reference-docs/isosts-v1/catalog.ent +191 -0
  416. data/reference-docs/isosts-v1/doc/ISOSTS-style.css +456 -0
  417. data/reference-docs/isosts-v1/doc/changes.html +146 -0
  418. data/reference-docs/isosts-v1/doc/el_reg-meta.html +276 -0
  419. data/reference-docs/isosts-v1/doc/el_release-version-id.html +48 -0
  420. data/reference-docs/isosts-v1/doc/graphics/3angle-down.gif +0 -0
  421. data/reference-docs/isosts-v1/doc/graphics/3angle-right.gif +0 -0
  422. data/reference-docs/isosts-v1/doc/graphics/ack.png +0 -0
  423. data/reference-docs/isosts-v1/doc/graphics/app-group.png +0 -0
  424. data/reference-docs/isosts-v1/doc/graphics/app.png +0 -0
  425. data/reference-docs/isosts-v1/doc/graphics/array.png +0 -0
  426. data/reference-docs/isosts-v1/doc/graphics/back.png +0 -0
  427. data/reference-docs/isosts-v1/doc/graphics/bio.png +0 -0
  428. data/reference-docs/isosts-v1/doc/graphics/block.gif +0 -0
  429. data/reference-docs/isosts-v1/doc/graphics/body.png +0 -0
  430. data/reference-docs/isosts-v1/doc/graphics/boxed-text.png +0 -0
  431. data/reference-docs/isosts-v1/doc/graphics/caption.png +0 -0
  432. data/reference-docs/isosts-v1/doc/graphics/cen-meta.png +0 -0
  433. data/reference-docs/isosts-v1/doc/graphics/chem-struct-wrap.png +0 -0
  434. data/reference-docs/isosts-v1/doc/graphics/custom-meta-group.png +0 -0
  435. data/reference-docs/isosts-v1/doc/graphics/def-list.png +0 -0
  436. data/reference-docs/isosts-v1/doc/graphics/disp-formula-group.png +0 -0
  437. data/reference-docs/isosts-v1/doc/graphics/disp-quote.png +0 -0
  438. data/reference-docs/isosts-v1/doc/graphics/doc-ident.png +0 -0
  439. data/reference-docs/isosts-v1/doc/graphics/fig-group.png +0 -0
  440. data/reference-docs/isosts-v1/doc/graphics/fig.png +0 -0
  441. data/reference-docs/isosts-v1/doc/graphics/fn-group.png +0 -0
  442. data/reference-docs/isosts-v1/doc/graphics/fn.png +0 -0
  443. data/reference-docs/isosts-v1/doc/graphics/front.png +0 -0
  444. data/reference-docs/isosts-v1/doc/graphics/glossary.png +0 -0
  445. data/reference-docs/isosts-v1/doc/graphics/identity-matrix.gif +0 -0
  446. data/reference-docs/isosts-v1/doc/graphics/integral.gif +0 -0
  447. data/reference-docs/isosts-v1/doc/graphics/iso-meta.png +0 -0
  448. data/reference-docs/isosts-v1/doc/graphics/list.png +0 -0
  449. data/reference-docs/isosts-v1/doc/graphics/nat-meta.png +0 -0
  450. data/reference-docs/isosts-v1/doc/graphics/nf-attributes.gif +0 -0
  451. data/reference-docs/isosts-v1/doc/graphics/nf-collapse.gif +0 -0
  452. data/reference-docs/isosts-v1/doc/graphics/nf-compound1.gif +0 -0
  453. data/reference-docs/isosts-v1/doc/graphics/nf-compound2.gif +0 -0
  454. data/reference-docs/isosts-v1/doc/graphics/nf-compound3.gif +0 -0
  455. data/reference-docs/isosts-v1/doc/graphics/nf-elem-mul.gif +0 -0
  456. data/reference-docs/isosts-v1/doc/graphics/nf-elem-opt.gif +0 -0
  457. data/reference-docs/isosts-v1/doc/graphics/nf-elem-plus.gif +0 -0
  458. data/reference-docs/isosts-v1/doc/graphics/nf-elem-req.gif +0 -0
  459. data/reference-docs/isosts-v1/doc/graphics/nf-elsewhere.gif +0 -0
  460. data/reference-docs/isosts-v1/doc/graphics/nf-exclusion.gif +0 -0
  461. data/reference-docs/isosts-v1/doc/graphics/nf-or-seq.gif +0 -0
  462. data/reference-docs/isosts-v1/doc/graphics/nf-pcdata.gif +0 -0
  463. data/reference-docs/isosts-v1/doc/graphics/nf-req-seq.gif +0 -0
  464. data/reference-docs/isosts-v1/doc/graphics/nf-root.gif +0 -0
  465. data/reference-docs/isosts-v1/doc/graphics/non-normative-example.png +0 -0
  466. data/reference-docs/isosts-v1/doc/graphics/non-normative-note.png +0 -0
  467. data/reference-docs/isosts-v1/doc/graphics/notes.png +0 -0
  468. data/reference-docs/isosts-v1/doc/graphics/permissions.png +0 -0
  469. data/reference-docs/isosts-v1/doc/graphics/ref-list.png +0 -0
  470. data/reference-docs/isosts-v1/doc/graphics/ref.png +0 -0
  471. data/reference-docs/isosts-v1/doc/graphics/reg-meta.png +0 -0
  472. data/reference-docs/isosts-v1/doc/graphics/sec.png +0 -0
  473. data/reference-docs/isosts-v1/doc/graphics/speech.png +0 -0
  474. data/reference-docs/isosts-v1/doc/graphics/stack.jpg +0 -0
  475. data/reference-docs/isosts-v1/doc/graphics/standard.png +0 -0
  476. data/reference-docs/isosts-v1/doc/graphics/statement.png +0 -0
  477. data/reference-docs/isosts-v1/doc/graphics/std-ident.png +0 -0
  478. data/reference-docs/isosts-v1/doc/graphics/std-xref.png +0 -0
  479. data/reference-docs/isosts-v1/doc/graphics/sub-part.png +0 -0
  480. data/reference-docs/isosts-v1/doc/graphics/supplementary-material.png +0 -0
  481. data/reference-docs/isosts-v1/doc/graphics/table-wrap-foot.png +0 -0
  482. data/reference-docs/isosts-v1/doc/graphics/table-wrap-group.png +0 -0
  483. data/reference-docs/isosts-v1/doc/graphics/table-wrap.png +0 -0
  484. data/reference-docs/isosts-v1/doc/graphics/tablesample1.jpg +0 -0
  485. data/reference-docs/isosts-v1/doc/graphics/term-display.png +0 -0
  486. data/reference-docs/isosts-v1/doc/graphics/term-sec.png +0 -0
  487. data/reference-docs/isosts-v1/doc/graphics/title-wrap.png +0 -0
  488. data/reference-docs/isosts-v1/doc/graphics/verse-group.png +0 -0
  489. data/reference-docs/isosts-v1/doc/graphics/x-maps-to-y.gif +0 -0
  490. data/reference-docs/isosts-v1/doc/index.html +422 -0
  491. data/reference-docs/isosts-v1/doc/n-2830.html +252 -0
  492. data/reference-docs/isosts-v1/doc/n-2ex0.html +124 -0
  493. data/reference-docs/isosts-v1/doc/n-2m60.html +75 -0
  494. data/reference-docs/isosts-v1/doc/n-2nf0.html +48 -0
  495. data/reference-docs/isosts-v1/doc/n-3320.html +328 -0
  496. data/reference-docs/isosts-v1/doc/n-37t0.html +54 -0
  497. data/reference-docs/isosts-v1/doc/n-3e60.html +64 -0
  498. data/reference-docs/isosts-v1/doc/n-3gx0.html +45 -0
  499. data/reference-docs/isosts-v1/doc/n-3kg0.html +60 -0
  500. data/reference-docs/isosts-v1/doc/n-3m40.html +226 -0
  501. data/reference-docs/isosts-v1/doc/n-3m50.html +68 -0
  502. data/reference-docs/isosts-v1/doc/n-3pc0.html +97 -0
  503. data/reference-docs/isosts-v1/doc/n-3un0.html +82 -0
  504. data/reference-docs/isosts-v1/doc/n-3xe0.html +76 -0
  505. data/reference-docs/isosts-v1/doc/n-3y30.html +70 -0
  506. data/reference-docs/isosts-v1/doc/n-3yd0.html +108 -0
  507. data/reference-docs/isosts-v1/doc/n-3zs0.html +73 -0
  508. data/reference-docs/isosts-v1/doc/n-44e0.html +205 -0
  509. data/reference-docs/isosts-v1/doc/n-45w0.html +140 -0
  510. data/reference-docs/isosts-v1/doc/n-4gf0.html +48 -0
  511. data/reference-docs/isosts-v1/doc/n-4h00.html +170 -0
  512. data/reference-docs/isosts-v1/doc/n-4iv0.html +203 -0
  513. data/reference-docs/isosts-v1/doc/n-4y70.html +165 -0
  514. data/reference-docs/isosts-v1/doc/n-4ys0.html +209 -0
  515. data/reference-docs/isosts-v1/doc/n-5240.html +354 -0
  516. data/reference-docs/isosts-v1/doc/n-55a0.html +166 -0
  517. data/reference-docs/isosts-v1/doc/n-56w0.html +258 -0
  518. data/reference-docs/isosts-v1/doc/n-5930.html +229 -0
  519. data/reference-docs/isosts-v1/doc/n-5ae0.html +165 -0
  520. data/reference-docs/isosts-v1/doc/n-5b40.html +205 -0
  521. data/reference-docs/isosts-v1/doc/n-5eg0.html +46 -0
  522. data/reference-docs/isosts-v1/doc/n-5h80.html +217 -0
  523. data/reference-docs/isosts-v1/doc/n-5j30.html +93 -0
  524. data/reference-docs/isosts-v1/doc/n-5qw0.html +65 -0
  525. data/reference-docs/isosts-v1/doc/n-5r30.html +112 -0
  526. data/reference-docs/isosts-v1/doc/n-5rx0.html +103 -0
  527. data/reference-docs/isosts-v1/doc/n-5sg0.html +54 -0
  528. data/reference-docs/isosts-v1/doc/n-5ud0.html +50 -0
  529. data/reference-docs/isosts-v1/doc/n-5v30.html +93 -0
  530. data/reference-docs/isosts-v1/doc/n-5z40.html +196 -0
  531. data/reference-docs/isosts-v1/doc/n-6420.html +162 -0
  532. data/reference-docs/isosts-v1/doc/n-6430.html +106 -0
  533. data/reference-docs/isosts-v1/doc/n-6ew0.html +243 -0
  534. data/reference-docs/isosts-v1/doc/n-6f60.html +108 -0
  535. data/reference-docs/isosts-v1/doc/n-6fe0.html +48 -0
  536. data/reference-docs/isosts-v1/doc/n-6g30.html +126 -0
  537. data/reference-docs/isosts-v1/doc/n-6g50.html +251 -0
  538. data/reference-docs/isosts-v1/doc/n-6g70.html +230 -0
  539. data/reference-docs/isosts-v1/doc/n-6q30.html +71 -0
  540. data/reference-docs/isosts-v1/doc/n-6t00.html +189 -0
  541. data/reference-docs/isosts-v1/doc/n-6uv0.html +359 -0
  542. data/reference-docs/isosts-v1/doc/n-6wn0.html +108 -0
  543. data/reference-docs/isosts-v1/doc/n-76s0.html +72 -0
  544. data/reference-docs/isosts-v1/doc/n-7760.html +46 -0
  545. data/reference-docs/isosts-v1/doc/n-7cf0.html +54 -0
  546. data/reference-docs/isosts-v1/doc/n-7cn0.html +49 -0
  547. data/reference-docs/isosts-v1/doc/n-7cw0.html +71 -0
  548. data/reference-docs/isosts-v1/doc/n-7ev0.html +138 -0
  549. data/reference-docs/isosts-v1/doc/n-7na0.html +235 -0
  550. data/reference-docs/isosts-v1/doc/n-7p60.html +54 -0
  551. data/reference-docs/isosts-v1/doc/n-7rg0.html +64 -0
  552. data/reference-docs/isosts-v1/doc/n-7s40.html +185 -0
  553. data/reference-docs/isosts-v1/doc/n-7v80.html +81 -0
  554. data/reference-docs/isosts-v1/doc/n-7zf0.html +46 -0
  555. data/reference-docs/isosts-v1/doc/n-83n0.html +94 -0
  556. data/reference-docs/isosts-v1/doc/n-83s0.html +98 -0
  557. data/reference-docs/isosts-v1/doc/n-8ag0.html +78 -0
  558. data/reference-docs/isosts-v1/doc/n-8b30.html +98 -0
  559. data/reference-docs/isosts-v1/doc/n-8i70.html +144 -0
  560. data/reference-docs/isosts-v1/doc/n-8jw0.html +129 -0
  561. data/reference-docs/isosts-v1/doc/n-8n40.html +111 -0
  562. data/reference-docs/isosts-v1/doc/n-8pn0.html +67 -0
  563. data/reference-docs/isosts-v1/doc/n-8tt0.html +142 -0
  564. data/reference-docs/isosts-v1/doc/n-8u70.html +271 -0
  565. data/reference-docs/isosts-v1/doc/n-9a40.html +101 -0
  566. data/reference-docs/isosts-v1/doc/n-9b00.html +72 -0
  567. data/reference-docs/isosts-v1/doc/n-9ba0.html +321 -0
  568. data/reference-docs/isosts-v1/doc/n-9e40.html +157 -0
  569. data/reference-docs/isosts-v1/doc/n-9h20.html +149 -0
  570. data/reference-docs/isosts-v1/doc/n-9j80.html +91 -0
  571. data/reference-docs/isosts-v1/doc/n-9r30.html +79 -0
  572. data/reference-docs/isosts-v1/doc/n-9sc0.html +66 -0
  573. data/reference-docs/isosts-v1/doc/n-9xf0.html +65 -0
  574. data/reference-docs/isosts-v1/doc/n-a4g0.html +61 -0
  575. data/reference-docs/isosts-v1/doc/n-a5d0.html +88 -0
  576. data/reference-docs/isosts-v1/doc/n-aht0.html +264 -0
  577. data/reference-docs/isosts-v1/doc/n-aia0.html +236 -0
  578. data/reference-docs/isosts-v1/doc/n-amu0.html +220 -0
  579. data/reference-docs/isosts-v1/doc/n-apg0.html +62 -0
  580. data/reference-docs/isosts-v1/doc/n-ard0.html +178 -0
  581. data/reference-docs/isosts-v1/doc/n-asw0.html +205 -0
  582. data/reference-docs/isosts-v1/doc/n-ax50.html +127 -0
  583. data/reference-docs/isosts-v1/doc/n-bbg0.html +64 -0
  584. data/reference-docs/isosts-v1/doc/n-bc60.html +63 -0
  585. data/reference-docs/isosts-v1/doc/n-bie0.html +48 -0
  586. data/reference-docs/isosts-v1/doc/n-bjx0.html +121 -0
  587. data/reference-docs/isosts-v1/doc/n-bpc0.html +99 -0
  588. data/reference-docs/isosts-v1/doc/n-bu20.html +277 -0
  589. data/reference-docs/isosts-v1/doc/n-bve0.html +45 -0
  590. data/reference-docs/isosts-v1/doc/n-bvf0.html +50 -0
  591. data/reference-docs/isosts-v1/doc/n-bz80.html +101 -0
  592. data/reference-docs/isosts-v1/doc/n-c000.html +23 -0
  593. data/reference-docs/isosts-v1/doc/n-c500.html +397 -0
  594. data/reference-docs/isosts-v1/doc/n-c6d0.html +48 -0
  595. data/reference-docs/isosts-v1/doc/n-c6v0.html +226 -0
  596. data/reference-docs/isosts-v1/doc/n-c9x0.html +214 -0
  597. data/reference-docs/isosts-v1/doc/n-cdf0.html +48 -0
  598. data/reference-docs/isosts-v1/doc/n-cie0.html +59 -0
  599. data/reference-docs/isosts-v1/doc/n-cj60.html +68 -0
  600. data/reference-docs/isosts-v1/doc/n-cn80.html +159 -0
  601. data/reference-docs/isosts-v1/doc/n-cvd0.html +166 -0
  602. data/reference-docs/isosts-v1/doc/n-cvn0.html +128 -0
  603. data/reference-docs/isosts-v1/doc/n-d2t0.html +78 -0
  604. data/reference-docs/isosts-v1/doc/n-d5g0.html +56 -0
  605. data/reference-docs/isosts-v1/doc/n-d750.html +116 -0
  606. data/reference-docs/isosts-v1/doc/n-d950.html +45 -0
  607. data/reference-docs/isosts-v1/doc/n-d9m0.html +692 -0
  608. data/reference-docs/isosts-v1/doc/n-des0.html +191 -0
  609. data/reference-docs/isosts-v1/doc/n-dg20.html +256 -0
  610. data/reference-docs/isosts-v1/doc/n-dpe0.html +56 -0
  611. data/reference-docs/isosts-v1/doc/n-dsn0.html +56 -0
  612. data/reference-docs/isosts-v1/doc/n-du60.html +97 -0
  613. data/reference-docs/isosts-v1/doc/n-dwx0.html +91 -0
  614. data/reference-docs/isosts-v1/doc/n-dzv0.html +94 -0
  615. data/reference-docs/isosts-v1/doc/n-e8g0.html +48 -0
  616. data/reference-docs/isosts-v1/doc/n-edd0.html +48 -0
  617. data/reference-docs/isosts-v1/doc/n-edg0.html +58 -0
  618. data/reference-docs/isosts-v1/doc/n-efg0.html +78 -0
  619. data/reference-docs/isosts-v1/doc/n-egd0.html +60 -0
  620. data/reference-docs/isosts-v1/doc/n-ejg0.html +49 -0
  621. data/reference-docs/isosts-v1/doc/n-eme0.html +73 -0
  622. data/reference-docs/isosts-v1/doc/n-en60.html +95 -0
  623. data/reference-docs/isosts-v1/doc/n-epf0.html +72 -0
  624. data/reference-docs/isosts-v1/doc/n-eqe0.html +53 -0
  625. data/reference-docs/isosts-v1/doc/n-eqv0.html +207 -0
  626. data/reference-docs/isosts-v1/doc/n-f6e0.html +67 -0
  627. data/reference-docs/isosts-v1/doc/n-f900.html +170 -0
  628. data/reference-docs/isosts-v1/doc/n-f980.html +170 -0
  629. data/reference-docs/isosts-v1/doc/n-fi60.html +55 -0
  630. data/reference-docs/isosts-v1/doc/n-fkn0.html +60 -0
  631. data/reference-docs/isosts-v1/doc/n-fp40.html +141 -0
  632. data/reference-docs/isosts-v1/doc/n-fp80.html +83 -0
  633. data/reference-docs/isosts-v1/doc/n-fsa0.html +77 -0
  634. data/reference-docs/isosts-v1/doc/n-ft30.html +159 -0
  635. data/reference-docs/isosts-v1/doc/n-ftc0.html +136 -0
  636. data/reference-docs/isosts-v1/doc/n-fvx0.html +170 -0
  637. data/reference-docs/isosts-v1/doc/n-fw80.html +109 -0
  638. data/reference-docs/isosts-v1/doc/n-g3a0.html +63 -0
  639. data/reference-docs/isosts-v1/doc/n-g3e0.html +108 -0
  640. data/reference-docs/isosts-v1/doc/n-g7u0.html +206 -0
  641. data/reference-docs/isosts-v1/doc/n-g7v0.html +110 -0
  642. data/reference-docs/isosts-v1/doc/n-g8w0.html +305 -0
  643. data/reference-docs/isosts-v1/doc/n-gef0.html +54 -0
  644. data/reference-docs/isosts-v1/doc/n-gfx0.html +62 -0
  645. data/reference-docs/isosts-v1/doc/n-ghg0.html +48 -0
  646. data/reference-docs/isosts-v1/doc/n-gj00.html +198 -0
  647. data/reference-docs/isosts-v1/doc/n-gk20.html +143 -0
  648. data/reference-docs/isosts-v1/doc/n-gk30.html +208 -0
  649. data/reference-docs/isosts-v1/doc/n-gqn0.html +54 -0
  650. data/reference-docs/isosts-v1/doc/n-gxx0.html +126 -0
  651. data/reference-docs/isosts-v1/doc/n-h5e0.html +113 -0
  652. data/reference-docs/isosts-v1/doc/n-h860.html +62 -0
  653. data/reference-docs/isosts-v1/doc/n-hcg0.html +61 -0
  654. data/reference-docs/isosts-v1/doc/n-he00.html +104 -0
  655. data/reference-docs/isosts-v1/doc/n-hka0.html +160 -0
  656. data/reference-docs/isosts-v1/doc/n-hkf0.html +123 -0
  657. data/reference-docs/isosts-v1/doc/n-hqc0.html +300 -0
  658. data/reference-docs/isosts-v1/doc/n-hqf0.html +143 -0
  659. data/reference-docs/isosts-v1/doc/n-hqx0.html +123 -0
  660. data/reference-docs/isosts-v1/doc/n-hu40.html +155 -0
  661. data/reference-docs/isosts-v1/doc/n-hz60.html +46 -0
  662. data/reference-docs/isosts-v1/doc/n-i640.html +99 -0
  663. data/reference-docs/isosts-v1/doc/n-i6u0.html +497 -0
  664. data/reference-docs/isosts-v1/doc/n-ic50.html +134 -0
  665. data/reference-docs/isosts-v1/doc/n-id60.html +49 -0
  666. data/reference-docs/isosts-v1/doc/n-ide0.html +48 -0
  667. data/reference-docs/isosts-v1/doc/n-ig60.html +53 -0
  668. data/reference-docs/isosts-v1/doc/n-iha0.html +43 -0
  669. data/reference-docs/isosts-v1/doc/n-ihx0.html +103 -0
  670. data/reference-docs/isosts-v1/doc/n-iic0.html +156 -0
  671. data/reference-docs/isosts-v1/doc/n-iix0.html +62 -0
  672. data/reference-docs/isosts-v1/doc/n-inf0.html +48 -0
  673. data/reference-docs/isosts-v1/doc/n-isu0.html +220 -0
  674. data/reference-docs/isosts-v1/doc/n-itx0.html +209 -0
  675. data/reference-docs/isosts-v1/doc/n-iz00.html +116 -0
  676. data/reference-docs/isosts-v1/doc/n-j2r0.html +1135 -0
  677. data/reference-docs/isosts-v1/doc/n-j5t0.html +254 -0
  678. data/reference-docs/isosts-v1/doc/n-j660.html +60 -0
  679. data/reference-docs/isosts-v1/doc/n-j6d0.html +48 -0
  680. data/reference-docs/isosts-v1/doc/n-j6g0.html +48 -0
  681. data/reference-docs/isosts-v1/doc/n-ja60.html +54 -0
  682. data/reference-docs/isosts-v1/doc/n-je30.html +127 -0
  683. data/reference-docs/isosts-v1/doc/n-jeg0.html +49 -0
  684. data/reference-docs/isosts-v1/doc/n-jmf0.html +48 -0
  685. data/reference-docs/isosts-v1/doc/n-jnu0.html +49 -0
  686. data/reference-docs/isosts-v1/doc/n-jpt0.html +353 -0
  687. data/reference-docs/isosts-v1/doc/n-jr40.html +107 -0
  688. data/reference-docs/isosts-v1/doc/n-k3w0.html +114 -0
  689. data/reference-docs/isosts-v1/doc/n-k480.html +178 -0
  690. data/reference-docs/isosts-v1/doc/n-k560.html +63 -0
  691. data/reference-docs/isosts-v1/doc/n-k6n0.html +158 -0
  692. data/reference-docs/isosts-v1/doc/n-k7e0.html +124 -0
  693. data/reference-docs/isosts-v1/doc/n-k850.html +255 -0
  694. data/reference-docs/isosts-v1/doc/n-k860.html +48 -0
  695. data/reference-docs/isosts-v1/doc/n-kbg0.html +54 -0
  696. data/reference-docs/isosts-v1/doc/n-kbw0.html +167 -0
  697. data/reference-docs/isosts-v1/doc/n-kds0.html +223 -0
  698. data/reference-docs/isosts-v1/doc/n-kft0.html +354 -0
  699. data/reference-docs/isosts-v1/doc/n-kkf0.html +48 -0
  700. data/reference-docs/isosts-v1/doc/n-kr00.html +101 -0
  701. data/reference-docs/isosts-v1/doc/n-kse0.html +125 -0
  702. data/reference-docs/isosts-v1/doc/n-ktx0.html +90 -0
  703. data/reference-docs/isosts-v1/doc/n-m7n0.html +69 -0
  704. data/reference-docs/isosts-v1/doc/n-m9n0.html +75 -0
  705. data/reference-docs/isosts-v1/doc/n-mbd0.html +215 -0
  706. data/reference-docs/isosts-v1/doc/n-mce0.html +70 -0
  707. data/reference-docs/isosts-v1/doc/n-mfa0.html +44 -0
  708. data/reference-docs/isosts-v1/doc/n-mgg0.html +136 -0
  709. data/reference-docs/isosts-v1/doc/n-mhn0.html +173 -0
  710. data/reference-docs/isosts-v1/doc/n-mid0.html +26 -0
  711. data/reference-docs/isosts-v1/doc/n-mkg0.html +85 -0
  712. data/reference-docs/isosts-v1/doc/n-mkt0.html +69 -0
  713. data/reference-docs/isosts-v1/doc/n-msf0.html +93 -0
  714. data/reference-docs/isosts-v1/doc/n-muf0.html +63 -0
  715. data/reference-docs/isosts-v1/doc/n-mx70.html +139 -0
  716. data/reference-docs/isosts-v1/doc/n-n2n0.html +56 -0
  717. data/reference-docs/isosts-v1/doc/n-n4f0.html +95 -0
  718. data/reference-docs/isosts-v1/doc/n-n7s0.html +199 -0
  719. data/reference-docs/isosts-v1/doc/n-n8u0.html +126 -0
  720. data/reference-docs/isosts-v1/doc/n-naa0.html +84 -0
  721. data/reference-docs/isosts-v1/doc/n-nf00.html +240 -0
  722. data/reference-docs/isosts-v1/doc/n-ngx0.html +206 -0
  723. data/reference-docs/isosts-v1/doc/n-nk40.html +66 -0
  724. data/reference-docs/isosts-v1/doc/n-nmt0.html +229 -0
  725. data/reference-docs/isosts-v1/doc/n-nt80.html +257 -0
  726. data/reference-docs/isosts-v1/doc/n-ntn0.html +71 -0
  727. data/reference-docs/isosts-v1/doc/n-ntu0.html +60 -0
  728. data/reference-docs/isosts-v1/doc/n-nx80.html +117 -0
  729. data/reference-docs/isosts-v1/doc/n-nye0.html +169 -0
  730. data/reference-docs/isosts-v1/doc/n-nyw0.html +66 -0
  731. data/reference-docs/isosts-v1/doc/n-p6c0.html +227 -0
  732. data/reference-docs/isosts-v1/doc/n-pau0.html +259 -0
  733. data/reference-docs/isosts-v1/doc/n-pcd0.html +53 -0
  734. data/reference-docs/isosts-v1/doc/n-pd80.html +136 -0
  735. data/reference-docs/isosts-v1/doc/n-pfv0.html +177 -0
  736. data/reference-docs/isosts-v1/doc/n-ph30.html +99 -0
  737. data/reference-docs/isosts-v1/doc/n-pr70.html +133 -0
  738. data/reference-docs/isosts-v1/doc/n-pud0.html +54 -0
  739. data/reference-docs/isosts-v1/doc/n-pux0.html +103 -0
  740. data/reference-docs/isosts-v1/doc/n-pv50.html +231 -0
  741. data/reference-docs/isosts-v1/doc/n-pv70.html +355 -0
  742. data/reference-docs/isosts-v1/doc/n-pwf0.html +62 -0
  743. data/reference-docs/isosts-v1/doc/n-px40.html +177 -0
  744. data/reference-docs/isosts-v1/doc/n-pxt0.html +125 -0
  745. data/reference-docs/isosts-v1/doc/n-pz20.html +499 -0
  746. data/reference-docs/isosts-v1/doc/n-pzg0.html +48 -0
  747. data/reference-docs/isosts-v1/doc/n-q3g0.html +48 -0
  748. data/reference-docs/isosts-v1/doc/n-q4a0.html +100 -0
  749. data/reference-docs/isosts-v1/doc/n-qc70.html +270 -0
  750. data/reference-docs/isosts-v1/doc/n-qd40.html +361 -0
  751. data/reference-docs/isosts-v1/doc/n-qdf0.html +58 -0
  752. data/reference-docs/isosts-v1/doc/n-qe50.html +162 -0
  753. data/reference-docs/isosts-v1/doc/n-qf50.html +101 -0
  754. data/reference-docs/isosts-v1/doc/n-qr20.html +89 -0
  755. data/reference-docs/isosts-v1/doc/n-qv30.html +93 -0
  756. data/reference-docs/isosts-v1/doc/n-qxe0.html +81 -0
  757. data/reference-docs/isosts-v1/doc/n-qzs0.html +102 -0
  758. data/reference-docs/isosts-v1/doc/n-r650.html +79 -0
  759. data/reference-docs/isosts-v1/doc/n-r7e0.html +156 -0
  760. data/reference-docs/isosts-v1/doc/n-rd50.html +522 -0
  761. data/reference-docs/isosts-v1/doc/n-rf70.html +140 -0
  762. data/reference-docs/isosts-v1/doc/n-riw0.html +114 -0
  763. data/reference-docs/isosts-v1/doc/n-rj20.html +183 -0
  764. data/reference-docs/isosts-v1/doc/n-rkv0.html +338 -0
  765. data/reference-docs/isosts-v1/doc/n-rm50.html +81 -0
  766. data/reference-docs/isosts-v1/doc/n-rn30.html +186 -0
  767. data/reference-docs/isosts-v1/doc/n-rrf0.html +54 -0
  768. data/reference-docs/isosts-v1/doc/n-s280.html +69 -0
  769. data/reference-docs/isosts-v1/doc/n-s6f0.html +47 -0
  770. data/reference-docs/isosts-v1/doc/n-s9w0.html +196 -0
  771. data/reference-docs/isosts-v1/doc/n-sb60.html +71 -0
  772. data/reference-docs/isosts-v1/doc/n-sbn0.html +80 -0
  773. data/reference-docs/isosts-v1/doc/n-sc20.html +98 -0
  774. data/reference-docs/isosts-v1/doc/n-sif0.html +203 -0
  775. data/reference-docs/isosts-v1/doc/n-sjn0.html +52 -0
  776. data/reference-docs/isosts-v1/doc/n-snd0.html +48 -0
  777. data/reference-docs/isosts-v1/doc/n-sq20.html +259 -0
  778. data/reference-docs/isosts-v1/doc/n-sq80.html +166 -0
  779. data/reference-docs/isosts-v1/doc/n-swt0.html +115 -0
  780. data/reference-docs/isosts-v1/doc/n-syx0.html +122 -0
  781. data/reference-docs/isosts-v1/doc/n-t220.html +103 -0
  782. data/reference-docs/isosts-v1/doc/n-t250.html +116 -0
  783. data/reference-docs/isosts-v1/doc/n-t2x0.html +328 -0
  784. data/reference-docs/isosts-v1/doc/n-t3u0.html +78 -0
  785. data/reference-docs/isosts-v1/doc/n-t4w0.html +117 -0
  786. data/reference-docs/isosts-v1/doc/n-t5s0.html +289 -0
  787. data/reference-docs/isosts-v1/doc/n-tga0.html +67 -0
  788. data/reference-docs/isosts-v1/doc/n-thf0.html +65 -0
  789. data/reference-docs/isosts-v1/doc/n-tqs0.html +225 -0
  790. data/reference-docs/isosts-v1/doc/n-tr60.html +120 -0
  791. data/reference-docs/isosts-v1/doc/n-tre0.html +57 -0
  792. data/reference-docs/isosts-v1/doc/n-tua0.html +261 -0
  793. data/reference-docs/isosts-v1/doc/n-tve0.html +44 -0
  794. data/reference-docs/isosts-v1/doc/n-twc0.html +247 -0
  795. data/reference-docs/isosts-v1/doc/n-tx30.html +91 -0
  796. data/reference-docs/isosts-v1/doc/n-ty60.html +48 -0
  797. data/reference-docs/isosts-v1/doc/n-uba0.html +85 -0
  798. data/reference-docs/isosts-v1/doc/n-ube0.html +51 -0
  799. data/reference-docs/isosts-v1/doc/n-ue40.html +103 -0
  800. data/reference-docs/isosts-v1/doc/n-ufa0.html +106 -0
  801. data/reference-docs/isosts-v1/doc/n-ui40.html +231 -0
  802. data/reference-docs/isosts-v1/doc/n-uig0.html +60 -0
  803. data/reference-docs/isosts-v1/doc/n-umg0.html +63 -0
  804. data/reference-docs/isosts-v1/doc/n-unn0.html +57 -0
  805. data/reference-docs/isosts-v1/doc/n-upa0.html +104 -0
  806. data/reference-docs/isosts-v1/doc/n-upd0.html +63 -0
  807. data/reference-docs/isosts-v1/doc/n-uyg0.html +72 -0
  808. data/reference-docs/isosts-v1/doc/n-v530.html +91 -0
  809. data/reference-docs/isosts-v1/doc/n-v550.html +71 -0
  810. data/reference-docs/isosts-v1/doc/n-vad0.html +56 -0
  811. data/reference-docs/isosts-v1/doc/n-vff0.html +62 -0
  812. data/reference-docs/isosts-v1/doc/n-vge0.html +95 -0
  813. data/reference-docs/isosts-v1/doc/n-vjx0.html +74 -0
  814. data/reference-docs/isosts-v1/doc/n-vs30.html +106 -0
  815. data/reference-docs/isosts-v1/doc/n-vta0.html +168 -0
  816. data/reference-docs/isosts-v1/doc/n-vzn0.html +208 -0
  817. data/reference-docs/isosts-v1/doc/n-w5c0.html +209 -0
  818. data/reference-docs/isosts-v1/doc/n-w6u0.html +49 -0
  819. data/reference-docs/isosts-v1/doc/n-wau0.html +80 -0
  820. data/reference-docs/isosts-v1/doc/n-wc80.html +266 -0
  821. data/reference-docs/isosts-v1/doc/n-wct0.html +208 -0
  822. data/reference-docs/isosts-v1/doc/n-wfn0.html +133 -0
  823. data/reference-docs/isosts-v1/doc/n-wgc0.html +183 -0
  824. data/reference-docs/isosts-v1/doc/n-whe0.html +58 -0
  825. data/reference-docs/isosts-v1/doc/n-wqd0.html +90 -0
  826. data/reference-docs/isosts-v1/doc/n-wvg0.html +106 -0
  827. data/reference-docs/isosts-v1/doc/n-wvs0.html +244 -0
  828. data/reference-docs/isosts-v1/doc/n-wxd0.html +55 -0
  829. data/reference-docs/isosts-v1/doc/n-wz50.html +131 -0
  830. data/reference-docs/isosts-v1/doc/n-wz80.html +96 -0
  831. data/reference-docs/isosts-v1/doc/n-x3f0.html +99 -0
  832. data/reference-docs/isosts-v1/doc/n-x4t0.html +105 -0
  833. data/reference-docs/isosts-v1/doc/n-x4u0.html +102 -0
  834. data/reference-docs/isosts-v1/doc/n-x5u0.html +92 -0
  835. data/reference-docs/isosts-v1/doc/n-x7f0.html +91 -0
  836. data/reference-docs/isosts-v1/doc/n-xa80.html +188 -0
  837. data/reference-docs/isosts-v1/doc/n-xp30.html +122 -0
  838. data/reference-docs/isosts-v1/doc/n-xq60.html +66 -0
  839. data/reference-docs/isosts-v1/doc/n-xqg0.html +49 -0
  840. data/reference-docs/isosts-v1/doc/n-ybu0.html +164 -0
  841. data/reference-docs/isosts-v1/doc/n-yea0.html +45 -0
  842. data/reference-docs/isosts-v1/doc/n-ym70.html +213 -0
  843. data/reference-docs/isosts-v1/doc/n-yp70.html +249 -0
  844. data/reference-docs/isosts-v1/doc/n-yt20.html +220 -0
  845. data/reference-docs/isosts-v1/doc/n-z5n0.html +109 -0
  846. data/reference-docs/isosts-v1/doc/n-z7t0.html +86 -0
  847. data/reference-docs/isosts-v1/doc/n-zbe0.html +75 -0
  848. data/reference-docs/isosts-v1/doc/n-zga0.html +43 -0
  849. data/reference-docs/isosts-v1/doc/n-zkd0.html +78 -0
  850. data/reference-docs/isosts-v1/doc/n-zpx0.html +104 -0
  851. data/reference-docs/isosts-v1/doc/n-zsg0.html +149 -0
  852. data/reference-docs/isosts-v1/doc/t-2000.html +403 -0
  853. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX.indexListcomp.html +941 -0
  854. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX.xsd +571 -0
  855. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_Glossary.html +334 -0
  856. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_impIDLangTgtDtypScrpt-atts.html +732 -0
  857. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_bpt-attlist.html +533 -0
  858. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_crossReference-attlist.html +482 -0
  859. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_definition-attlist.html +541 -0
  860. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_entailedTerm-attlist.html +626 -0
  861. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_ept-attlist.html +469 -0
  862. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_example-attlist.html +468 -0
  863. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_externalCrossReference-attlist.html +472 -0
  864. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_geographicalUsage-attlist.html +474 -0
  865. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_grammaticalGender-attlist.html +584 -0
  866. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_grammaticalNumber-attlist.html +566 -0
  867. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_langSet-attlist.html +577 -0
  868. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_normativeAuthorization-attlist.html +626 -0
  869. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_note-attlist.html +571 -0
  870. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_partOfSpeech-attlist.html +600 -0
  871. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_ph-attlist.html +469 -0
  872. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_pronunciation-attlist.html +339 -0
  873. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_see-attlist.html +478 -0
  874. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_source-attlist.html +485 -0
  875. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_subjectField-attlist.html +480 -0
  876. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_term-attlist.html +555 -0
  877. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_termEntry-attlist.html +492 -0
  878. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_termType-attlist.html +622 -0
  879. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_tig-attlist.html +475 -0
  880. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_usageNote-attlist.html +469 -0
  881. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xGraphic-attlist.html +446 -0
  882. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xMathML-attlist.html +441 -0
  883. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xSource-attlist.html +441 -0
  884. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_Group_tbx_xref-atts.html +546 -0
  885. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_id.html +450 -0
  886. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_script.html +448 -0
  887. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_target.html +393 -0
  888. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_value.html +431 -0
  889. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Attribute_xtarget.html +400 -0
  890. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_ChangeHistory.html +348 -0
  891. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Complex_Type_tbx_basicText-model.html +429 -0
  892. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Complex_Type_tbx_noteText-model.html +400 -0
  893. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Complex_Type_tbx_simpleText-model.html +464 -0
  894. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_DCT-format.html +353 -0
  895. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_bpt.html +425 -0
  896. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_crossReference.html +533 -0
  897. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_definition.html +536 -0
  898. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_encapsulating-elements.html +418 -0
  899. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_entailedTerm.html +487 -0
  900. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_ept.html +412 -0
  901. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_example.html +521 -0
  902. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_externalCrossReference.html +486 -0
  903. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_geographicalUsage.html +488 -0
  904. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_grammaticalGender.html +498 -0
  905. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_grammaticalNumber.html +499 -0
  906. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_highlight-elements.html +564 -0
  907. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_langSet.html +562 -0
  908. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_normativeAuthorization.html +521 -0
  909. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_note.html +511 -0
  910. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_partOfSpeech.html +489 -0
  911. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_ph.html +412 -0
  912. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_pronunciation.html +508 -0
  913. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_see.html +498 -0
  914. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_source.html +512 -0
  915. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_subjectField.html +482 -0
  916. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_term.html +501 -0
  917. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_termEntry.html +464 -0
  918. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_termType.html +517 -0
  919. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_tig.html +511 -0
  920. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_usageNote.html +514 -0
  921. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_xGraphic.html +462 -0
  922. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_xMathML.html +462 -0
  923. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Element_tbx_xSource.html +461 -0
  924. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Examples.html +17 -0
  925. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Guidelines.html +391 -0
  926. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Introduction.html +391 -0
  927. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_Main_schema_ISO-TBX_xsd.html +285 -0
  928. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_contentTypes.html +358 -0
  929. data/reference-docs/isosts-v1/doc/tbx/ISO-TBX_xsd_entryLevels.html +376 -0
  930. data/reference-docs/isosts-v1/doc/tbx/docHtml.css +590 -0
  931. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a210.14.PNG +0 -0
  932. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a211.251.PNG +0 -0
  933. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a211.27.PNG +0 -0
  934. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a212.4133.PNG +0 -0
  935. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a212.4134.PNG +0 -0
  936. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.3121.PNG +0 -0
  937. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.3122.PNG +0 -0
  938. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.313.PNG +0 -0
  939. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.314.PNG +0 -0
  940. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.496.PNG +0 -0
  941. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.497.PNG +0 -0
  942. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a213.498.PNG +0 -0
  943. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a214.93.PNG +0 -0
  944. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a215.31.PNG +0 -0
  945. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a215.37.PNG +0 -0
  946. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a216.311.PNG +0 -0
  947. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a216.319.PNG +0 -0
  948. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a217.374.PNG +0 -0
  949. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a218.37.PNG +0 -0
  950. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a22.31.PNG +0 -0
  951. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a22.32.PNG +0 -0
  952. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a221.322.PNG +0 -0
  953. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a222.1112.PNG +0 -0
  954. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a222.3121.PNG +0 -0
  955. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a222.45.PNG +0 -0
  956. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a223.251.PNG +0 -0
  957. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a225.911.PNG +0 -0
  958. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a227.114.PNG +0 -0
  959. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a227.2263.PNG +0 -0
  960. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a228.14.PNG +0 -0
  961. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a229.131.PNG +0 -0
  962. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a23.311.PNG +0 -0
  963. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a24.313.PNG +0 -0
  964. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a25.27.PNG +0 -0
  965. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a25.44418.PNG +0 -0
  966. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a26.020513.PNG +0 -0
  967. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a26.2150.PNG +0 -0
  968. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a27.234.PNG +0 -0
  969. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a28.2138.PNG +0 -0
  970. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10241-1.a29.13.PNG +0 -0
  971. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/ISO10360-1.a216.PNG +0 -0
  972. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/iso_std_iso_3951-2_ed-1_en_term_3.10.PNG +0 -0
  973. data/reference-docs/isosts-v1/doc/tbx/examples/snippets/snippets.xml +46 -0
  974. data/reference-docs/isosts-v1/doc/tbx/examples/tbx-examples.html +1704 -0
  975. data/reference-docs/isosts-v1/doc/tbx/examples/tbx-examples.xml +1704 -0
  976. data/reference-docs/isosts-v1/doc/tbx/img/HierarchyArrow12.jpg +0 -0
  977. data/reference-docs/isosts-v1/doc/tbx/img/HierarchyCycle12.jpg +0 -0
  978. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_impIDLangScrpt-atts.jpeg +0 -0
  979. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_impIDLangTgtDtypScrpt-atts.jpeg +0 -0
  980. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx-xref-atts.jpeg +0 -0
  981. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_bpt-attlist.jpeg +0 -0
  982. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_crossReference-attlist.jpeg +0 -0
  983. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_definition-attlist.jpeg +0 -0
  984. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_entailedTerm-attlist.jpeg +0 -0
  985. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_ept-attlist.jpeg +0 -0
  986. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_example-attlist.jpeg +0 -0
  987. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_externalCrossReference-attlist.jpeg +0 -0
  988. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_geographicalUsage-attlist.jpeg +0 -0
  989. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_grammaticalGender-attlist.jpeg +0 -0
  990. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_grammaticalNumber-attlist.jpeg +0 -0
  991. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_langSet-attlist.jpeg +0 -0
  992. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_normativeAuthorization-attlist.jpeg +0 -0
  993. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_note-attlist.jpeg +0 -0
  994. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_partOfSpeech-attlist.jpeg +0 -0
  995. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_ph-attlist.jpeg +0 -0
  996. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_pronunciation-attlist.jpeg +0 -0
  997. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_see-attlist.jpeg +0 -0
  998. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_source-attlist.jpeg +0 -0
  999. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_subjectField-attlist.jpeg +0 -0
  1000. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_term-attlist.jpeg +0 -0
  1001. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_termEntry-attlist.jpeg +0 -0
  1002. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_termType-attlist.jpeg +0 -0
  1003. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_tig-attlist.jpeg +0 -0
  1004. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_usageNote-attlist.jpeg +0 -0
  1005. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xGraphic-attlist.jpeg +0 -0
  1006. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xMathML-attlist.jpeg +0 -0
  1007. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_tbx_xSource-attlist.jpeg +0 -0
  1008. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Attribute_Group_tbx_xref-atts.jpeg +0 -0
  1009. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Complex_Type_tbx_basicText-model.jpeg +0 -0
  1010. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Complex_Type_tbx_noteText-model.jpeg +0 -0
  1011. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Complex_Type_tbx_simpleText-model.jpeg +0 -0
  1012. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_bpt.jpeg +0 -0
  1013. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_crossReference.jpeg +0 -0
  1014. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_definition.jpeg +0 -0
  1015. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_encapsulating-elements.jpeg +0 -0
  1016. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_entailedTerm.jpeg +0 -0
  1017. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_ept.jpeg +0 -0
  1018. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_example.jpeg +0 -0
  1019. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_externalCrossReference.jpeg +0 -0
  1020. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_geographicalUsage.jpeg +0 -0
  1021. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_grammaticalGender.jpeg +0 -0
  1022. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_grammaticalNumber.jpeg +0 -0
  1023. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_highlight-elements.jpeg +0 -0
  1024. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_langSet.jpeg +0 -0
  1025. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_normativeAuthorization.jpeg +0 -0
  1026. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_note.jpeg +0 -0
  1027. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_partOfSpeech.jpeg +0 -0
  1028. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_ph.jpeg +0 -0
  1029. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_pronunciation.jpeg +0 -0
  1030. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_see.jpeg +0 -0
  1031. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_source.jpeg +0 -0
  1032. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_subjectField.jpeg +0 -0
  1033. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_term.jpeg +0 -0
  1034. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_termEntry.jpeg +0 -0
  1035. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_termType.jpeg +0 -0
  1036. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_tig.jpeg +0 -0
  1037. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_usageNote.jpeg +0 -0
  1038. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_xGraphic.jpeg +0 -0
  1039. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_xMathML.jpeg +0 -0
  1040. data/reference-docs/isosts-v1/doc/tbx/img/ISO-TBX_xsd_Element_tbx_xSource.jpeg +0 -0
  1041. data/reference-docs/isosts-v1/doc/tbx/img/Import12.jpg +0 -0
  1042. data/reference-docs/isosts-v1/doc/tbx/img/Include12.jpg +0 -0
  1043. data/reference-docs/isosts-v1/doc/tbx/img/Redefine12.jpg +0 -0
  1044. data/reference-docs/isosts-v1/doc/tbx/img/btM.gif +0 -0
  1045. data/reference-docs/isosts-v1/doc/tbx/img/btP.gif +0 -0
  1046. data/reference-docs/isosts-v1/doc/tbx/img/cBL.gif +0 -0
  1047. data/reference-docs/isosts-v1/doc/tbx/img/cBR.gif +0 -0
  1048. data/reference-docs/isosts-v1/doc/tbx/img/cTL.gif +0 -0
  1049. data/reference-docs/isosts-v1/doc/tbx/img/cTR.gif +0 -0
  1050. data/reference-docs/isosts-v1/doc/tbx/img/hierarchy_arrow.gif +0 -0
  1051. data/reference-docs/isosts-v1/doc/tbx/img/lB.gif +0 -0
  1052. data/reference-docs/isosts-v1/doc/tbx/img/lL.gif +0 -0
  1053. data/reference-docs/isosts-v1/doc/tbx/img/lR.gif +0 -0
  1054. data/reference-docs/isosts-v1/doc/tbx/img/lT.gif +0 -0
  1055. data/reference-docs/isosts-v1/doc/tbx/img/logo_iso copy.gif +0 -0
  1056. data/reference-docs/isosts-v1/doc/tbx/img/logo_iso.gif +0 -0
  1057. data/reference-docs/isosts-v1/doc/tbx/index.html +14 -0
  1058. data/reference-docs/isosts-v1/doc/tbx/schHierarchy.html +284 -0
  1059. data/reference-docs/isosts-v1/doc/tbx/xml.xsd +5 -0
  1060. data/reference-docs/isosts-v1/doc/tbx/xml_xsd_Attribute_xml_lang.html +449 -0
  1061. data/reference-docs/isosts-v1/doc/tbx/xml_xsd_Imported_schema_xml_xsd.html +303 -0
  1062. data/reference-docs/isosts-v1/htmltable.dtd +334 -0
  1063. data/reference-docs/isosts-v1/iso8879/isobox.ent +61 -0
  1064. data/reference-docs/isosts-v1/iso8879/isocyr1.ent +88 -0
  1065. data/reference-docs/isosts-v1/iso8879/isocyr2.ent +47 -0
  1066. data/reference-docs/isosts-v1/iso8879/isodia.ent +35 -0
  1067. data/reference-docs/isosts-v1/iso8879/isolat1.ent +83 -0
  1068. data/reference-docs/isosts-v1/iso8879/isolat2.ent +142 -0
  1069. data/reference-docs/isosts-v1/iso8879/isonum.ent +97 -0
  1070. data/reference-docs/isosts-v1/iso8879/isopub.ent +105 -0
  1071. data/reference-docs/isosts-v1/iso9573-13/isoamsa.ent +167 -0
  1072. data/reference-docs/isosts-v1/iso9573-13/isoamsb.ent +143 -0
  1073. data/reference-docs/isosts-v1/iso9573-13/isoamsc.ent +43 -0
  1074. data/reference-docs/isosts-v1/iso9573-13/isoamsn.ent +114 -0
  1075. data/reference-docs/isosts-v1/iso9573-13/isoamso.ent +73 -0
  1076. data/reference-docs/isosts-v1/iso9573-13/isoamsr.ent +204 -0
  1077. data/reference-docs/isosts-v1/iso9573-13/isogrk3.ent +64 -0
  1078. data/reference-docs/isosts-v1/iso9573-13/isomfrk.ent +75 -0
  1079. data/reference-docs/isosts-v1/iso9573-13/isomopf.ent +49 -0
  1080. data/reference-docs/isosts-v1/iso9573-13/isomscr.ent +75 -0
  1081. data/reference-docs/isosts-v1/iso9573-13/isotech.ent +182 -0
  1082. data/reference-docs/isosts-v1/jats-publishing-dtd-0.4.zip +0 -0
  1083. data/reference-docs/isosts-v1/mathml/mmlalias.ent +564 -0
  1084. data/reference-docs/isosts-v1/mathml/mmlextra.ent +122 -0
  1085. data/reference-docs/isosts-v1/mathml2-qname-1.mod +286 -0
  1086. data/reference-docs/isosts-v1/mathml2.dtd +2206 -0
  1087. data/reference-docs/isosts-v1/oasis-exchange.ent +384 -0
  1088. data/reference-docs/isosts-v1/rng/ISOSTS-classes.ent.rng +335 -0
  1089. data/reference-docs/isosts-v1/rng/ISOSTS-iso-metadata.ent.rng +1125 -0
  1090. data/reference-docs/isosts-v1/rng/ISOSTS-mixes.ent.rng +236 -0
  1091. data/reference-docs/isosts-v1/rng/ISOSTS-models.ent.rng +1392 -0
  1092. data/reference-docs/isosts-v1/rng/ISOSTS-nat-metadata.ent.rng +198 -0
  1093. data/reference-docs/isosts-v1/rng/ISOSTS-reg-metadata.ent.rng +208 -0
  1094. data/reference-docs/isosts-v1/rng/ISOSTS-tbx-namespace.ent.rng +686 -0
  1095. data/reference-docs/isosts-v1/rng/ISOSTS-tbx-setup.ent.rng +130 -0
  1096. data/reference-docs/isosts-v1/rng/ISOSTS.rng +368 -0
  1097. data/reference-docs/isosts-v1/rng/JATS-XHTMLtablesetup0.ent.rng +301 -0
  1098. data/reference-docs/isosts-v1/rng/JATS-articlemeta0.ent.rng +2284 -0
  1099. data/reference-docs/isosts-v1/rng/JATS-backmatter0.ent.rng +347 -0
  1100. data/reference-docs/isosts-v1/rng/JATS-chars0.ent.rng +498 -0
  1101. data/reference-docs/isosts-v1/rng/JATS-common0.ent.rng +4267 -0
  1102. data/reference-docs/isosts-v1/rng/JATS-default-classes0.ent.rng +1045 -0
  1103. data/reference-docs/isosts-v1/rng/JATS-default-mixes0.ent.rng +299 -0
  1104. data/reference-docs/isosts-v1/rng/JATS-display0.ent.rng +847 -0
  1105. data/reference-docs/isosts-v1/rng/JATS-format0.ent.rng +702 -0
  1106. data/reference-docs/isosts-v1/rng/JATS-funding0.ent.rng +578 -0
  1107. data/reference-docs/isosts-v1/rng/JATS-journalpubcustom-classes0.ent.rng +196 -0
  1108. data/reference-docs/isosts-v1/rng/JATS-journalpubcustom-mixes0.ent.rng +140 -0
  1109. data/reference-docs/isosts-v1/rng/JATS-journalpubcustom-models0.ent.rng +852 -0
  1110. data/reference-docs/isosts-v1/rng/JATS-link0.ent.rng +426 -0
  1111. data/reference-docs/isosts-v1/rng/JATS-list0.ent.rng +459 -0
  1112. data/reference-docs/isosts-v1/rng/JATS-math0.ent.rng +344 -0
  1113. data/reference-docs/isosts-v1/rng/JATS-mathmlsetup0.ent.rng +231 -0
  1114. data/reference-docs/isosts-v1/rng/JATS-nlmcitation0.ent.rng +269 -0
  1115. data/reference-docs/isosts-v1/rng/JATS-para0.ent.rng +436 -0
  1116. data/reference-docs/isosts-v1/rng/JATS-phrase0.ent.rng +505 -0
  1117. data/reference-docs/isosts-v1/rng/JATS-references0.ent.rng +1137 -0
  1118. data/reference-docs/isosts-v1/rng/JATS-related-object0.ent.rng +138 -0
  1119. data/reference-docs/isosts-v1/rng/JATS-section0.ent.rng +231 -0
  1120. data/reference-docs/isosts-v1/rng/mathml2-qname-1.mod.rng +63 -0
  1121. data/reference-docs/isosts-v1/rng/mathml2.rng +3320 -0
  1122. data/reference-docs/isosts-v1/rng/xhtml-inlstyle-1.mod.rng +37 -0
  1123. data/reference-docs/isosts-v1/rng/xhtml-table-1.mod.rng +430 -0
  1124. data/reference-docs/isosts-v1/xhtml-inlstyle-1.mod +34 -0
  1125. data/reference-docs/isosts-v1/xhtml-table-1.mod +333 -0
  1126. data/reference-docs/isosts-v1/xmlchars/isogrk1.ent +70 -0
  1127. data/reference-docs/isosts-v1/xmlchars/isogrk2.ent +41 -0
  1128. data/reference-docs/isosts-v1/xmlchars/isogrk4.ent +66 -0
  1129. data/reference-docs/isosts-v1/xsd/ISOSTS.xsd +6773 -0
  1130. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/common/common-attribs.xsd +45 -0
  1131. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/common/math.xsd +126 -0
  1132. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/common/xlink-href.xsd +20 -0
  1133. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/arith.xsd +90 -0
  1134. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/calculus.xsd +146 -0
  1135. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/common-attrib.xsd +30 -0
  1136. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/constants.xsd +83 -0
  1137. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/constructs.xsd +260 -0
  1138. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/elementary-functions.xsd +117 -0
  1139. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/functions.xsd +73 -0
  1140. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/linear-algebra.xsd +173 -0
  1141. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/logic.xsd +53 -0
  1142. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/relations.xsd +55 -0
  1143. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/semantics.xsd +85 -0
  1144. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/sets.xsd +236 -0
  1145. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/statistics.xsd +136 -0
  1146. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/tokens.xsd +120 -0
  1147. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/content/vector-calculus.xsd +88 -0
  1148. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/mathml2.xsd +59 -0
  1149. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/action.xsd +44 -0
  1150. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/characters.xsd +37 -0
  1151. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/common-attribs.xsd +113 -0
  1152. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/common-types.xsd +103 -0
  1153. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/error.xsd +40 -0
  1154. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/layout.xsd +195 -0
  1155. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/scripts.xsd +186 -0
  1156. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/space.xsd +52 -0
  1157. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/style.xsd +69 -0
  1158. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/table.xsd +216 -0
  1159. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/presentation/tokens.xsd +124 -0
  1160. data/reference-docs/isosts-v1/xsd/ncbi-mathml2/readme.txt +17 -0
  1161. data/reference-docs/isosts-v1/xsd/tbx.xsd +790 -0
  1162. data/reference-docs/isosts-v1/xsd/xlink.xsd +39 -0
  1163. data/reference-docs/isosts-v1/xsd/xml.xsd +17 -0
  1164. data/reference-docs/isosts-v1/xsl/cals/flatten_cals.xsl +21 -0
  1165. data/reference-docs/isosts-v1/xsl/cals/isosts2cals.xsl +28 -0
  1166. data/reference-docs/isosts-v1/xsl/cals/lib/css-parser.xsl +119 -0
  1167. data/reference-docs/isosts-v1/xsl/cals/lib/xhtml2cals.xsl +580 -0
  1168. data/reference-docs/isosts-v1/xsl/cals/readme.html +211 -0
  1169. data/reference-docs/isosts-v1/xsl/cals/remove_oasis_ns.xsl +21 -0
  1170. data/reference-docs/isosts-v1/xsl/cals/test/css-parser-test.html +4655 -0
  1171. data/reference-docs/isosts-v1/xsl/cals/test/css-parser-test.xsl +983 -0
  1172. data/reference-docs/isosts-v1/xsl/cals/test/css2colrowsep-test.html +161 -0
  1173. data/reference-docs/isosts-v1/xsl/cals/test/css2colrowsep-test.xsl +212 -0
  1174. data/reference-docs/isosts-v1/xsl/cals/test/isosts_tables.cals.xml +214 -0
  1175. data/reference-docs/isosts-v1/xsl/cals/test/isosts_tables.html +28 -0
  1176. data/reference-docs/isosts-v1/xsl/cals/test/isosts_tables.xml +544 -0
  1177. data/reference-docs/isosts-v1/xsl/cals/test/styles.txt +4010 -0
  1178. data/reference-docs/isosts-v1/xsl/cals/tm9901.dtd +313 -0
  1179. data/sts.gemspec +1 -1
  1180. metadata +1168 -7
@@ -0,0 +1,1137 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- ============================================================= -->
3
+ <!-- MODULE: Bibliographic Reference (Citation) Class Elements -->
4
+ <!-- VERSION: NISO 0.4 -->
5
+ <!-- DATE: January 2011 -->
6
+ <!---->
7
+ <!-- ============================================================= -->
8
+ <!-- ============================================================= -->
9
+ <!-- PUBLIC DOCUMENT TYPE DEFINITION -->
10
+ <!-- TYPICAL INVOCATION -->
11
+ <!--
12
+ "-//NLM//DTD JATS (Z39.96) Archiving and Interchange DTD Suite Bibliographic Reference (Citation) Class Elements v0.4 20110131//EN"
13
+ Delivered as file "JATS-references0.ent"
14
+ -->
15
+ <!-- ============================================================= -->
16
+ <!-- ============================================================= -->
17
+ <!-- SYSTEM: Archiving and Interchange DTD Suite -->
18
+ <!---->
19
+ <!-- PURPOSE: Defines the bibliographic reference elements -->
20
+ <!---->
21
+ <!---->
22
+ <!-- CONTAINS: 1) Default definition of the references class -->
23
+ <!-- 2) Parameter Entities for attribute lists -->
24
+ <!-- 3) Models for the bibliographic reference -->
25
+ <!-- class elements in alphabetical order -->
26
+ <!---->
27
+ <!-- CREATED FOR: -->
28
+ <!-- Digital archives and publishers who wish to -->
29
+ <!-- create a custom XML DTD for original markup of -->
30
+ <!-- journal literature, books, and related material, -->
31
+ <!-- or for archiving and transferring such material -->
32
+ <!-- between archives. -->
33
+ <!---->
34
+ <!-- This DTD is in the public domain. An organization -->
35
+ <!-- that wishes to create its own DTD from the suite -->
36
+ <!-- may do so without permission from NLM. -->
37
+ <!---->
38
+ <!-- The suite has been set up to be extended using a -->
39
+ <!-- new DTD file and a new DTD-specific customization -->
40
+ <!-- module to redefine the many Parameter Entities. -->
41
+ <!-- Do not modify the suite directly or redistribute -->
42
+ <!-- modified versions of the suite. -->
43
+ <!---->
44
+ <!-- In the interest of maintaining consistency and -->
45
+ <!-- clarity for potential users, NLM requests: -->
46
+ <!---->
47
+ <!-- 1. If you create a DTD from the Archiving and -->
48
+ <!-- Interchange DTD Suite and intend to stay -->
49
+ <!-- compatible with the suite, then please include -->
50
+ <!-- the following statement as a comment in all of -->
51
+ <!-- your DTD modules: -->
52
+ <!-- "Created from, and fully compatible with, -->
53
+ <!-- the NISO Z39.96 Journal Article Tag Suite -->
54
+ <!-- (JATS)." -->
55
+ <!---->
56
+ <!-- 2. If you alter one or more modules of the suite, -->
57
+ <!-- then please rename your version and all its -->
58
+ <!-- modules to avoid any confusion with the -->
59
+ <!-- original suite. Also, please include the -->
60
+ <!-- following statement as a comment in all your -->
61
+ <!-- DTD modules: -->
62
+ <!-- "Based in part on, but not fully compatible -->
63
+ <!-- with, the NISO Z39.96 Journal Article Tag -->
64
+ <!-- Suite." -->
65
+ <!---->
66
+ <!-- Suggestions for refinements and enhancements to -->
67
+ <!-- the DTD suite should be sent in email to: -->
68
+ <!-- jats@ncbi.nlm.nih.gov -->
69
+ <!---->
70
+ <!-- ORIGINAL CREATION DATE: -->
71
+ <!-- December 2002 -->
72
+ <!---->
73
+ <!-- CREATED BY: Jeff Beck (NCBI) -->
74
+ <!-- Deborah Lapeyre (Mulberry Technologies, Inc.) -->
75
+ <!-- Bruce Rosenblum (Inera Inc.) -->
76
+ <!-- B. Tommie Usdin (Mulberry Technologies, Inc.) -->
77
+ <!---->
78
+ <!-- NLM thanks the Harvard University Libraries, both -->
79
+ <!-- for proposing that a draft archiving NLM DTD for -->
80
+ <!-- life sciences journals be extended to accommodate -->
81
+ <!-- journals in all disciplines and for sponsoring -->
82
+ <!-- Bruce Rosenblum's collaboration with other DTD -->
83
+ <!-- authors in completing NLM Version 1.0. The -->
84
+ <!-- Andrew W. Mellon Foundation provided support for -->
85
+ <!-- these important contributions. -->
86
+ <!---->
87
+ <!-- ============================================================= -->
88
+ <!-- ============================================================= -->
89
+ <!-- DTD VERSION/CHANGE HISTORY -->
90
+ <!-- ============================================================= -->
91
+ <!--
92
+
93
+ Version Reason/Occasion (who) vx.x (yyyy-mm-dd)
94
+
95
+ =============================================================
96
+ Version 0.4 (DAL/BTU) v0.4 (2011-01-31)
97
+
98
+ This Tag Set is in the process of becoming a NISO standard.
99
+ The version numbers are starting over from 0.4", as a Trial
100
+ Use Draft, to be made into "Version 1.0" when the Tag Suite
101
+ becomes a NISO standard. Thus, NLM "Version 3.1 Draft" has
102
+ been changed to NISO "Version 0.4". No model, attribute, or
103
+ parameter entity changes were made as part of this renaming.
104
+
105
+ Details on NISO Tial Use Draft Version 0.4 are available at
106
+ http://jats.nlm.nih.gov/JATS-0.4.
107
+
108
+ 5. Updated the public identifier to "v0.4 20110131//EN",
109
+ modified the formal public identifier to include "JATS (Z39.96)",
110
+ and the filename as delivered to include "JATS" and the
111
+ new version number "0".
112
+
113
+ =============================================================
114
+ Version 3.1 (DAL/BTU) v3.1 (2010-04-30)
115
+
116
+ Version 3.1 is fully compatible with Version 3.0.
117
+
118
+ Details on version 3.1 are available at
119
+ http://jats.nlm.nih.gov/3.1.
120
+
121
+ 4. @SPECIFIC-USE and @XML:LANG - Added the @specific-use and
122
+ @xml:lang to the following elements:
123
+ - access-date through access-date-atts (only @specific-use)
124
+ - annotation through annotation-atts (both)
125
+ - chapter-title through chapter-title-atts (both) NEW PE
126
+ - comment through comment-atts (both)
127
+ - date-in-citation through date-in-citation-atts (both)
128
+ - edition through edition-atts (both)
129
+ - gov through gov-atts (both)
130
+ - note through note-atts (both)
131
+ - part-title through part-title-atts (both) NEW PE
132
+ - patent through patent-atts (both)
133
+ - person-group through person-group-atts (both)
134
+ - pub-id through pub-id-atts (@specific-use only)
135
+ - ref through ref-atts (both)
136
+ - ref-list through ref-list-atts (@specific-use only)
137
+ - series through series-atts (both)
138
+ - source through source-atts (@specific-use only;
139
+ @xml:lang already)
140
+ - std through std-atts (both)
141
+ - time-stamp through time-stamp-atts (@specific-use only)
142
+ - trans-source through trans-source-atts (@specific-use only;
143
+ @xml:lang already)
144
+
145
+ 4. PERSON GROUP - Changed the model of <person-group> to mixed
146
+ content. This entailed: creating new PE %person-group-elements;
147
+ that contained the elements to be used and Changing PE
148
+ %person-group-model to (#PCDATA %person-group-elements;)*.
149
+ The PE person-group-model has been retained in this module for
150
+ compatibility, but has been set to the mixed model using
151
+ person-group-elements.
152
+
153
+ 3. ANNOTATION - Changed to content model to use the parameter
154
+ entity %annotation-model; Content model unchanged.
155
+
156
+ 2. Updated public identifier to "v3.1 20100830//EN"
157
+
158
+ =============================================================
159
+ Version 3.0 (DAL/BTU) v3.0 (2007-10-31)
160
+
161
+ Version 3.0 is the first non-backward-compatible release.
162
+ In addition to the usual incremental changes, some
163
+ elements and attributes have been renamed and/or remodeled
164
+ to better meet user needs and to increase tag set consistency.
165
+ All module change histories are available through the Tag Suite
166
+ web site at http://dtd.nlm.nih.gov.
167
+
168
+ Details on version 3.0 are available at
169
+ http://jats.nlm.nih.gov/3.0.
170
+
171
+ 1. Updated public identifier to "v3.0 20080202//EN"
172
+ -->
173
+ <!-- ============================================================= -->
174
+ <!-- ============================================================= -->
175
+ <!-- PARAMETER ENTITIES FOR #PCDATA MODELS -->
176
+ <!-- ============================================================= -->
177
+ <!-- SOURCE ELEMENTS -->
178
+ <!--
179
+ The elements that can be included along with
180
+ data characters inside the content model of
181
+ a <source>.
182
+ -->
183
+ <grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
184
+ <define name="source-elements">
185
+ <choice>
186
+ <ref name="address-link.class"/>
187
+ <ref name="emphasis.class"/>
188
+ <ref name="phrase-content.class"/>
189
+ <ref name="subsup.class"/>
190
+ </choice>
191
+ </define>
192
+ <!-- ============================================================= -->
193
+ <!-- PARAMETER ENTITIES FOR ATTRIBUTE LISTS -->
194
+ <!-- ============================================================= -->
195
+ <!-- ACCESS DATE ATTRIBUTES -->
196
+ <!-- Attributes for the <access-date> element -->
197
+ <define name="access-date-atts">
198
+ <optional>
199
+ <attribute name="content-type"/>
200
+ </optional>
201
+ <optional>
202
+ <attribute name="specific-use"/>
203
+ </optional>
204
+ </define>
205
+ <!-- ANNOTATION ATTRIBUTES -->
206
+ <!-- Attributes for the <annotation> element -->
207
+ <define name="annotation-atts">
208
+ <optional>
209
+ <attribute name="content-type"/>
210
+ </optional>
211
+ <optional>
212
+ <attribute name="specific-use"/>
213
+ </optional>
214
+ <optional>
215
+ <attribute name="xml:lang">
216
+ <data type="NMTOKEN"/>
217
+ </attribute>
218
+ </optional>
219
+ </define>
220
+ <!-- CHAPTER TITLE ATTRIBUTES -->
221
+ <!-- Attributes for the <chapter-title> element -->
222
+ <define name="chapter-title-atts">
223
+ <optional>
224
+ <attribute name="specific-use"/>
225
+ </optional>
226
+ <optional>
227
+ <attribute name="xml:lang">
228
+ <data type="NMTOKEN"/>
229
+ </attribute>
230
+ </optional>
231
+ </define>
232
+ <!-- COMMENT ATTRIBUTES -->
233
+ <!-- Attributes for the <comment> element -->
234
+ <define name="comment-atts">
235
+ <optional>
236
+ <attribute name="content-type"/>
237
+ </optional>
238
+ <optional>
239
+ <attribute name="specific-use"/>
240
+ </optional>
241
+ <optional>
242
+ <attribute name="xml:lang">
243
+ <data type="NMTOKEN"/>
244
+ </attribute>
245
+ </optional>
246
+ </define>
247
+ <!-- DATE IN CITATION ATTRIBUTES -->
248
+ <!--
249
+ Attributes for the <date-in-citation>
250
+ element
251
+ -->
252
+ <define name="date-in-citation-atts">
253
+ <optional>
254
+ <attribute name="content-type"/>
255
+ </optional>
256
+ <optional>
257
+ <attribute name="specific-use"/>
258
+ </optional>
259
+ <optional>
260
+ <attribute name="xml:lang">
261
+ <data type="NMTOKEN"/>
262
+ </attribute>
263
+ </optional>
264
+ </define>
265
+ <!-- EDITION ATTRIBUTES -->
266
+ <!-- Attributes for the <edition> element -->
267
+ <define name="edition-atts">
268
+ <optional>
269
+ <attribute name="content-type"/>
270
+ </optional>
271
+ <optional>
272
+ <attribute name="specific-use"/>
273
+ </optional>
274
+ <optional>
275
+ <attribute name="xml:lang">
276
+ <data type="NMTOKEN"/>
277
+ </attribute>
278
+ </optional>
279
+ </define>
280
+ <!-- GOVERNMENT ATTRIBUTES -->
281
+ <!-- Attributes for the <gov> element -->
282
+ <define name="gov-atts">
283
+ <optional>
284
+ <attribute name="content-type"/>
285
+ </optional>
286
+ <optional>
287
+ <attribute name="specific-use"/>
288
+ </optional>
289
+ <optional>
290
+ <attribute name="xml:lang">
291
+ <data type="NMTOKEN"/>
292
+ </attribute>
293
+ </optional>
294
+ </define>
295
+ <!-- NOTE ATTRIBUTES -->
296
+ <!-- Attributes for the <note> element -->
297
+ <define name="note-atts">
298
+ <optional>
299
+ <attribute name="content-type"/>
300
+ </optional>
301
+ <optional>
302
+ <attribute name="id">
303
+ <data type="ID"/>
304
+ </attribute>
305
+ </optional>
306
+ <optional>
307
+ <attribute name="specific-use"/>
308
+ </optional>
309
+ <optional>
310
+ <attribute name="xml:lang">
311
+ <data type="NMTOKEN"/>
312
+ </attribute>
313
+ </optional>
314
+ </define>
315
+ <!-- PART TITLE ATTRIBUTES -->
316
+ <!-- Attributes for the <part-title> element -->
317
+ <define name="part-title-atts">
318
+ <optional>
319
+ <attribute name="specific-use"/>
320
+ </optional>
321
+ <optional>
322
+ <attribute name="xml:lang">
323
+ <data type="NMTOKEN"/>
324
+ </attribute>
325
+ </optional>
326
+ </define>
327
+ <!-- PATENT ATTRIBUTES -->
328
+ <!-- Attributes for the <patent> element -->
329
+ <define name="patent-atts">
330
+ <optional>
331
+ <attribute name="content-type"/>
332
+ </optional>
333
+ <optional>
334
+ <attribute name="country"/>
335
+ </optional>
336
+ <optional>
337
+ <attribute name="specific-use"/>
338
+ </optional>
339
+ <optional>
340
+ <attribute name="xml:lang">
341
+ <data type="NMTOKEN"/>
342
+ </attribute>
343
+ </optional>
344
+ </define>
345
+ <!-- PERSON GROUP ATTRIBUTES -->
346
+ <!-- Attributes for the <person-group> element -->
347
+ <!-- PUBLICATION IDENTIFIER ATTRIBUTES -->
348
+ <!-- Attributes for the <pub-id> element -->
349
+ <define name="pub-id-atts">
350
+ <optional>
351
+ <attribute name="pub-id-type">
352
+ <choice>
353
+ <ref name="pub-id-types"/>
354
+ </choice>
355
+ </attribute>
356
+ </optional>
357
+ <optional>
358
+ <attribute name="specific-use"/>
359
+ </optional>
360
+ </define>
361
+ <!-- REFERENCE ATTRIBUTES -->
362
+ <!-- Attributes for the <ref> element -->
363
+ <define name="ref-atts">
364
+ <optional>
365
+ <attribute name="id">
366
+ <data type="ID"/>
367
+ </attribute>
368
+ </optional>
369
+ <optional>
370
+ <attribute name="content-type"/>
371
+ </optional>
372
+ <optional>
373
+ <attribute name="specific-use"/>
374
+ </optional>
375
+ <optional>
376
+ <attribute name="xml:lang">
377
+ <data type="NMTOKEN"/>
378
+ </attribute>
379
+ </optional>
380
+ </define>
381
+ <!-- REFERENCE LIST ATTRIBUTES -->
382
+ <!-- Attributes for the <ref-list> element -->
383
+ <!-- SERIES ATTRIBUTES -->
384
+ <!-- Attributes for the <series> element -->
385
+ <define name="series-atts">
386
+ <optional>
387
+ <attribute name="content-type"/>
388
+ </optional>
389
+ <optional>
390
+ <attribute name="specific-use"/>
391
+ </optional>
392
+ <optional>
393
+ <attribute name="xml:lang">
394
+ <data type="NMTOKEN"/>
395
+ </attribute>
396
+ </optional>
397
+ </define>
398
+ <!-- SOURCE ATTRIBUTES -->
399
+ <!--
400
+ Attributes for the <source> and
401
+ <trans-source> elements
402
+ -->
403
+ <define name="source-atts">
404
+ <optional>
405
+ <attribute name="id">
406
+ <data type="ID"/>
407
+ </attribute>
408
+ </optional>
409
+ <optional>
410
+ <attribute name="content-type"/>
411
+ </optional>
412
+ <optional>
413
+ <attribute name="specific-use"/>
414
+ </optional>
415
+ <optional>
416
+ <attribute name="xml:lang">
417
+ <data type="NMTOKEN"/>
418
+ </attribute>
419
+ </optional>
420
+ </define>
421
+ <!-- STANDARDS ATTRIBUTES -->
422
+ <!-- Attributes for the <std> element -->
423
+ <!-- TIME STAMP ATTRIBUTES -->
424
+ <!-- Attributes for the <time-stamp> element -->
425
+ <define name="time-stamp-atts">
426
+ <optional>
427
+ <attribute name="content-type"/>
428
+ </optional>
429
+ <optional>
430
+ <attribute name="specific-use"/>
431
+ </optional>
432
+ </define>
433
+ <!-- TRANSLATED SOURCE ATTRIBUTES -->
434
+ <!-- Attributes for the <trans-source> element -->
435
+ <define name="trans-source-atts">
436
+ <optional>
437
+ <attribute name="id">
438
+ <data type="ID"/>
439
+ </attribute>
440
+ </optional>
441
+ <optional>
442
+ <attribute name="content-type"/>
443
+ </optional>
444
+ <optional>
445
+ <attribute name="specific-use"/>
446
+ </optional>
447
+ <optional>
448
+ <attribute name="xml:lang">
449
+ <data type="NMTOKEN"/>
450
+ </attribute>
451
+ </optional>
452
+ </define>
453
+ <!-- ============================================================= -->
454
+ <!-- BIBLIOGRAPHIC REFERENCE LIST ELEMENTS -->
455
+ <!-- ============================================================= -->
456
+ <!--
457
+ ELEM article-title
458
+ Defined in %common.ent;
459
+ -->
460
+ <!-- ELEM collab Defined in %common.ent; -->
461
+ <!-- ELEM conf-date Defined in %common.ent; -->
462
+ <!-- ELEM conf-loc Defined in %common.ent; -->
463
+ <!-- ELEM conf-name Defined in %common.ent; -->
464
+ <!-- ELEM day Defined in %common.ent; -->
465
+ <!-- ELEM elocation-id Defined in %common.ent; -->
466
+ <!-- ELEM email Defined in %common.ent; -->
467
+ <!-- ELEM fpage Defined in %common.ent; -->
468
+ <!-- ELEM issn Defined in %common.ent; -->
469
+ <!-- ELEM issue Defined in %common.ent; -->
470
+ <!-- ELEM lpage Defined in %common.ent; -->
471
+ <!-- ELEM month Defined in %common.ent; -->
472
+ <!--
473
+ ELEM publisher-loc
474
+ Defined in %common.ent;
475
+ -->
476
+ <!--
477
+ ELEM publisher-name
478
+ Defined in %common.ent;
479
+ -->
480
+ <!-- ELEM season Defined in %common.ent; -->
481
+ <!-- ELEM title Defined in %common.ent; -->
482
+ <!-- ELEM trans-title Defined in %common.ent; -->
483
+ <!-- ELEM volume Defined in %common.ent; -->
484
+ <!-- ELEM year Defined in %common.ent; -->
485
+ <!-- REFERENCE LIST MODEL -->
486
+ <!-- Content model for the <ref-list> element -->
487
+ <define name="ref-list-model">
488
+ <optional>
489
+ <ref name="label"/>
490
+ </optional>
491
+ <optional>
492
+ <ref name="title"/>
493
+ </optional>
494
+ <zeroOrMore>
495
+ <ref name="para-level"/>
496
+ </zeroOrMore>
497
+ <zeroOrMore>
498
+ <ref name="ref"/>
499
+ </zeroOrMore>
500
+ <zeroOrMore>
501
+ <ref name="ref-list.class"/>
502
+ </zeroOrMore>
503
+ </define>
504
+ <!-- REFERENCE LIST (BIBLIOGRAPHIC REFERENCE LIST) -->
505
+ <!--
506
+ List of references (citations) for the
507
+ article. Often called "References",
508
+ "Bibliography", or "Additional Reading". No
509
+ distinction is made between lists of cited
510
+ references and lists of suggested references.
511
+ Details at:
512
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=ref-list
513
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=ref-list
514
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=ref-list
515
+ -->
516
+ <define name="ref-list">
517
+ <element name="ref-list">
518
+ <ref name="ref-list-attlist"/>
519
+ <ref name="ref-list-model"/>
520
+ </element>
521
+ </define>
522
+ <define name="ref-list-attlist" combine="interleave">
523
+ <ref name="ref-list-atts"/>
524
+ </define>
525
+ <!-- REFERENCE ITEM MODEL -->
526
+ <!-- Content model for the <ref> element -->
527
+ <!-- REFERENCE ITEM -->
528
+ <!--
529
+ One item in a bibliographic list, typically
530
+ a citation describing a referenced work, but
531
+ some journals may place notes in this list as
532
+ well as citations.
533
+ Details at:
534
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=ref
535
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=ref
536
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=ref
537
+ -->
538
+ <define name="ref">
539
+ <element name="ref">
540
+ <ref name="ref-attlist"/>
541
+ <ref name="ref-model"/>
542
+ </element>
543
+ </define>
544
+ <define name="ref-attlist" combine="interleave">
545
+ <ref name="ref-atts"/>
546
+ </define>
547
+ <!--
548
+ ELEM element-citation
549
+ Defined in %common.ent;
550
+ -->
551
+ <!--
552
+ ELEM mixed-citation
553
+ Defined in %common.ent;
554
+ -->
555
+ <!-- NOTE IN A REFERENCE LIST MODEL -->
556
+ <!--
557
+ Content model for a note in a reference
558
+ list element
559
+ -->
560
+ <define name="note-model">
561
+ <optional>
562
+ <ref name="label"/>
563
+ </optional>
564
+ <oneOrMore>
565
+ <choice>
566
+ <ref name="just-para.class"/>
567
+ <ref name="product.class"/>
568
+ </choice>
569
+ </oneOrMore>
570
+ </define>
571
+ <!-- NOTE IN A REFERENCE LIST -->
572
+ <!--
573
+ Used to tag non-citation material that
574
+ sometimes within a reference list, for
575
+ example, used to tag end note material when
576
+ such a note is placed within a reference
577
+ list.
578
+ Details at:
579
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=note
580
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=note
581
+ -->
582
+ <define name="note">
583
+ <element name="note">
584
+ <ref name="note-attlist"/>
585
+ <ref name="note-model"/>
586
+ </element>
587
+ </define>
588
+ <define name="note-attlist" combine="interleave">
589
+ <ref name="note-atts"/>
590
+ </define>
591
+ <!-- ============================================================= -->
592
+ <!-- BIBLIOGRAPHIC REFERENCE CLASS -->
593
+ <!-- ============================================================= -->
594
+ <!-- ACCESS DATE ELEMENTS -->
595
+ <!--
596
+ The elements that can be included along with
597
+ data characters inside the content model of
598
+ the Access Date <access-date> element
599
+ -->
600
+ <define name="access-date-elements">
601
+ <notAllowed/>
602
+ </define>
603
+ <!-- ACCESS DATE FOR CITED WORK -->
604
+ <!--
605
+ The date on which the work which is cited
606
+ was examined. Some online resources are
607
+ changing so quickly that a citation to the
608
+ resource is not complete without the date
609
+ on which the cited resource was examined,
610
+ since a day before or a day later the
611
+ relevant material might be different.
612
+ Details at:
613
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=access-date
614
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=access-date
615
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=access-date
616
+ -->
617
+ <define name="access-date">
618
+ <element name="access-date">
619
+ <ref name="access-date-attlist"/>
620
+ <zeroOrMore>
621
+ <choice>
622
+ <text/>
623
+ <ref name="access-date-elements"/>
624
+ </choice>
625
+ </zeroOrMore>
626
+ </element>
627
+ </define>
628
+ <define name="access-date-attlist" combine="interleave">
629
+ <ref name="access-date-atts"/>
630
+ </define>
631
+ <!-- DATE ELEMENTS MODEL -->
632
+ <!--
633
+ The content model for the <annotation>
634
+ element
635
+ -->
636
+ <define name="annotation-model">
637
+ <oneOrMore>
638
+ <ref name="just-para.class"/>
639
+ </oneOrMore>
640
+ </define>
641
+ <!-- ANNOTATION IN A CITATION -->
642
+ <!--
643
+ Most citations just provide the bibliographic
644
+ information for a cited reference but a few
645
+ describe or comment upon the nature or
646
+ quality of the reference or summarize its
647
+ findings.
648
+ Details at:
649
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=annotation
650
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=annotation
651
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=annotation
652
+ -->
653
+ <define name="annotation">
654
+ <element name="annotation">
655
+ <ref name="annotation-attlist"/>
656
+ <ref name="annotation-model"/>
657
+ </element>
658
+ </define>
659
+ <define name="annotation-attlist" combine="interleave">
660
+ <ref name="annotation-atts"/>
661
+ </define>
662
+ <!-- CHAPTER TITLE ELEMENTS -->
663
+ <!--
664
+ The elements that can be included along with
665
+ data characters inside the content model of
666
+ the <chapter-title> element
667
+ -->
668
+ <define name="chapter-title-elements">
669
+ <ref name="source-elements"/>
670
+ </define>
671
+ <!-- CHAPTER TITLE IN A CITATION -->
672
+ <!--
673
+ Within a citation (such as a <mixed-citation>
674
+ or an <element-citation>), the title of a
675
+ cited book is tagged as <source> and the
676
+ title of a chapter within that book is tagged
677
+ as <chapter-title>.
678
+ Details at:
679
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=chapter-title
680
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=chapter-title
681
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=chapter-title
682
+ -->
683
+ <define name="chapter-title">
684
+ <element name="chapter-title">
685
+ <ref name="chapter-title-attlist"/>
686
+ <zeroOrMore>
687
+ <choice>
688
+ <text/>
689
+ <ref name="chapter-title-elements"/>
690
+ </choice>
691
+ </zeroOrMore>
692
+ </element>
693
+ </define>
694
+ <define name="chapter-title-attlist" combine="interleave">
695
+ <ref name="chapter-title-atts"/>
696
+ </define>
697
+ <!-- COMMENT ELEMENTS -->
698
+ <!--
699
+ The elements that can be included along with
700
+ data characters inside the content model of
701
+ the Comment in a Citation <comment> element.
702
+ Design Note: All inline mixes begin with an
703
+ OR bar, but since %simple-phrase; is an
704
+ inline mix, the OR bar is already there.
705
+ -->
706
+ <define name="comment-elements">
707
+ <ref name="simple-phrase"/>
708
+ </define>
709
+ <!-- COMMENT IN A CITATION -->
710
+ <!--
711
+ Used to mark unstructured text within an
712
+ otherwise element structured reference.
713
+ In an unstructured reference, this text would
714
+ merely be data characters.
715
+ Typical comments could include:
716
+ <comment>[Abstract]</comment>
717
+ <comment> translated from Russian</comment>
718
+ Details at:
719
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=comment
720
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=comment
721
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=comment
722
+ -->
723
+ <define name="comment">
724
+ <element name="comment">
725
+ <ref name="comment-attlist"/>
726
+ <zeroOrMore>
727
+ <choice>
728
+ <text/>
729
+ <ref name="comment-elements"/>
730
+ </choice>
731
+ </zeroOrMore>
732
+ </element>
733
+ </define>
734
+ <define name="comment-attlist" combine="interleave">
735
+ <ref name="comment-atts"/>
736
+ </define>
737
+ <!-- DATE IN CITATION ELEMENTS -->
738
+ <!--
739
+ The elements that can be included along with
740
+ data characters inside the content model of
741
+ the Date Inside Citation <date-in-citation>
742
+ element
743
+ -->
744
+ <define name="date-in-citation-elements">
745
+ <ref name="date-parts.class"/>
746
+ </define>
747
+ <!-- DATE INSIDE CITATION -->
748
+ <!--
749
+ A container element for any date that may be
750
+ referenced in a citation, other than the
751
+ publication date of the cited work.
752
+ The "content-type" attribute should be used
753
+ to identify the purpose/type of date. For
754
+ example, if the element contains the date
755
+ on which the article contributor examined the
756
+ cited work, the attribute might be
757
+ "access-date".
758
+ Details at:
759
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=date-in-citation
760
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=date-in-citation
761
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=date-in-citation
762
+ -->
763
+ <define name="date-in-citation">
764
+ <element name="date-in-citation">
765
+ <ref name="date-in-citation-attlist"/>
766
+ <zeroOrMore>
767
+ <choice>
768
+ <text/>
769
+ <ref name="date-in-citation-elements"/>
770
+ </choice>
771
+ </zeroOrMore>
772
+ </element>
773
+ </define>
774
+ <define name="date-in-citation-attlist" combine="interleave">
775
+ <ref name="date-in-citation-atts"/>
776
+ </define>
777
+ <!-- EDITION ELEMENTS -->
778
+ <!--
779
+ The elements that can be included along with
780
+ data characters inside the content model of
781
+ <edition>
782
+ Design Note: -%just-rendition; begins with
783
+ an OR bar, so this inline mix begins with
784
+ an OR bar.
785
+ -->
786
+ <!-- EDITION, CITED -->
787
+ <!--
788
+ The edition number of a cited publication
789
+ Details at:
790
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=edition
791
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=edition
792
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=edition
793
+ -->
794
+ <define name="edition">
795
+ <element name="edition">
796
+ <ref name="edition-attlist"/>
797
+ <zeroOrMore>
798
+ <choice>
799
+ <text/>
800
+ <ref name="edition-elements"/>
801
+ </choice>
802
+ </zeroOrMore>
803
+ </element>
804
+ </define>
805
+ <define name="edition-attlist" combine="interleave">
806
+ <ref name="edition-atts"/>
807
+ </define>
808
+ <!-- GOVERNMENT REPORT ELEMENTS -->
809
+ <!--
810
+ The elements that can be included along with
811
+ data characters inside the content model of
812
+ <gov>
813
+ Design Note: -%rendition-plus; begins with
814
+ an OR bar, so this inline mix begins with
815
+ an OR bar.
816
+ -->
817
+ <define name="gov-elements">
818
+ <ref name="rendition-plus"/>
819
+ </define>
820
+ <!-- GOVERNMENT REPORT, CITED -->
821
+ <!--
822
+ The identification information (typically the
823
+ title and/or an identification number) for
824
+ a cited governmental report or other
825
+ government publication
826
+ Details at:
827
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=gov
828
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=gov
829
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=gov
830
+ -->
831
+ <define name="gov">
832
+ <element name="gov">
833
+ <ref name="gov-attlist"/>
834
+ <zeroOrMore>
835
+ <choice>
836
+ <text/>
837
+ <ref name="gov-elements"/>
838
+ </choice>
839
+ </zeroOrMore>
840
+ </element>
841
+ </define>
842
+ <define name="gov-attlist" combine="interleave">
843
+ <ref name="gov-atts"/>
844
+ </define>
845
+ <!-- PART TITLE ELEMENTS -->
846
+ <!--
847
+ The elements that can be included along with
848
+ data characters inside the content model of
849
+ the <part-title> element
850
+ -->
851
+ <define name="part-title-elements">
852
+ <ref name="source-elements"/>
853
+ </define>
854
+ <!-- PART TITLE IN A CITATION -->
855
+ <!--
856
+ Within a citation (such as a
857
+ <mixed-citation> or an <element-citation>),
858
+ when books are divided into Parts (which
859
+ may then contain smaller units such as
860
+ chapters), this element can be used to
861
+ record the title of the cited Part.
862
+ The book is tagged as <source>.
863
+ Details at:
864
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=part-title
865
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=part-title
866
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=part-title
867
+ -->
868
+ <define name="part-title">
869
+ <element name="part-title">
870
+ <ref name="part-title-attlist"/>
871
+ <zeroOrMore>
872
+ <choice>
873
+ <text/>
874
+ <ref name="part-title-elements"/>
875
+ </choice>
876
+ </zeroOrMore>
877
+ </element>
878
+ </define>
879
+ <define name="part-title-attlist" combine="interleave">
880
+ <ref name="part-title-atts"/>
881
+ </define>
882
+ <!-- PATENT NUMBER ELEMENTS -->
883
+ <!--
884
+ The elements that can be included along with
885
+ data characters inside the content model of
886
+ <patent>
887
+ Design Note: -%just-rendition; begins with
888
+ an OR bar, so this inline mix begins with
889
+ an OR bar.
890
+ -->
891
+ <!-- PATENT NUMBER, CITED -->
892
+ <!--
893
+ The identification information (typically the
894
+ patent number or number and name) for a
895
+ cited patent
896
+ Details at:
897
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=patent
898
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=patent
899
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=patent
900
+ -->
901
+ <define name="patent">
902
+ <element name="patent">
903
+ <ref name="patent-attlist"/>
904
+ <zeroOrMore>
905
+ <choice>
906
+ <text/>
907
+ <ref name="patent-elements"/>
908
+ </choice>
909
+ </zeroOrMore>
910
+ </element>
911
+ </define>
912
+ <define name="patent-attlist" combine="interleave">
913
+ <ref name="patent-atts"/>
914
+ </define>
915
+ <!-- PERSON GROUP ELEMENTS -->
916
+ <!--
917
+ The elements that can be included along with
918
+ data characters inside the content model of
919
+ <person-group>
920
+ -->
921
+ <!-- PERSON GROUP MODEL -->
922
+ <!-- Content model for the Person Group element -->
923
+ <define name="person-group-model">
924
+ <zeroOrMore>
925
+ <choice>
926
+ <text/>
927
+ <ref name="person-group-elements"/>
928
+ </choice>
929
+ </zeroOrMore>
930
+ </define>
931
+ <!-- PERSON GROUP FOR A CITED PUBLICATION -->
932
+ <!--
933
+ Wrapper element for one or more authors,
934
+ editors, translators, etc. named in a cited
935
+ reference.
936
+ Details at:
937
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=person-group
938
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=person-group
939
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=person-group
940
+ -->
941
+ <define name="person-group">
942
+ <element name="person-group">
943
+ <ref name="person-group-attlist"/>
944
+ <ref name="person-group-model"/>
945
+ </element>
946
+ </define>
947
+ <define name="person-group-attlist" combine="interleave">
948
+ <ref name="person-group-atts"/>
949
+ </define>
950
+ <!-- PUBLICATION IDENTIFIER FOR A CITED PUBLICATION -->
951
+ <!--
952
+ The identifier of a publication such as a
953
+ related journal article that is listed
954
+ within a citation (such as a <mixed-citation>
955
+ or an <element-citation>) inside the
956
+ bibliographic reference list <ref-list> of
957
+ an article.
958
+ Details at:
959
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=pub-id
960
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=pub-id
961
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=pub-id
962
+ -->
963
+ <define name="pub-id">
964
+ <element name="pub-id">
965
+ <ref name="pub-id-attlist"/>
966
+ <text/>
967
+ </element>
968
+ </define>
969
+ <define name="pub-id-attlist" combine="interleave">
970
+ <ref name="pub-id-atts"/>
971
+ </define>
972
+ <!-- SERIES ELEMENTS -->
973
+ <!--
974
+ The elements that can be included along with
975
+ data characters inside the content model of
976
+ <series>
977
+ Design Note: -%rendition-plus; begins with
978
+ an OR bar, so this inline mix begins with
979
+ an OR bar.
980
+ -->
981
+ <define name="series-elements">
982
+ <ref name="rendition-plus"/>
983
+ </define>
984
+ <!-- SERIES -->
985
+ <!--
986
+ Container element for any series information
987
+ used in a citation (such as a <mixed-citation>
988
+ or an <element-citation>). For example,
989
+ within a citation to a non-journal item that
990
+ spans multiple volumes, this element could
991
+ contain the unique title of the entire series:
992
+ Details at:
993
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=series
994
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=series
995
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=series
996
+ -->
997
+ <define name="series">
998
+ <element name="series">
999
+ <ref name="series-attlist"/>
1000
+ <zeroOrMore>
1001
+ <choice>
1002
+ <text/>
1003
+ <ref name="series-elements"/>
1004
+ </choice>
1005
+ </zeroOrMore>
1006
+ </element>
1007
+ </define>
1008
+ <define name="series-attlist" combine="interleave">
1009
+ <ref name="series-atts"/>
1010
+ </define>
1011
+ <!-- STANDARD ELEMENTS -->
1012
+ <!--
1013
+ The elements that can be included along with
1014
+ data characters inside the content model of
1015
+ <std>
1016
+ Design Note: -%rendition-plus; begins with
1017
+ an OR bar, so this inline mix begins with
1018
+ an OR bar.
1019
+ -->
1020
+ <!-- STANDARD, CITED -->
1021
+ <!--
1022
+ The identification information (typically the
1023
+ standard number, organization, and name) for
1024
+ a cited standard, where "standard" is defined
1025
+ as a document produced by a recognized
1026
+ standards body such ISO, IEEE, OASIS, ANSI,
1027
+ etc.
1028
+ Details at:
1029
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=std
1030
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=std
1031
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=std
1032
+ -->
1033
+ <define name="std">
1034
+ <element name="std">
1035
+ <ref name="std-attlist"/>
1036
+ <zeroOrMore>
1037
+ <choice>
1038
+ <text/>
1039
+ <ref name="std-elements"/>
1040
+ </choice>
1041
+ </zeroOrMore>
1042
+ </element>
1043
+ </define>
1044
+ <define name="std-attlist" combine="interleave">
1045
+ <ref name="std-atts"/>
1046
+ </define>
1047
+ <!-- SOURCE -->
1048
+ <!--
1049
+ Within a citation, this is the title of a
1050
+ journal, book, conference proceedings, etc.
1051
+ that is the source of the cited material.
1052
+ Details at:
1053
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=source
1054
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=source
1055
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=source
1056
+ -->
1057
+ <define name="source">
1058
+ <element name="source">
1059
+ <ref name="source-attlist"/>
1060
+ <zeroOrMore>
1061
+ <choice>
1062
+ <text/>
1063
+ <ref name="source-elements"/>
1064
+ </choice>
1065
+ </zeroOrMore>
1066
+ </element>
1067
+ </define>
1068
+ <define name="source-attlist" combine="interleave">
1069
+ <ref name="source-atts"/>
1070
+ </define>
1071
+ <!-- TIME STAMP ELEMENTS -->
1072
+ <!--
1073
+ The elements that can be included along with
1074
+ data characters inside the content model of
1075
+ a <time-stamp>.
1076
+ -->
1077
+ <define name="time-stamp-elements">
1078
+ <notAllowed/>
1079
+ </define>
1080
+ <!-- TIME STAMP FOR CITED WORK -->
1081
+ <!--
1082
+ Used to record any time stamp that was
1083
+ found on the cited resource when it was
1084
+ examined, for resources such as databases
1085
+ that may use a time signature to identify
1086
+ different versions.
1087
+ Details at:
1088
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=time-stamp
1089
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=time-stamp
1090
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=time-stamp
1091
+ -->
1092
+ <define name="time-stamp">
1093
+ <element name="time-stamp">
1094
+ <ref name="time-stamp-attlist"/>
1095
+ <zeroOrMore>
1096
+ <choice>
1097
+ <text/>
1098
+ <ref name="time-stamp-elements"/>
1099
+ </choice>
1100
+ </zeroOrMore>
1101
+ </element>
1102
+ </define>
1103
+ <define name="time-stamp-attlist" combine="interleave">
1104
+ <ref name="time-stamp-atts"/>
1105
+ </define>
1106
+ <!-- TRANSLATED SOURCE -->
1107
+ <!--
1108
+ Within a citation, this is the title of a
1109
+ journal, book, conference proceedings, etc.
1110
+ that is the source of the cited material,
1111
+ but with the source name given in a different
1112
+ language from the source as given in the
1113
+ <source> element. For example, if an article
1114
+ is originally in French, the <source> name
1115
+ would be the French name and the
1116
+ <trans-source> might be in English.
1117
+ Details at:
1118
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=trans-source
1119
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=trans-source
1120
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=trans-source
1121
+ -->
1122
+ <define name="trans-source">
1123
+ <element name="trans-source">
1124
+ <ref name="trans-source-attlist"/>
1125
+ <zeroOrMore>
1126
+ <choice>
1127
+ <text/>
1128
+ <ref name="source-elements"/>
1129
+ </choice>
1130
+ </zeroOrMore>
1131
+ </element>
1132
+ </define>
1133
+ <define name="trans-source-attlist" combine="interleave">
1134
+ <ref name="trans-source-atts"/>
1135
+ </define>
1136
+ </grammar>
1137
+ <!-- ================== End Bibliographic Class Module =========== -->