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,2284 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- ============================================================= -->
3
+ <!-- MODULE: Journal Article Metadata 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 Journal Article Metadata Elements v0.4 20110131//EN"
13
+ Delivered as file "JATS-articlemeta0.ent"
14
+ -->
15
+ <!-- ============================================================= -->
16
+ <!-- ============================================================= -->
17
+ <!-- SYSTEM: Archiving and Interchange DTD Suite -->
18
+ <!---->
19
+ <!-- PURPOSE: Names all elements used to describe the journal -->
20
+ <!-- in which the journal article is published. -->
21
+ <!---->
22
+ <!-- CONTAINS: 1. Article element parameter entity -->
23
+ <!-- 2. Article metadata elements in alphabetical -->
24
+ <!-- order -->
25
+ <!---->
26
+ <!-- CREATED FOR: -->
27
+ <!-- Digital archives and publishers who wish to -->
28
+ <!-- create a custom XML DTD for original markup of -->
29
+ <!-- journal literature, books, and related material, -->
30
+ <!-- or for archiving and transferring such material -->
31
+ <!-- between archives. -->
32
+ <!---->
33
+ <!-- This DTD is in the public domain. An organization -->
34
+ <!-- that wishes to create its own DTD from the suite -->
35
+ <!-- may do so without permission from NLM. -->
36
+ <!---->
37
+ <!-- The suite has been set up to be extended using a -->
38
+ <!-- new DTD file and a new DTD-specific customization -->
39
+ <!-- module to redefine the many Parameter Entities. -->
40
+ <!-- Do not modify the suite directly or redistribute -->
41
+ <!-- modified versions of the suite. -->
42
+ <!---->
43
+ <!-- In the interest of maintaining consistency and -->
44
+ <!-- clarity for potential users, NLM requests: -->
45
+ <!---->
46
+ <!-- 1. If you create a DTD from the Archiving and -->
47
+ <!-- Interchange DTD Suite and intend to stay -->
48
+ <!-- compatible with the suite, then please include -->
49
+ <!-- the following statement as a comment in all of -->
50
+ <!-- your DTD modules: -->
51
+ <!-- "Created from, and fully compatible with, -->
52
+ <!-- the NISO Z39.96 Journal Article Tag Suite -->
53
+ <!-- (JATS)." -->
54
+ <!---->
55
+ <!-- 2. If you alter one or more modules of the suite, -->
56
+ <!-- then please rename your version and all its -->
57
+ <!-- modules to avoid any confusion with the -->
58
+ <!-- original suite. Also, please include the -->
59
+ <!-- following statement as a comment in all your -->
60
+ <!-- DTD modules: -->
61
+ <!-- "Based in part on, but not fully compatible -->
62
+ <!-- with, the NISO Z39.96 Journal Article Tag -->
63
+ <!-- Suite." -->
64
+ <!---->
65
+ <!-- ORIGINAL CREATION DATE: -->
66
+ <!-- December 2002 -->
67
+ <!---->
68
+ <!-- CREATED BY: Jeff Beck (NCBI) -->
69
+ <!-- Deborah Lapeyre (Mulberry Technologies, Inc.) -->
70
+ <!-- Bruce Rosenblum (Inera Inc.) -->
71
+ <!-- B. Tommie Usdin (Mulberry Technologies, Inc.) -->
72
+ <!---->
73
+ <!-- NLM thanks the Harvard University Libraries, both -->
74
+ <!-- for proposing that a draft archiving NLM DTD for -->
75
+ <!-- life sciences journals be extended to accommodate -->
76
+ <!-- journals in all disciplines and for sponsoring -->
77
+ <!-- Bruce Rosenblum's collaboration with other DTD -->
78
+ <!-- authors in completing NLM Version 1.0. The -->
79
+ <!-- Andrew W. Mellon Foundation provided support for -->
80
+ <!-- these important contributions. -->
81
+ <!---->
82
+ <!-- Suggestions for refinements and enhancements to -->
83
+ <!-- the DTD suite should be sent in email to: -->
84
+ <!-- jats@ncbi.nlm.nih.gov -->
85
+ <!---->
86
+ <!-- ============================================================= -->
87
+ <!-- ============================================================= -->
88
+ <!-- DTD VERSION/CHANGE HISTORY -->
89
+ <!-- ============================================================= -->
90
+ <!--
91
+
92
+ Version Reason/Occasion (who) vx.x (yyyy-mm-dd)
93
+
94
+ =============================================================
95
+ Version 0.4 (DAL/BTU) v0.4 (2011-01-31)
96
+
97
+ This Tag Set is in the process of becoming a NISO standard.
98
+ The version numbers are starting over from 0.4", as a Trial
99
+ Use Draft, to be made into "Version 1.0" when the Tag Suite
100
+ becomes a NISO standard. Thus, NLM "Version 3.1 Draft" has
101
+ been changed to NISO "Version 0.4". No model, attribute, or
102
+ parameter entity changes were made as part of this renaming.
103
+
104
+ Details on NISO Tial Use Draft Version 0.4 are available at
105
+ http://jats.nlm.nih.gov/JATS-0.4.
106
+
107
+ 14. Updated the public identifier to "v0.4 20110131//EN",
108
+ modified the formal public identifier to include "JATS (Z39.96)",
109
+ and the filename as delivered to include "JATS" and the
110
+ new version number "0".
111
+
112
+ =============================================================
113
+ Version 3.1 (DAL/BTU) v3.1 (2010-12-30)
114
+
115
+ Version 3.1 typo fixes before NISO release.
116
+
117
+ 13. UNSTRUCTURED KEYWORD GROUP ATTRIBUTES - Made
118
+ &unstructured-kwd-group-atts; into its own PE, as
119
+ documentation stated had already been done.
120
+
121
+ =============================================================
122
+ Version 3.1 (DAL/BTU) v3.1 (2010-04-30)
123
+
124
+ Version 3.1 is fully compatible with Version 3.0, but the
125
+ following change could break some customizations.
126
+
127
+ Details on version 3.1 are available at
128
+ http://jats.nlm.nih.gov/3.1.
129
+
130
+ 12. KEYWORD ATTRIBUTES - To make the tag set more consistent,
131
+ added @content-type to <kwd>, since <compound-kwd> already
132
+ took this attribute. Through %kwd-atts;
133
+
134
+ 11. I18N - At the request of the SBJ Working Group (Japan)
135
+ made <series-text> repeatable inside <article-categories> using
136
+ %article-categories-model;
137
+
138
+ 10. TITLE ELEMENTS - Removed the dependency which had both
139
+ <subtitle> and <alt-title> modeled with the same parameter
140
+ entity %title-elements;. Created new PEs for each element
141
+ but set them (as the default) to %title-elements so that no
142
+ customization would break. Models changed:
143
+ - alt-title %alt-title-elements; defined in common.ent
144
+ - subtitle %subtitle-elements; (moved to this
145
+ module)
146
+
147
+ 9. AFFILIATION ALTERNATIVES - Added the element <aff-alternatives>
148
+ to <article-meta> through %article meta-model;. This element
149
+ will hold multiple <aff>s that are a representation of a
150
+ single affiliation, for example, the name of an institution
151
+ in two languages or two scripts.
152
+
153
+ 8. @SPECIFIC-USE and @XML:LANG - Added the @specific-use and
154
+ @xml:lang to the following elements:
155
+ - alt-title through alt-title-atts (both)
156
+ - article-id through article-id-atts (@specific-use only)
157
+ - author-comment through author-comment-atts (both)
158
+ - author-notes through author-notes-atts (both)
159
+ - article-id through article-id-atts (@xml:lang)
160
+ - contrib through contrib-atts (@specific-use only)
161
+ - contrib-group through contrib-group-atts (@xml:lang)
162
+ - corresp through corresp-atts (@specific-use)
163
+ - degrees through degrees-atts (both)
164
+ - kwd-group through kwd-group-atts (@specific only
165
+ @xml:lang already there)
166
+ - on-behalf-of through on-behalf-of-atts (both) NEW PE
167
+ - product through product-atts (both)
168
+ - pub-date through pub-date-atts (@xml:lang)
169
+ - self-uri through self-uri-atts (both)
170
+ - series-text through series-text-atts (both)
171
+ - series-title through series-title-atts (both)
172
+ - string-conference through string-conference-atts (both)
173
+ - subj-group through subj-group-atts (both)
174
+ - subtitle through subtitle-atts (@specific only
175
+ @xml:lang already there)
176
+ - supplement through supplement-atts (both)
177
+
178
+ 7. TITLE ELEMENTS - Removed the dependency which had both
179
+ <subtitle> and <alt-title> modeled with the same parameter
180
+ entity %title-elements;. Created new PEs for each element
181
+ but set them (as the default) to %title-elements so that no
182
+ customization would break.
183
+
184
+ 6. COUNT ATTRIBUTES - Removed the dependency which had all of
185
+ the count elements using a single attribute list (%count-atts;)
186
+ Created new attributes list PEs for each of them: equation-count,
187
+ fig-count, page-count, ref-count, table-count, and word-count.
188
+ *****Customization Alert: New parameter entities could break
189
+ some customizations. Check the attribute list parameter entity
190
+ for each of the count elements. *****
191
+
192
+ 5. COMPOUND SUBJECT - Created a new element <compound-subject>
193
+ that acts just like <compound-kwd>, in that it takes one or
194
+ more <compound-subject-part>s to allow a complex, multi-
195
+ part subject to be captured. New elements, attribute lists,
196
+ and parameter entities. (An example of a compound subject
197
+ is a code with a textual keyword (A11 Permeability).
198
+ Allowed <compund-subject> as an alternative to <subject>
199
+ inside a <subject-group>.
200
+
201
+ 4. SERIES TEXT ATTRIBUTES - Both <series-title> and
202
+ <series-text> used to use the PE %series-title-atts;. Added the
203
+ PE %series-text-atts;, which is the only one <series-text>
204
+ uses. No documents need change.
205
+ *****Customization Alert: New parameter entity could break some
206
+ customizations. Check your <series-text> attributes. *****
207
+
208
+ 3. TRANSLATED ABSTRACT ATTRIBUTES - Both <abstract> and
209
+ <trans-abstract> used to use the PE %abstract-atts;. Added the
210
+ PE %trans-abstract-atts;, which is the only one <trans-abstract>
211
+ uses. No documents need change.
212
+ *****Customization Alert: New parameter entity could break some
213
+ customizations. Check your <trans-abstract> attributes. *****
214
+
215
+ 2. Updated public identifier to "v3.1 20100830//EN"
216
+
217
+ =============================================================
218
+ Version 3.0 (DAL/BTU) v3.0 (2007-10-31)
219
+
220
+ Version 3.0 is the first non-backward-compatible release.
221
+ In addition to the usual incremental changes, some
222
+ elements and attributes have been renamed and/or remodeled
223
+ to better meet user needs and to increase tag set consistency.
224
+ All module change histories are available through the Tag Suite
225
+ web site at http://dtd.nlm.nih.gov.
226
+
227
+ Details on version 3.0 are available at
228
+ http://jats.nlm.nih.gov/3.0.
229
+
230
+ 1. Updated public identifier to "v3.0 20080202//EN"
231
+ -->
232
+ <!-- ============================================================= -->
233
+ <!-- PARAMETER ENTITIES FOR ATTRIBUTE LISTS -->
234
+ <!-- ============================================================= -->
235
+ <!-- ABSTRACT ATTRIBUTES -->
236
+ <!-- Attributes for the <abstract> element -->
237
+ <grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
238
+ <define name="abstract-atts">
239
+ <optional>
240
+ <attribute name="id">
241
+ <data type="ID"/>
242
+ </attribute>
243
+ </optional>
244
+ <optional>
245
+ <attribute name="abstract-type"/>
246
+ </optional>
247
+ <optional>
248
+ <attribute name="specific-use"/>
249
+ </optional>
250
+ <optional>
251
+ <attribute name="xml:lang">
252
+ <data type="NMTOKEN"/>
253
+ </attribute>
254
+ </optional>
255
+ </define>
256
+ <!-- ALTERNATE TITLE ATTRIBUTES -->
257
+ <!-- Attributes for the <alt-title> element -->
258
+ <define name="alt-title-atts">
259
+ <optional>
260
+ <attribute name="alt-title-type"/>
261
+ </optional>
262
+ <optional>
263
+ <attribute name="specific-use"/>
264
+ </optional>
265
+ <optional>
266
+ <attribute name="xml:lang">
267
+ <data type="NMTOKEN"/>
268
+ </attribute>
269
+ </optional>
270
+ </define>
271
+ <!-- AUTHOR COMMENT ATTRIBUTES -->
272
+ <!-- Attributes for the <author-comment> element -->
273
+ <define name="author-comment-atts">
274
+ <optional>
275
+ <attribute name="id">
276
+ <data type="ID"/>
277
+ </attribute>
278
+ </optional>
279
+ <optional>
280
+ <attribute name="content-type"/>
281
+ </optional>
282
+ <optional>
283
+ <attribute name="specific-use"/>
284
+ </optional>
285
+ <optional>
286
+ <attribute name="xml:lang">
287
+ <data type="NMTOKEN"/>
288
+ </attribute>
289
+ </optional>
290
+ </define>
291
+ <!-- AUTHOR NOTES ATTRIBUTES -->
292
+ <!-- Attributes for the <author-notes> element -->
293
+ <define name="author-notes-atts">
294
+ <optional>
295
+ <attribute name="id">
296
+ <data type="ID"/>
297
+ </attribute>
298
+ </optional>
299
+ <optional>
300
+ <attribute name="rid">
301
+ <data type="IDREFS"/>
302
+ </attribute>
303
+ </optional>
304
+ <optional>
305
+ <attribute name="specific-use"/>
306
+ </optional>
307
+ </define>
308
+ <!-- ARTICLE IDENTIFIER ATTRIBUTES -->
309
+ <!-- Attributes for the <article-id> element -->
310
+ <define name="article-id-atts">
311
+ <optional>
312
+ <attribute name="pub-id-type">
313
+ <choice>
314
+ <ref name="pub-id-types"/>
315
+ </choice>
316
+ </attribute>
317
+ </optional>
318
+ <optional>
319
+ <attribute name="specific-use"/>
320
+ </optional>
321
+ </define>
322
+ <!-- COMPOUND KEYWORD ATTRIBUTES -->
323
+ <!-- Attributes for the <compound-kwd> element -->
324
+ <define name="compound-kwd-atts">
325
+ <optional>
326
+ <attribute name="id">
327
+ <data type="ID"/>
328
+ </attribute>
329
+ </optional>
330
+ <optional>
331
+ <attribute name="content-type"/>
332
+ </optional>
333
+ </define>
334
+ <!-- COMPOUND KEYWORD PART ATTRIBUTES -->
335
+ <!--
336
+ Attributes for the <compound-kwd-part>
337
+ element
338
+ -->
339
+ <define name="compound-kwd-part-atts">
340
+ <optional>
341
+ <attribute name="content-type"/>
342
+ </optional>
343
+ </define>
344
+ <!-- COMPOUND SUBJECT ATTRIBUTES -->
345
+ <!-- Attributes for the <compound-subject> element -->
346
+ <define name="compound-subject-atts">
347
+ <optional>
348
+ <attribute name="id">
349
+ <data type="ID"/>
350
+ </attribute>
351
+ </optional>
352
+ <optional>
353
+ <attribute name="content-type"/>
354
+ </optional>
355
+ </define>
356
+ <!-- COMPOUND SUBJECT PART ATTRIBUTES -->
357
+ <!--
358
+ Attributes for the <compound-subject-part>
359
+ element
360
+ -->
361
+ <define name="compound-subject-part-atts">
362
+ <optional>
363
+ <attribute name="content-type"/>
364
+ </optional>
365
+ </define>
366
+ <!-- CONFERENCE ACRONYM ATTRIBUTES -->
367
+ <!-- Attributes for the <conf-acronym> element -->
368
+ <define name="conf-acronym-atts">
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
+ <!-- CONFERENCE NUMBER ATTRIBUTES -->
382
+ <!-- Attributes for the <conf-num> element -->
383
+ <define name="conf-num-atts">
384
+ <optional>
385
+ <attribute name="content-type"/>
386
+ </optional>
387
+ <optional>
388
+ <attribute name="specific-use"/>
389
+ </optional>
390
+ <optional>
391
+ <attribute name="xml:lang">
392
+ <data type="NMTOKEN"/>
393
+ </attribute>
394
+ </optional>
395
+ </define>
396
+ <!-- CONFERENCE SPONSOR ATTRIBUTES -->
397
+ <!-- Attributes for the <conf-sponsor> element -->
398
+ <!-- CONFERENCE THEME ATTRIBUTES -->
399
+ <!-- Attributes for the <conf-theme> element -->
400
+ <define name="conf-theme-atts">
401
+ <optional>
402
+ <attribute name="content-type"/>
403
+ </optional>
404
+ <optional>
405
+ <attribute name="specific-use"/>
406
+ </optional>
407
+ <optional>
408
+ <attribute name="xml:lang">
409
+ <data type="NMTOKEN"/>
410
+ </attribute>
411
+ </optional>
412
+ </define>
413
+ <!-- CONFERENCE ATTRIBUTES -->
414
+ <!-- Attributes for the <conference> element -->
415
+ <define name="conference-atts">
416
+ <optional>
417
+ <attribute name="content-type"/>
418
+ </optional>
419
+ <optional>
420
+ <attribute name="specific-use"/>
421
+ </optional>
422
+ <optional>
423
+ <attribute name="xml:lang">
424
+ <data type="NMTOKEN"/>
425
+ </attribute>
426
+ </optional>
427
+ <ref name="might-link-atts"/>
428
+ </define>
429
+ <!-- CONTRIBUTOR ATTRIBUTES -->
430
+ <!-- Attributes for the <contrib> element -->
431
+ <define name="contrib-atts">
432
+ <optional>
433
+ <attribute name="contrib-type"/>
434
+ </optional>
435
+ <optional>
436
+ <attribute name="id">
437
+ <data type="ID"/>
438
+ </attribute>
439
+ </optional>
440
+ <optional>
441
+ <attribute name="corresp">
442
+ <choice>
443
+ <value>no</value>
444
+ <value>yes</value>
445
+ </choice>
446
+ </attribute>
447
+ </optional>
448
+ <optional>
449
+ <attribute name="equal-contrib">
450
+ <choice>
451
+ <value>no</value>
452
+ <value>yes</value>
453
+ </choice>
454
+ </attribute>
455
+ </optional>
456
+ <optional>
457
+ <attribute name="deceased">
458
+ <choice>
459
+ <value>no</value>
460
+ <value>yes</value>
461
+ </choice>
462
+ </attribute>
463
+ </optional>
464
+ <optional>
465
+ <attribute name="rid">
466
+ <data type="IDREFS"/>
467
+ </attribute>
468
+ </optional>
469
+ <optional>
470
+ <attribute name="specific-use"/>
471
+ </optional>
472
+ <ref name="might-link-atts"/>
473
+ </define>
474
+ <!-- CONTRIBUTOR GROUP ATTRIBUTES -->
475
+ <!-- Attributes for the <contrib-group> element -->
476
+ <define name="contrib-group-atts">
477
+ <optional>
478
+ <attribute name="id">
479
+ <data type="ID"/>
480
+ </attribute>
481
+ </optional>
482
+ <optional>
483
+ <attribute name="content-type"/>
484
+ </optional>
485
+ <optional>
486
+ <attribute name="specific-use"/>
487
+ </optional>
488
+ </define>
489
+ <!-- CORRESPONDING ATTRIBUTES -->
490
+ <!-- Attributes for the <corresp> element -->
491
+ <define name="corresp-atts">
492
+ <optional>
493
+ <attribute name="id">
494
+ <data type="ID"/>
495
+ </attribute>
496
+ </optional>
497
+ <optional>
498
+ <attribute name="content-type"/>
499
+ </optional>
500
+ <optional>
501
+ <attribute name="specific-use"/>
502
+ </optional>
503
+ <optional>
504
+ <attribute name="xml:lang">
505
+ <data type="NMTOKEN"/>
506
+ </attribute>
507
+ </optional>
508
+ </define>
509
+ <!-- DEGREES ATTRIBUTES -->
510
+ <!-- Attributes for the <degrees> element -->
511
+ <define name="degrees-atts">
512
+ <optional>
513
+ <attribute name="content-type"/>
514
+ </optional>
515
+ <optional>
516
+ <attribute name="specific-use"/>
517
+ </optional>
518
+ <optional>
519
+ <attribute name="xml:lang">
520
+ <data type="NMTOKEN"/>
521
+ </attribute>
522
+ </optional>
523
+ </define>
524
+ <!-- EQUATION COUNT ATTRIBUTES -->
525
+ <!-- Attributes for the <equation-count> element -->
526
+ <define name="equation-count-atts">
527
+ <attribute name="count">
528
+ <data type="NMTOKEN"/>
529
+ </attribute>
530
+ </define>
531
+ <!-- FIGURE COUNT ATTRIBUTES -->
532
+ <!-- Attributes for the <fig-count> element -->
533
+ <define name="fig-count-atts">
534
+ <attribute name="count">
535
+ <data type="NMTOKEN"/>
536
+ </attribute>
537
+ </define>
538
+ <!-- KEYWORD ATTRIBUTES -->
539
+ <!-- Attributes for the <kwd> element -->
540
+ <define name="kwd-atts">
541
+ <optional>
542
+ <attribute name="id">
543
+ <data type="ID"/>
544
+ </attribute>
545
+ </optional>
546
+ <optional>
547
+ <attribute name="content-type"/>
548
+ </optional>
549
+ </define>
550
+ <!-- KEYWORD GROUP ATTRIBUTES -->
551
+ <!-- Attributes for the <kwd-group> element -->
552
+ <define name="kwd-group-atts">
553
+ <optional>
554
+ <attribute name="id">
555
+ <data type="ID"/>
556
+ </attribute>
557
+ </optional>
558
+ <optional>
559
+ <attribute name="kwd-group-type"/>
560
+ </optional>
561
+ <optional>
562
+ <attribute name="specific-use"/>
563
+ </optional>
564
+ <optional>
565
+ <attribute name="xml:lang">
566
+ <data type="NMTOKEN"/>
567
+ </attribute>
568
+ </optional>
569
+ </define>
570
+ <!-- ON BEHALF OF ATTRIBUTES -->
571
+ <!-- Attributes for the <on-behalf-of> element -->
572
+ <define name="on-behalf-of-atts">
573
+ <optional>
574
+ <attribute name="specific-use"/>
575
+ </optional>
576
+ <optional>
577
+ <attribute name="xml:lang">
578
+ <data type="NMTOKEN"/>
579
+ </attribute>
580
+ </optional>
581
+ </define>
582
+ <!-- PAGE COUNT ATTRIBUTES -->
583
+ <!-- Attributes for the <page-count> element -->
584
+ <define name="page-count-atts">
585
+ <attribute name="count">
586
+ <data type="NMTOKEN"/>
587
+ </attribute>
588
+ </define>
589
+ <!-- PRODUCT ATTRIBUTES -->
590
+ <!-- Attributes for the <product> element -->
591
+ <define name="product-atts">
592
+ <optional>
593
+ <attribute name="id">
594
+ <data type="ID"/>
595
+ </attribute>
596
+ </optional>
597
+ <optional>
598
+ <attribute name="product-type"/>
599
+ </optional>
600
+ <optional>
601
+ <attribute name="specific-use"/>
602
+ </optional>
603
+ <optional>
604
+ <attribute name="xml:lang">
605
+ <data type="NMTOKEN"/>
606
+ </attribute>
607
+ </optional>
608
+ <ref name="might-link-atts"/>
609
+ </define>
610
+ <!-- PUBLICATION DATE ATTRIBUTES -->
611
+ <!-- Attributes for the <pub-date> element -->
612
+ <define name="pub-date-atts">
613
+ <optional>
614
+ <attribute name="pub-type"/>
615
+ </optional>
616
+ </define>
617
+ <!-- REFERENCE (CITATION) COUNT ATTRIBUTES -->
618
+ <!-- Attributes for the <ref-count> element -->
619
+ <define name="ref-count-atts">
620
+ <attribute name="count">
621
+ <data type="NMTOKEN"/>
622
+ </attribute>
623
+ </define>
624
+ <!-- SELF URI ATTRIBUTES -->
625
+ <!-- Attributes for the <self-uri> element -->
626
+ <define name="self-uri-atts">
627
+ <optional>
628
+ <attribute name="content-type"/>
629
+ </optional>
630
+ <optional>
631
+ <attribute name="specific-use"/>
632
+ </optional>
633
+ <optional>
634
+ <attribute name="xml:lang">
635
+ <data type="NMTOKEN"/>
636
+ </attribute>
637
+ </optional>
638
+ <ref name="might-link-atts"/>
639
+ </define>
640
+ <!-- SERIES TEXT ATTRIBUTES -->
641
+ <!-- Attributes for the <series-text> element -->
642
+ <define name="series-text-atts">
643
+ <optional>
644
+ <attribute name="content-type"/>
645
+ </optional>
646
+ <optional>
647
+ <attribute name="specific-use"/>
648
+ </optional>
649
+ <optional>
650
+ <attribute name="xml:lang">
651
+ <data type="NMTOKEN"/>
652
+ </attribute>
653
+ </optional>
654
+ </define>
655
+ <!-- SERIES TITLE ATTRIBUTES -->
656
+ <!-- Attributes for the <series-title> element -->
657
+ <define name="series-title-atts">
658
+ <optional>
659
+ <attribute name="content-type"/>
660
+ </optional>
661
+ <optional>
662
+ <attribute name="specific-use"/>
663
+ </optional>
664
+ <optional>
665
+ <attribute name="xml:lang">
666
+ <data type="NMTOKEN"/>
667
+ </attribute>
668
+ </optional>
669
+ </define>
670
+ <!-- STRING CONFERENCE ATTRIBUTES -->
671
+ <!-- Attributes for the <string-conf> element -->
672
+ <define name="string-conf-atts">
673
+ <optional>
674
+ <attribute name="content-type"/>
675
+ </optional>
676
+ <optional>
677
+ <attribute name="specific-use"/>
678
+ </optional>
679
+ <optional>
680
+ <attribute name="xml:lang">
681
+ <data type="NMTOKEN"/>
682
+ </attribute>
683
+ </optional>
684
+ </define>
685
+ <!-- SUBJECT GROUP ATTRIBUTES -->
686
+ <!-- Attributes for the <subj-group> element -->
687
+ <define name="subj-group-atts">
688
+ <optional>
689
+ <attribute name="subj-group-type"/>
690
+ </optional>
691
+ <optional>
692
+ <attribute name="specific-use"/>
693
+ </optional>
694
+ <optional>
695
+ <attribute name="xml:lang">
696
+ <data type="NMTOKEN"/>
697
+ </attribute>
698
+ </optional>
699
+ </define>
700
+ <!-- SUBJECT ATTRIBUTES -->
701
+ <!-- Attributes for the <subject> element -->
702
+ <define name="subject-atts">
703
+ <optional>
704
+ <attribute name="id">
705
+ <data type="ID"/>
706
+ </attribute>
707
+ </optional>
708
+ <optional>
709
+ <attribute name="content-type"/>
710
+ </optional>
711
+ </define>
712
+ <!-- SUBTITLE ATTRIBUTES -->
713
+ <!-- Attributes for the <subtitle> element -->
714
+ <define name="subtitle-atts">
715
+ <optional>
716
+ <attribute name="content-type"/>
717
+ </optional>
718
+ <optional>
719
+ <attribute name="specific-use"/>
720
+ </optional>
721
+ <optional>
722
+ <attribute name="xml:lang">
723
+ <data type="NMTOKEN"/>
724
+ </attribute>
725
+ </optional>
726
+ </define>
727
+ <!-- SUPPLEMENT ATTRIBUTES -->
728
+ <!-- Attributes for the <supplement> element -->
729
+ <define name="supplement-atts">
730
+ <optional>
731
+ <attribute name="supplement-type"/>
732
+ </optional>
733
+ <optional>
734
+ <attribute name="specific-use"/>
735
+ </optional>
736
+ <optional>
737
+ <attribute name="xml:lang">
738
+ <data type="NMTOKEN"/>
739
+ </attribute>
740
+ </optional>
741
+ </define>
742
+ <!-- TABLE COUNT ATTRIBUTES -->
743
+ <!-- Attributes for the <table-count> element -->
744
+ <define name="table-count-atts">
745
+ <attribute name="count">
746
+ <data type="NMTOKEN"/>
747
+ </attribute>
748
+ </define>
749
+ <!-- TRANSLATED ABSTRACT ATTRIBUTES -->
750
+ <!-- Attributes for the <trans-abstract> element -->
751
+ <define name="trans-abstract-atts">
752
+ <optional>
753
+ <attribute name="id">
754
+ <data type="ID"/>
755
+ </attribute>
756
+ </optional>
757
+ <optional>
758
+ <attribute name="abstract-type"/>
759
+ </optional>
760
+ <optional>
761
+ <attribute name="specific-use"/>
762
+ </optional>
763
+ <optional>
764
+ <attribute name="xml:lang">
765
+ <data type="NMTOKEN"/>
766
+ </attribute>
767
+ </optional>
768
+ </define>
769
+ <!-- UNSTRUCTURED KEYWORD GROUP ATTRIBUTES -->
770
+ <!--
771
+ Attributes for the <unstructured-kwd-group>
772
+ element
773
+ -->
774
+ <define name="unstructured-kwd-group-atts">
775
+ <optional>
776
+ <attribute name="id">
777
+ <data type="ID"/>
778
+ </attribute>
779
+ </optional>
780
+ <optional>
781
+ <attribute name="kwd-group-type"/>
782
+ </optional>
783
+ <optional>
784
+ <attribute name="specific-use"/>
785
+ </optional>
786
+ <optional>
787
+ <attribute name="xml:lang">
788
+ <data type="NMTOKEN"/>
789
+ </attribute>
790
+ </optional>
791
+ </define>
792
+ <!-- WORD COUNT ATTRIBUTES -->
793
+ <!-- Attributes for the <word-count> element -->
794
+ <define name="word-count-atts">
795
+ <attribute name="count">
796
+ <data type="NMTOKEN"/>
797
+ </attribute>
798
+ </define>
799
+ <!-- ============================================================= -->
800
+ <!-- ARTICLE METADATA -->
801
+ <!-- ============================================================= -->
802
+ <!-- ARTICLE METADATA MODEL -->
803
+ <!--
804
+ Complete content model for the <article-meta>
805
+ element, which names the journal article
806
+ metadata
807
+ -->
808
+ <!--
809
+ ELEM address links (email | ext-link | uri)
810
+ Defined in %funding.ent;
811
+ -->
812
+ <!-- ELEM aff Defined in %common.ent; -->
813
+ <!--
814
+ ELEM copyright-statement
815
+ Defined in %common0.ent"
816
+ -->
817
+ <!--
818
+ ELEM copyright-year
819
+ Defined in %common0.ent"
820
+ -->
821
+ <!--
822
+ ELEM custom-meta-group
823
+ Defined in %common.ent;
824
+ -->
825
+ <!-- ELEM elocation-id Defined in %common.ent; -->
826
+ <!-- ELEM ext-link Defined in %common.ent; -->
827
+ <!-- ELEM fpage Defined in %common.ent; -->
828
+ <!--
829
+ ELEM funding-group
830
+ Defined in %funding.ent;
831
+ -->
832
+ <!-- ELEM isbn Defined in %common.ent; -->
833
+ <!-- ELEM issue Defined in %common.ent; -->
834
+ <!-- ELEM issue-id Defined in %common.ent; -->
835
+ <!-- ELEM issue-title Defined in %common.ent; -->
836
+ <!--
837
+ ELEM issue-sponsor
838
+ Defined in %common.ent;
839
+ -->
840
+ <!-- ELEM license Defined in %common0.ent" -->
841
+ <!-- ELEM lpage Defined in %common.ent; -->
842
+ <!-- ELEM page-range Defined in %common0.ent" -->
843
+ <!-- ELEM permissions Defined in %common0.ent" -->
844
+ <!--
845
+ ELEM related-article
846
+ Defined in %common.ent;
847
+ -->
848
+ <!--
849
+ ELEM supplementary-material
850
+ Defined in %display.ent;
851
+ -->
852
+ <!-- ELEM volume Defined in %common.ent; -->
853
+ <!-- ELEM volume-id Defined in %common.ent; -->
854
+ <!--
855
+ ELEM volume-series
856
+ Defined in %common.ent;
857
+ -->
858
+ <!-- ARTICLE METADATA -->
859
+ <!--
860
+ Metadata that identifies this article, for
861
+ example, bibliographic information such as
862
+ the title, author, and copyright year.
863
+ Details at:
864
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=article-meta
865
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=article-meta
866
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=article-meta
867
+ -->
868
+ <define name="article-meta">
869
+ <element name="article-meta">
870
+ <ref name="article-meta-attlist"/>
871
+ <ref name="article-meta-model"/>
872
+ </element>
873
+ </define>
874
+ <define name="article-meta-attlist" combine="interleave">
875
+ <empty/>
876
+ </define>
877
+ <!-- ============================================================= -->
878
+ <!-- ARTICLE METADATA ELEMENTS -->
879
+ <!-- ============================================================= -->
880
+ <!-- ARTICLE IDENTIFIER -->
881
+ <!--
882
+ Optional element, used to hold one of the
883
+ "unique identifiers" that have been assigned
884
+ at various times to an article. Such
885
+ identifiers may come from a publisher, a
886
+ jobber, from PubMed Central, etc.
887
+ Details at:
888
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=article-id
889
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=article-id
890
+ -->
891
+ <define name="article-id">
892
+ <element name="article-id">
893
+ <ref name="article-id-attlist"/>
894
+ <text/>
895
+ </element>
896
+ </define>
897
+ <define name="article-id-attlist" combine="interleave">
898
+ <ref name="article-id-atts"/>
899
+ </define>
900
+ <!-- ============================================================= -->
901
+ <!-- ARTICLE GROUPING DATA (ARTICLE METADATA) -->
902
+ <!-- ============================================================= -->
903
+ <!-- ARTICLE CATEGORIES MODEL -->
904
+ <!--
905
+ Complete content model for the
906
+ <article-categories> element
907
+ -->
908
+ <define name="article-categories-model">
909
+ <zeroOrMore>
910
+ <ref name="subj-group"/>
911
+ </zeroOrMore>
912
+ <zeroOrMore>
913
+ <ref name="series-title"/>
914
+ </zeroOrMore>
915
+ <zeroOrMore>
916
+ <ref name="series-text"/>
917
+ </zeroOrMore>
918
+ </define>
919
+ <!-- ARTICLE GROUPING DATA -->
920
+ <!--
921
+ Container for elements that may be used to
922
+ group articles into related clusters
923
+ Details at:
924
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=article-categories
925
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=article-categories
926
+ -->
927
+ <define name="article-categories">
928
+ <element name="article-categories">
929
+ <ref name="article-categories-attlist"/>
930
+ <ref name="article-categories-model"/>
931
+ </element>
932
+ </define>
933
+ <define name="article-categories-attlist" combine="interleave">
934
+ <empty/>
935
+ </define>
936
+ <!-- SUBJECT GROUP MODEL -->
937
+ <!--
938
+ Complete content model for the <subj-group>
939
+ element
940
+ -->
941
+ <define name="subj-group-model">
942
+ <oneOrMore>
943
+ <choice>
944
+ <ref name="subject"/>
945
+ <ref name="compound-subject"/>
946
+ </choice>
947
+ </oneOrMore>
948
+ <zeroOrMore>
949
+ <ref name="subj-group"/>
950
+ </zeroOrMore>
951
+ </define>
952
+ <!--
953
+ GROUPING ARTICLES IN TITLED CATEGORIES
954
+ Container element that collects multiple
955
+ subjects and/or hierarchically lower subject
956
+ groups.
957
+ Remarks: For some journals, articles are
958
+ grouped into categories, with the category
959
+ indicated in the article's display.
960
+ Sometimes the grouping or category refers
961
+ to the type of article, such as "Essay",
962
+ "Commentary", or "Article". Sometimes the
963
+ grouping refers to subject areas, such as
964
+ "Physical Sciences", "Biological Sciences",
965
+ or "Social Sciences".
966
+ Details at:
967
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=subj-group
968
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=subj-group
969
+ -->
970
+ <define name="subj-group">
971
+ <element name="subj-group">
972
+ <ref name="subj-group-attlist"/>
973
+ <ref name="subj-group-model"/>
974
+ </element>
975
+ </define>
976
+ <define name="subj-group-attlist" combine="interleave">
977
+ <ref name="subj-group-atts"/>
978
+ </define>
979
+ <!-- SUBJECT ELEMENTS -->
980
+ <!--
981
+ Elements that may be used, along with data
982
+ characters inside the content model of the
983
+ <subject> element
984
+ -->
985
+ <define name="subject-elements">
986
+ <choice>
987
+ <ref name="emphasis.class"/>
988
+ <ref name="inline-display.class"/>
989
+ <ref name="inline-math.class"/>
990
+ <ref name="phrase-content.class"/>
991
+ <ref name="subsup.class"/>
992
+ </choice>
993
+ </define>
994
+ <!-- SUBJECT NAME -->
995
+ <!--
996
+ The name of one of the subject groups used
997
+ to describe an article. Such groups are
998
+ used, typically, to provide headings for
999
+ groups of articles in a printed or online
1000
+ generated Table of Contents.
1001
+ Details at:
1002
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=subject
1003
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=subject
1004
+ -->
1005
+ <define name="subject">
1006
+ <element name="subject">
1007
+ <ref name="subject-attlist"/>
1008
+ <zeroOrMore>
1009
+ <choice>
1010
+ <text/>
1011
+ <ref name="subject-elements"/>
1012
+ </choice>
1013
+ </zeroOrMore>
1014
+ </element>
1015
+ </define>
1016
+ <define name="subject-attlist" combine="interleave">
1017
+ <ref name="subject-atts"/>
1018
+ </define>
1019
+ <!-- COMPOUND SUBJECT MODEL -->
1020
+ <!--
1021
+ Complete content model for the
1022
+ <compound-subject> element
1023
+ -->
1024
+ <define name="compound-subject-model">
1025
+ <oneOrMore>
1026
+ <ref name="compound-subject-part"/>
1027
+ </oneOrMore>
1028
+ </define>
1029
+ <!-- COMPOUND SUBJECT NAME -->
1030
+ <!--
1031
+ Container element to hold all the parts of a
1032
+ multipart subject, for example, a subject that
1033
+ is comprised of both a term and a code value
1034
+ that represents that term.
1035
+ Related Elements: If a subject is only a word
1036
+ or phrase (Neuroscience, Physical Sciences),
1037
+ the simple <subject> element can be used to
1038
+ capture this information. If a subject is
1039
+ logically both a term and a code
1040
+ (A11 Permeability) but only one of those
1041
+ objects needs to be captured, a <subject>
1042
+ element may also be used. If it is useful to
1043
+ record both the code and the term, they can
1044
+ each be captured as one
1045
+ <compound-subject-part>s inside a
1046
+ <compound-subject>.
1047
+ Details at:
1048
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=compound-subject
1049
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=compound-subject
1050
+ -->
1051
+ <define name="compound-subject">
1052
+ <element name="compound-subject">
1053
+ <ref name="compound-subject-attlist"/>
1054
+ <ref name="compound-subject-model"/>
1055
+ </element>
1056
+ </define>
1057
+ <define name="compound-subject-attlist" combine="interleave">
1058
+ <ref name="compound-subject-atts"/>
1059
+ </define>
1060
+ <!-- COMPOUND SUBJECT PART ELEMENTS -->
1061
+ <!--
1062
+ Elements that may be used, along with data
1063
+ characters inside the content model of the
1064
+ <compound-subject> element
1065
+ -->
1066
+ <define name="compound-subject-part-elements">
1067
+ <choice>
1068
+ <ref name="emphasis.class"/>
1069
+ <ref name="inline-display.class"/>
1070
+ <ref name="inline-math.class"/>
1071
+ <ref name="phrase-content.class"/>
1072
+ <ref name="subsup.class"/>
1073
+ </choice>
1074
+ </define>
1075
+ <!-- COMPOUND SUBJECT PART NAME -->
1076
+ <!--
1077
+ The name of one of the subject groups used
1078
+ to describe an article, when that article is
1079
+ a multi-part rather than a simple subject.
1080
+ Such groups are used, typically, to provide
1081
+ headings for groups of articles in a printed
1082
+ or online generated Table of Contents. The
1083
+ @content type attribute should be used to
1084
+ indicate the type of part ("text", "code",
1085
+ "sponsor", etc.).
1086
+ Details at:
1087
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=compound-subject-part
1088
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=compound-subject-part
1089
+ -->
1090
+ <define name="compound-subject-part">
1091
+ <element name="compound-subject-part">
1092
+ <ref name="compound-subject-part-attlist"/>
1093
+ <zeroOrMore>
1094
+ <choice>
1095
+ <text/>
1096
+ <ref name="compound-subject-part-elements"/>
1097
+ </choice>
1098
+ </zeroOrMore>
1099
+ </element>
1100
+ </define>
1101
+ <define name="compound-subject-part-attlist" combine="interleave">
1102
+ <ref name="compound-subject-part-atts"/>
1103
+ </define>
1104
+ <!-- ============================================================= -->
1105
+ <!-- SERIES INFORMATION -->
1106
+ <!-- ============================================================= -->
1107
+ <!--
1108
+ GROUPING ARTICLES IN SERIES
1109
+ Series (as used in the <series-title> and
1110
+ <series-text> elements described below) is
1111
+ used in two different senses. Some issues of
1112
+ journals are part of a series and will have
1113
+ series information just as they have an
1114
+ issue number as part of the article metadata,
1115
+ to describe the issue of the journal in which
1116
+ the article is published. The second usage
1117
+ is for groupings of articles within one
1118
+ issue of a journal. For example, in some
1119
+ journals, articles are grouped into a
1120
+ series such as "From the Cover" and
1121
+ identified as part of a series.
1122
+ The Series Title element names the series
1123
+ and the Series Text element provides textual
1124
+ description (if any) describing the series.
1125
+ -->
1126
+ <!-- SERIES TITLE ELEMENTS -->
1127
+ <!--
1128
+ Elements that may be used, along with data
1129
+ characters inside the content model of the
1130
+ <series-title> element
1131
+ -->
1132
+ <define name="series-title-elements">
1133
+ <ref name="rendition-plus"/>
1134
+ </define>
1135
+ <!-- SERIES TITLE -->
1136
+ <!--
1137
+ Title of the journal series (bibliographic
1138
+ meaning) or the title of a series of
1139
+ articles internal to one issue of a journal
1140
+ Details at:
1141
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=series-title
1142
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=series-title
1143
+ -->
1144
+ <define name="series-title">
1145
+ <element name="series-title">
1146
+ <ref name="series-title-attlist"/>
1147
+ <zeroOrMore>
1148
+ <choice>
1149
+ <text/>
1150
+ <ref name="series-title-elements"/>
1151
+ </choice>
1152
+ </zeroOrMore>
1153
+ </element>
1154
+ </define>
1155
+ <define name="series-title-attlist" combine="interleave">
1156
+ <ref name="series-title-atts"/>
1157
+ </define>
1158
+ <!-- SERIES TEXT ELEMENTS -->
1159
+ <!--
1160
+ Elements that may be used, along with data
1161
+ characters inside the content model of the
1162
+ <series-text> element
1163
+ -->
1164
+ <define name="series-text-elements">
1165
+ <ref name="rendition-plus"/>
1166
+ </define>
1167
+ <!-- SERIES TEXT: HEADER TEXT to DESCRIBE -->
1168
+ <!--
1169
+ Textual description of the series of articles
1170
+ that are named in a <series-title> element
1171
+ Details at:
1172
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=series-text
1173
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=series-text
1174
+ -->
1175
+ <define name="series-text">
1176
+ <element name="series-text">
1177
+ <ref name="series-text-attlist"/>
1178
+ <zeroOrMore>
1179
+ <choice>
1180
+ <text/>
1181
+ <ref name="series-text-elements"/>
1182
+ </choice>
1183
+ </zeroOrMore>
1184
+ </element>
1185
+ </define>
1186
+ <define name="series-text-attlist" combine="interleave">
1187
+ <ref name="series-text-atts"/>
1188
+ </define>
1189
+ <!-- ============================================================= -->
1190
+ <!-- TOP-LEVEL ARTICLE METADATA CONTINUED -->
1191
+ <!-- ============================================================= -->
1192
+ <!-- AUTHOR NOTES MODEL -->
1193
+ <!-- Content model for an <author-notes> element. -->
1194
+ <define name="author-notes-model">
1195
+ <optional>
1196
+ <ref name="label"/>
1197
+ </optional>
1198
+ <optional>
1199
+ <ref name="title"/>
1200
+ </optional>
1201
+ <oneOrMore>
1202
+ <choice>
1203
+ <ref name="corresp.class"/>
1204
+ <ref name="fn-link.class"/>
1205
+ <ref name="just-para.class"/>
1206
+ </choice>
1207
+ </oneOrMore>
1208
+ </define>
1209
+ <!-- AUTHOR NOTE GROUP -->
1210
+ <!--
1211
+ Footnotes to authors or notes about authors
1212
+ (and, potentially other contributors) are
1213
+ collected in the Author note group.
1214
+ References to these footnotes are made
1215
+ using the <xref> element.
1216
+ Details at:
1217
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=author-notes
1218
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=author-notes
1219
+ -->
1220
+ <define name="author-notes">
1221
+ <element name="author-notes">
1222
+ <ref name="author-notes-attlist"/>
1223
+ <ref name="author-notes-model"/>
1224
+ </element>
1225
+ </define>
1226
+ <define name="author-notes-attlist" combine="interleave">
1227
+ <ref name="author-notes-atts"/>
1228
+ </define>
1229
+ <!-- ============================================================= -->
1230
+ <!-- PRODUCT REVIEW INFORMATION (PRODUCT METADATA) -->
1231
+ <!-- ============================================================= -->
1232
+ <!-- PRODUCT ELEMENTS -->
1233
+ <!--
1234
+ Elements that may be used inside the
1235
+ <product> element
1236
+ Design Note: All inline mixes begin with an
1237
+ OR bar, but since %simple-text; is an inline
1238
+ mix, the OR bar is already there.
1239
+ -->
1240
+ <define name="product-elements">
1241
+ <choice>
1242
+ <ref name="article-link.class"/>
1243
+ <ref name="break.class"/>
1244
+ <ref name="emphasis.class"/>
1245
+ <ref name="inline-display.class"/>
1246
+ <ref name="inline-math.class"/>
1247
+ <ref name="phrase.class"/>
1248
+ <ref name="price.class"/>
1249
+ <ref name="references.class"/>
1250
+ <ref name="simple-link.class"/>
1251
+ <ref name="subsup.class"/>
1252
+ </choice>
1253
+ </define>
1254
+ <!-- PRODUCT INFORMATION -->
1255
+ <!--
1256
+ Used as a wrapper for metadata for a product
1257
+ (such as a book, software package, hardware
1258
+ component, website etc.) that is being
1259
+ reviewed.
1260
+ Details at:
1261
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=product
1262
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=product
1263
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=product
1264
+ -->
1265
+ <define name="product">
1266
+ <element name="product">
1267
+ <ref name="product-attlist"/>
1268
+ <zeroOrMore>
1269
+ <choice>
1270
+ <text/>
1271
+ <ref name="product-elements"/>
1272
+ </choice>
1273
+ </zeroOrMore>
1274
+ </element>
1275
+ </define>
1276
+ <define name="product-attlist" combine="interleave">
1277
+ <ref name="product-atts"/>
1278
+ </define>
1279
+ <!-- ============================================================= -->
1280
+ <!-- PUBLICATION HISTORY ELEMENTS -->
1281
+ <!-- ============================================================= -->
1282
+ <!-- HISTORY MODEL -->
1283
+ <!-- The content model for the <history> element -->
1284
+ <define name="history-model">
1285
+ <oneOrMore>
1286
+ <ref name="date.class"/>
1287
+ </oneOrMore>
1288
+ </define>
1289
+ <!-- HISTORY: DOCUMENT HISTORY -->
1290
+ <!--
1291
+ Used as a container for dates related to the
1292
+ processing history of the document, such as
1293
+ received date and accepted date.
1294
+ Details at:
1295
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=history
1296
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=history
1297
+ -->
1298
+ <define name="history">
1299
+ <element name="history">
1300
+ <ref name="history-attlist"/>
1301
+ <ref name="history-model"/>
1302
+ </element>
1303
+ </define>
1304
+ <define name="history-attlist" combine="interleave">
1305
+ <empty/>
1306
+ </define>
1307
+ <!-- ============================================================= -->
1308
+ <!-- FURTHER METADATA ELEMENTS -->
1309
+ <!-- ============================================================= -->
1310
+ <!-- SELF-URI ELEMENTS -->
1311
+ <!--
1312
+ Elements to be mixed with data characters
1313
+ inside the <self-uri> element
1314
+ -->
1315
+ <define name="self-uri-elements">
1316
+ <notAllowed/>
1317
+ </define>
1318
+ <!-- URI FOR THIS SAME ARTICLE ONLINE -->
1319
+ <!--
1320
+ Sometimes an article is available in several
1321
+ forms, for example there is the version that
1322
+ was published in print and there is the same
1323
+ article (possibly expanded or with different
1324
+ graphics) available online.
1325
+ The URI (such as a URL) may be used as a
1326
+ live link, typically naming a website or the
1327
+ element content may name the URL, e.g., and
1328
+ use the link attributes to hold the real link:
1329
+ <self-uri xlink:href="...">An expanded
1330
+ version of this article is available
1331
+ online</self-uri>
1332
+ Details at:
1333
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=self-uri
1334
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=self-uri
1335
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=self-uri
1336
+ -->
1337
+ <define name="self-uri">
1338
+ <element name="self-uri">
1339
+ <ref name="self-uri-attlist"/>
1340
+ <zeroOrMore>
1341
+ <choice>
1342
+ <text/>
1343
+ <ref name="self-uri-elements"/>
1344
+ </choice>
1345
+ </zeroOrMore>
1346
+ </element>
1347
+ </define>
1348
+ <define name="self-uri-attlist" combine="interleave">
1349
+ <ref name="self-uri-atts"/>
1350
+ </define>
1351
+ <!-- ============================================================= -->
1352
+ <!-- ABSTRACTS -->
1353
+ <!-- ============================================================= -->
1354
+ <!-- ABSTRACT MODEL -->
1355
+ <!-- Content model for an <abstract> element -->
1356
+ <!-- ABSTRACT -->
1357
+ <!--
1358
+ A short summation of the content of an
1359
+ article.
1360
+ Details at:
1361
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=abstract
1362
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=abstract
1363
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=abstract
1364
+ -->
1365
+ <define name="abstract">
1366
+ <element name="abstract">
1367
+ <ref name="abstract-attlist"/>
1368
+ <ref name="abstract-model"/>
1369
+ </element>
1370
+ </define>
1371
+ <define name="abstract-attlist" combine="interleave">
1372
+ <ref name="abstract-atts"/>
1373
+ </define>
1374
+ <!-- TRANSLATED ABSTRACT MODEL -->
1375
+ <!-- Content model for an <trans-abstract> element. -->
1376
+ <!-- TRANSLATED ABSTRACT -->
1377
+ <!--
1378
+ An abstract that has been translated into
1379
+ another language
1380
+ Details at:
1381
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=trans-abstract
1382
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=trans-abstract
1383
+ -->
1384
+ <define name="trans-abstract">
1385
+ <element name="trans-abstract">
1386
+ <ref name="trans-abstract-attlist"/>
1387
+ <ref name="trans-abstract-model"/>
1388
+ </element>
1389
+ </define>
1390
+ <define name="trans-abstract-attlist" combine="interleave">
1391
+ <ref name="trans-abstract-atts"/>
1392
+ </define>
1393
+ <!-- ============================================================= -->
1394
+ <!-- KEYWORD ELEMENTS -->
1395
+ <!-- ============================================================= -->
1396
+ <!-- KEYWORD GROUP MODEL -->
1397
+ <!-- Content model for a <kwd-group> element -->
1398
+ <define name="kwd-group-model">
1399
+ <optional>
1400
+ <ref name="label"/>
1401
+ </optional>
1402
+ <optional>
1403
+ <ref name="title"/>
1404
+ </optional>
1405
+ <oneOrMore>
1406
+ <ref name="kwd.class"/>
1407
+ </oneOrMore>
1408
+ </define>
1409
+ <!-- KEYWORD GROUP -->
1410
+ <!--
1411
+ Container element for one set of keywords
1412
+ <kwd>s used to describe a document.
1413
+ Details at:
1414
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=kwd-group
1415
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=kwd-group
1416
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=kwd-group
1417
+ -->
1418
+ <define name="kwd-group">
1419
+ <element name="kwd-group">
1420
+ <ref name="kwd-group-attlist"/>
1421
+ <ref name="kwd-group-model"/>
1422
+ </element>
1423
+ </define>
1424
+ <define name="kwd-group-attlist" combine="interleave">
1425
+ <ref name="kwd-group-atts"/>
1426
+ </define>
1427
+ <!-- ELEM title Defined in %common.ent; -->
1428
+ <!-- KEYWORD CONTENT ELEMENTS -->
1429
+ <!--
1430
+ The elements that can be included along with
1431
+ data characters inside the content model of
1432
+ a keyword.
1433
+ -->
1434
+ <!-- KEYWORD -->
1435
+ <!--
1436
+ One subject term, critical expression, key
1437
+ phrase, abbreviation, indexing word, etc.
1438
+ that is associated with the whole document
1439
+ and can be used for identification and
1440
+ indexing purposes.
1441
+ Details at:
1442
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=kwd
1443
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=kwd
1444
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=kwd
1445
+ -->
1446
+ <define name="kwd">
1447
+ <element name="kwd">
1448
+ <ref name="kwd-attlist"/>
1449
+ <zeroOrMore>
1450
+ <choice>
1451
+ <text/>
1452
+ <ref name="kwd-elements"/>
1453
+ </choice>
1454
+ </zeroOrMore>
1455
+ </element>
1456
+ </define>
1457
+ <define name="kwd-attlist" combine="interleave">
1458
+ <ref name="kwd-atts"/>
1459
+ </define>
1460
+ <!-- COMPOUND KEYWORD MODEL -->
1461
+ <!--
1462
+ The content model of the <compound-kwd>
1463
+ element
1464
+ -->
1465
+ <define name="compound-kwd-model">
1466
+ <oneOrMore>
1467
+ <ref name="compound-kwd-part"/>
1468
+ </oneOrMore>
1469
+ </define>
1470
+ <!-- COMPOUND KEYWORD -->
1471
+ <!--
1472
+ Some keywords are simple, a text word or
1473
+ phrase; such keywords can be tagged using the
1474
+ <kwd> element. But other keywords are more
1475
+ complicated:
1476
+ - a code and a term
1477
+ - an abbreviation and its expansion
1478
+ - a hierarchical keyword that carries all
1479
+ the parts of its hierarchy (as index
1480
+ terms do)
1481
+ This element was created to handle these
1482
+ special cases.
1483
+ Details at:
1484
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=compound-kwd
1485
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=compound-kwd
1486
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=compound-kwd
1487
+ -->
1488
+ <define name="compound-kwd">
1489
+ <element name="compound-kwd">
1490
+ <ref name="compound-kwd-attlist"/>
1491
+ <ref name="compound-kwd-model"/>
1492
+ </element>
1493
+ </define>
1494
+ <define name="compound-kwd-attlist" combine="interleave">
1495
+ <ref name="compound-kwd-atts"/>
1496
+ </define>
1497
+ <!-- COMPOUND KEYWORD PART ELEMENTS -->
1498
+ <!--
1499
+ Elements to be mixed with data characters
1500
+ inside the <compound-kwd-part> element
1501
+ -->
1502
+ <!-- COMPOUND KEYWORD PART -->
1503
+ <!--
1504
+ This element was created to hold one
1505
+ component of a complex keyword, for example
1506
+ one for the code and one for the term.
1507
+ Details at:
1508
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=compound-kwd-part
1509
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=compound-kwd-part
1510
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=compound-kwd-part
1511
+ -->
1512
+ <define name="compound-kwd-part">
1513
+ <element name="compound-kwd-part">
1514
+ <ref name="compound-kwd-part-attlist"/>
1515
+ <zeroOrMore>
1516
+ <choice>
1517
+ <text/>
1518
+ <ref name="just-rendition"/>
1519
+ </choice>
1520
+ </zeroOrMore>
1521
+ </element>
1522
+ </define>
1523
+ <define name="compound-kwd-part-attlist" combine="interleave">
1524
+ <ref name="compound-kwd-part-atts"/>
1525
+ </define>
1526
+ <!-- UNSTRUCTURED KEYWORD GROUP ELEMENTS -->
1527
+ <!-- Content model for a <kwd-group> element -->
1528
+ <!-- UNSTRUCTURED KEYWORD GROUP -->
1529
+ <!--
1530
+ Container element for one set of keywords
1531
+ used to describe a document where the
1532
+ individual keywords are not tagged as
1533
+ separate <kwd>s but instead are all run
1534
+ together in one long text field.
1535
+ Details at:
1536
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=unstructured-kwd-group
1537
+ -->
1538
+ <define name="unstructured-kwd-group">
1539
+ <element name="unstructured-kwd-group">
1540
+ <ref name="unstructured-kwd-group-attlist"/>
1541
+ <zeroOrMore>
1542
+ <choice>
1543
+ <text/>
1544
+ <ref name="just-rendition"/>
1545
+ </choice>
1546
+ </zeroOrMore>
1547
+ </element>
1548
+ </define>
1549
+ <define name="unstructured-kwd-group-attlist" combine="interleave">
1550
+ <ref name="unstructured-kwd-group-atts"/>
1551
+ </define>
1552
+ <!-- ============================================================= -->
1553
+ <!-- STILL FURTHER ARTICLE METADATA -->
1554
+ <!-- ============================================================= -->
1555
+ <!-- CORRESPONDENCE INFORMATION ELEMENTS -->
1556
+ <!--
1557
+ The elements that can be included along with
1558
+ data characters inside the content model of
1559
+ the correspondence information.
1560
+ -->
1561
+ <define name="corresp-elements">
1562
+ <choice>
1563
+ <ref name="address.class"/>
1564
+ <ref name="address-link.class"/>
1565
+ <ref name="emphasis.class"/>
1566
+ <ref name="label.class"/>
1567
+ <ref name="phrase-content.class"/>
1568
+ <ref name="subsup.class"/>
1569
+ </choice>
1570
+ </define>
1571
+ <!-- CORRESPONDENCE INFORMATION -->
1572
+ <!--
1573
+ Optional element, used as a container for
1574
+ information concerning which of the authors
1575
+ (or other contributors) is the corresponding
1576
+ contributor, to whom information requests
1577
+ should be addressed.
1578
+ Details at:
1579
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=corresp
1580
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=corresp
1581
+ -->
1582
+ <define name="corresp">
1583
+ <element name="corresp">
1584
+ <ref name="corresp-attlist"/>
1585
+ <zeroOrMore>
1586
+ <choice>
1587
+ <text/>
1588
+ <ref name="corresp-elements"/>
1589
+ </choice>
1590
+ </zeroOrMore>
1591
+ </element>
1592
+ </define>
1593
+ <define name="corresp-attlist" combine="interleave">
1594
+ <ref name="corresp-atts"/>
1595
+ </define>
1596
+ <!-- PUBLICATION DATE MODEL -->
1597
+ <!-- The content model for the element <pub-date> -->
1598
+ <!-- PUBLICATION DATE -->
1599
+ <!--
1600
+ Date of publication or release of the
1601
+ material in one particular format.
1602
+ Details at:
1603
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=pub-date
1604
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=pub-date
1605
+ -->
1606
+ <define name="pub-date">
1607
+ <element name="pub-date">
1608
+ <ref name="pub-date-attlist"/>
1609
+ <ref name="pub-date-model"/>
1610
+ </element>
1611
+ </define>
1612
+ <define name="pub-date-attlist" combine="interleave">
1613
+ <ref name="pub-date-atts"/>
1614
+ </define>
1615
+ <!-- ============================================================= -->
1616
+ <!-- CONFERENCE INFORMATION ELEMENTS -->
1617
+ <!-- ============================================================= -->
1618
+ <!-- CONFERENCE MODEL -->
1619
+ <!-- Content model for the <conference> element -->
1620
+ <!-- CONFERENCE INFORMATION -->
1621
+ <!--
1622
+ The container element for the information
1623
+ about a single conference and its
1624
+ proceedings.
1625
+ Design Note: Conference elements were largely
1626
+ based on Cross-Ref.
1627
+ Details at:
1628
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=conference
1629
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=conference
1630
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=conference
1631
+ -->
1632
+ <define name="conference">
1633
+ <element name="conference">
1634
+ <ref name="conference-attlist"/>
1635
+ <ref name="conference-model"/>
1636
+ </element>
1637
+ </define>
1638
+ <define name="conference-attlist" combine="interleave">
1639
+ <ref name="conference-atts"/>
1640
+ </define>
1641
+ <!-- ELEM conf-date Defined in %common.ent; -->
1642
+ <!-- ELEM conf-name Defined in %common.ent; -->
1643
+ <!-- CONFERENCE ACRONYM ELEMENTS -->
1644
+ <!--
1645
+ The elements that can be included along with
1646
+ data characters inside the content model of
1647
+ the conference acronym.
1648
+ Design Note: All inline mixes begin with an
1649
+ OR bar, but since %simple-text; is an online
1650
+ mix, the OR bar is already there.
1651
+ -->
1652
+ <!-- CONFERENCE ACRONYM -->
1653
+ <!--
1654
+ The short name, popular name, or "jargon
1655
+ name" for a conference, for example,
1656
+ "Extreme" for "Extreme Markup Languages" or
1657
+ "SIGGRAPH" for "Special Interest Group on
1658
+ Computer Graphics".
1659
+ Details at:
1660
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=conf-acronym
1661
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=conf-acronym
1662
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=conf-acronym
1663
+ -->
1664
+ <define name="conf-acronym">
1665
+ <element name="conf-acronym">
1666
+ <ref name="conf-acronym-attlist"/>
1667
+ <zeroOrMore>
1668
+ <choice>
1669
+ <text/>
1670
+ <ref name="conf-acronym-elements"/>
1671
+ </choice>
1672
+ </zeroOrMore>
1673
+ </element>
1674
+ </define>
1675
+ <define name="conf-acronym-attlist" combine="interleave">
1676
+ <ref name="conf-acronym-atts"/>
1677
+ </define>
1678
+ <!-- CONFERENCE NUMBER ELEMENTS -->
1679
+ <!--
1680
+ The elements that can be included along with
1681
+ data characters inside the content model of
1682
+ the conference number.
1683
+ Design Note: All inline mixes begin with an
1684
+ OR bar, but since %simple-text; is an inline
1685
+ mix, the OR bar is already there.
1686
+ -->
1687
+ <!-- CONFERENCE NUMBER -->
1688
+ <!--
1689
+ The sequential number of the conference.
1690
+ Details at:
1691
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=conf-num
1692
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=conf-num
1693
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=conf-num
1694
+ -->
1695
+ <define name="conf-num">
1696
+ <element name="conf-num">
1697
+ <ref name="conf-num-attlist"/>
1698
+ <zeroOrMore>
1699
+ <choice>
1700
+ <text/>
1701
+ <ref name="conf-num-elements"/>
1702
+ </choice>
1703
+ </zeroOrMore>
1704
+ </element>
1705
+ </define>
1706
+ <define name="conf-num-attlist" combine="interleave">
1707
+ <ref name="conf-num-atts"/>
1708
+ </define>
1709
+ <!-- CONFERENCE SPONSOR ELEMENTS -->
1710
+ <!--
1711
+ The elements that can be included along with
1712
+ data characters inside the content model of
1713
+ the conference sponsor.
1714
+ Design Note: All inline mixes begin with an
1715
+ OR bar, but since %simple-text; is an inline
1716
+ mix, the OR bar is already there.
1717
+ -->
1718
+ <!-- CONFERENCE SPONSOR -->
1719
+ <!--
1720
+ One organization that sponsored the
1721
+ conference. If more than one organization
1722
+ sponsored the conference, multiple
1723
+ <conf-sponsor> elements should be used.
1724
+ Details at:
1725
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=conf-sponsor
1726
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=conf-sponsor
1727
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=conf-sponsor
1728
+ -->
1729
+ <define name="conf-sponsor">
1730
+ <element name="conf-sponsor">
1731
+ <ref name="conf-sponsor-attlist"/>
1732
+ <zeroOrMore>
1733
+ <choice>
1734
+ <text/>
1735
+ <ref name="conf-sponsor-elements"/>
1736
+ </choice>
1737
+ </zeroOrMore>
1738
+ </element>
1739
+ </define>
1740
+ <define name="conf-sponsor-attlist" combine="interleave">
1741
+ <ref name="conf-sponsor-atts"/>
1742
+ </define>
1743
+ <!-- CONFERENCE THEME ELEMENTS -->
1744
+ <!--
1745
+ The elements that can be included along with
1746
+ data characters inside the content model of
1747
+ the conference theme.
1748
+ Design Note: All inline mixes begin with an
1749
+ OR bar, but since %simple-text; is an online
1750
+ mix, the OR bar is already there.
1751
+ -->
1752
+ <define name="conf-theme-elements">
1753
+ <ref name="simple-text"/>
1754
+ </define>
1755
+ <!-- CONFERENCE THEME -->
1756
+ <!--
1757
+ The theme, slogan, or major subject area of
1758
+ the conference. For example, the name of an
1759
+ annual conference may be "16th ACH Gathering"
1760
+ but each year has different theme topic,
1761
+ such as "Database Integration" or "Topic
1762
+ Map Subject Access".
1763
+ Details at:
1764
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=conf-theme
1765
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=conf-theme
1766
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=conf-theme
1767
+ -->
1768
+ <define name="conf-theme">
1769
+ <element name="conf-theme">
1770
+ <ref name="conf-theme-attlist"/>
1771
+ <zeroOrMore>
1772
+ <choice>
1773
+ <text/>
1774
+ <ref name="conf-theme-elements"/>
1775
+ </choice>
1776
+ </zeroOrMore>
1777
+ </element>
1778
+ </define>
1779
+ <define name="conf-theme-attlist" combine="interleave">
1780
+ <ref name="conf-theme-atts"/>
1781
+ </define>
1782
+ <!-- STRING CONFERENCE NAME ELEMENTS -->
1783
+ <!--
1784
+ The elements that can be included along with
1785
+ data characters inside the content model of
1786
+ the extended text name of the conference
1787
+ (string-conf>
1788
+ Design Note: %simple-text; begins with an
1789
+ OR bar.
1790
+ -->
1791
+ <define name="string-conf-elements">
1792
+ <choice>
1793
+ <ref name="simple-text"/>
1794
+ <ref name="conference.class"/>
1795
+ </choice>
1796
+ </define>
1797
+ <!-- STRING CONFERENCE NAME -->
1798
+ <!--
1799
+ Details at:
1800
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=string-conf
1801
+ -->
1802
+ <define name="string-conf">
1803
+ <element name="string-conf">
1804
+ <ref name="string-conf-attlist"/>
1805
+ <zeroOrMore>
1806
+ <choice>
1807
+ <text/>
1808
+ <ref name="string-conf-elements"/>
1809
+ </choice>
1810
+ </zeroOrMore>
1811
+ </element>
1812
+ </define>
1813
+ <define name="string-conf-attlist" combine="interleave">
1814
+ <ref name="string-conf-atts"/>
1815
+ </define>
1816
+ <!-- ============================================================= -->
1817
+ <!-- COUNTING INFORMATION (ARTICLE METADATA) -->
1818
+ <!-- ============================================================= -->
1819
+ <define name="counts-model">
1820
+ <optional>
1821
+ <ref name="fig-count"/>
1822
+ </optional>
1823
+ <optional>
1824
+ <ref name="table-count"/>
1825
+ </optional>
1826
+ <optional>
1827
+ <ref name="equation-count"/>
1828
+ </optional>
1829
+ <optional>
1830
+ <ref name="ref-count"/>
1831
+ </optional>
1832
+ <optional>
1833
+ <ref name="page-count"/>
1834
+ </optional>
1835
+ <optional>
1836
+ <ref name="word-count"/>
1837
+ </optional>
1838
+ </define>
1839
+ <!-- COUNTS -->
1840
+ <!--
1841
+ Wrapper element to hold all metadata that
1842
+ "counts how many of something appear in the
1843
+ article
1844
+ Details at:
1845
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=counts
1846
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=counts
1847
+ -->
1848
+ <define name="counts">
1849
+ <element name="counts">
1850
+ <ref name="counts-attlist"/>
1851
+ <ref name="counts-model"/>
1852
+ </element>
1853
+ </define>
1854
+ <define name="counts-attlist" combine="interleave">
1855
+ <empty/>
1856
+ </define>
1857
+ <!-- EQUATION COUNT -->
1858
+ <!--
1859
+ Number of display equations <disp-formula>
1860
+ that appear in the article. Inline-equations
1861
+ <inline-formula> are not counted. No
1862
+ distinction is made between numbered and
1863
+ unnumbered equations, both are counted.
1864
+ Details at:
1865
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=equation-count
1866
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=equation-count
1867
+ -->
1868
+ <define name="equation-count">
1869
+ <element name="equation-count">
1870
+ <ref name="equation-count-attlist"/>
1871
+ <empty/>
1872
+ </element>
1873
+ </define>
1874
+ <define name="equation-count-attlist" combine="interleave">
1875
+ <ref name="equation-count-atts"/>
1876
+ </define>
1877
+ <!-- FIGURE COUNT -->
1878
+ <!--
1879
+ Number of Figures <fig> that appear in the
1880
+ article. Loose <graphic>s that appear
1881
+ outside figures are not counted.
1882
+ Details at:
1883
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=fig-count
1884
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=fig-count
1885
+ -->
1886
+ <define name="fig-count">
1887
+ <element name="fig-count">
1888
+ <ref name="fig-count-attlist"/>
1889
+ <empty/>
1890
+ </element>
1891
+ </define>
1892
+ <define name="fig-count-attlist" combine="interleave">
1893
+ <ref name="fig-count-atts"/>
1894
+ </define>
1895
+ <!-- TABLE COUNT -->
1896
+ <!--
1897
+ Number of tables (Table Wrapper <table-wrap>
1898
+ elements that appear in the article. Arrays
1899
+ are not counted as tables.
1900
+ Details at:
1901
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=table-count
1902
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=table-count
1903
+ -->
1904
+ <define name="table-count">
1905
+ <element name="table-count">
1906
+ <ref name="table-count-attlist"/>
1907
+ <empty/>
1908
+ </element>
1909
+ </define>
1910
+ <define name="table-count-attlist" combine="interleave">
1911
+ <ref name="table-count-atts"/>
1912
+ </define>
1913
+ <!-- REFERENCE COUNT -->
1914
+ <!--
1915
+ Number of reference citations (whether
1916
+ <mixed-citation>s, <element-citation>s, or
1917
+ <nlm-citation>) that appear in the
1918
+ bibliographic reference list <ref-list>
1919
+ in the article
1920
+ Details at:
1921
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=ref-count
1922
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=ref-count
1923
+ -->
1924
+ <define name="ref-count">
1925
+ <element name="ref-count">
1926
+ <ref name="ref-count-attlist"/>
1927
+ <empty/>
1928
+ </element>
1929
+ </define>
1930
+ <define name="ref-count-attlist" combine="interleave">
1931
+ <ref name="ref-count-atts"/>
1932
+ </define>
1933
+ <!-- PAGE COUNT -->
1934
+ <!--
1935
+ Number of pages in a print article, counting
1936
+ each page or partial page as one. Electronic
1937
+ articles do not have page counts.
1938
+ Details at:
1939
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=page-count
1940
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=page-count
1941
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=page-count
1942
+ -->
1943
+ <define name="page-count">
1944
+ <element name="page-count">
1945
+ <ref name="page-count-attlist"/>
1946
+ <empty/>
1947
+ </element>
1948
+ </define>
1949
+ <define name="page-count-attlist" combine="interleave">
1950
+ <ref name="page-count-atts"/>
1951
+ </define>
1952
+ <!-- WORD COUNT -->
1953
+ <!--
1954
+ Approximate number of words that appear in
1955
+ the textual portion of an
1956
+ article (not including the words in the
1957
+ metadata or header information)
1958
+ Details at:
1959
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=word-count
1960
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=word-count
1961
+ -->
1962
+ <define name="word-count">
1963
+ <element name="word-count">
1964
+ <ref name="word-count-attlist"/>
1965
+ <empty/>
1966
+ </element>
1967
+ </define>
1968
+ <define name="word-count-attlist" combine="interleave">
1969
+ <ref name="word-count-atts"/>
1970
+ </define>
1971
+ <!-- ============================================================= -->
1972
+ <!-- TITLE GROUP ELEMENTS (BIBLIOGRAPHIC) -->
1973
+ <!-- ============================================================= -->
1974
+ <!-- TITLE GROUP MODEL -->
1975
+ <!-- Content model for the <title-group> element -->
1976
+ <define name="title-group-model">
1977
+ <ref name="article-title"/>
1978
+ <zeroOrMore>
1979
+ <ref name="subtitle"/>
1980
+ </zeroOrMore>
1981
+ <zeroOrMore>
1982
+ <ref name="trans-title-group"/>
1983
+ </zeroOrMore>
1984
+ <zeroOrMore>
1985
+ <ref name="alt-title"/>
1986
+ </zeroOrMore>
1987
+ <optional>
1988
+ <ref name="fn-group"/>
1989
+ </optional>
1990
+ </define>
1991
+ <!-- TITLE GROUP -->
1992
+ <!--
1993
+ Wrapper element to hold the various article
1994
+ titles.
1995
+ Details at:
1996
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=title-group
1997
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=title-group
1998
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=title-group
1999
+ -->
2000
+ <define name="title-group">
2001
+ <element name="title-group">
2002
+ <ref name="title-group-attlist"/>
2003
+ <ref name="title-group-model"/>
2004
+ </element>
2005
+ </define>
2006
+ <define name="title-group-attlist" combine="interleave">
2007
+ <empty/>
2008
+ </define>
2009
+ <!--
2010
+ ELEM article-title
2011
+ Defined in %common.ent;
2012
+ -->
2013
+ <!-- ELEM trans-title Defined in %common.ent; -->
2014
+ <!-- SUBTITLE ELEMENTS -->
2015
+ <!--
2016
+ The elements that can be included along with
2017
+ data characters inside the content model of
2018
+ a paragraph <subtitle>.
2019
+ An earlier version of this tag set used the
2020
+ parameter entity %title-elements; for many
2021
+ title elements including <subtitle>.
2022
+ -->
2023
+ <define name="subtitle-elements">
2024
+ <ref name="title-elements"/>
2025
+ </define>
2026
+ <!-- ARTICLE SUBTITLE -->
2027
+ <!--
2028
+ Secondary title of a journal article
2029
+ Details at:
2030
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=subtitle
2031
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=subtitle
2032
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=subtitle
2033
+ -->
2034
+ <define name="subtitle">
2035
+ <element name="subtitle">
2036
+ <ref name="subtitle-attlist"/>
2037
+ <zeroOrMore>
2038
+ <choice>
2039
+ <text/>
2040
+ <ref name="subtitle-elements"/>
2041
+ </choice>
2042
+ </zeroOrMore>
2043
+ </element>
2044
+ </define>
2045
+ <define name="subtitle-attlist" combine="interleave">
2046
+ <ref name="subtitle-atts"/>
2047
+ </define>
2048
+ <!-- ALTERNATE TITLE -->
2049
+ <!--
2050
+ A "different" version of an article title,
2051
+ usually created so that it can be processed
2052
+ in a special way, for example a short
2053
+ version of the title for use in a Table of
2054
+ Contents, an ASCII title, a right-running-
2055
+ head title, etc.
2056
+ Details at:
2057
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=alt-title
2058
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=alt-title
2059
+ -->
2060
+ <define name="alt-title">
2061
+ <element name="alt-title">
2062
+ <ref name="alt-title-attlist"/>
2063
+ <zeroOrMore>
2064
+ <choice>
2065
+ <text/>
2066
+ <ref name="alt-title-elements"/>
2067
+ </choice>
2068
+ </zeroOrMore>
2069
+ </element>
2070
+ </define>
2071
+ <define name="alt-title-attlist" combine="interleave">
2072
+ <ref name="alt-title-atts"/>
2073
+ </define>
2074
+ <!-- ============================================================= -->
2075
+ <!-- CONTRIBUTOR GROUP (AUTHOR/EDITOR) ELEMENTS -->
2076
+ <!-- ============================================================= -->
2077
+ <!-- CONTRIBUTOR GROUP MODEL -->
2078
+ <!--
2079
+ Content model for the <contrib-group>
2080
+ element
2081
+ -->
2082
+ <define name="contrib-group-model">
2083
+ <oneOrMore>
2084
+ <ref name="contrib.class"/>
2085
+ </oneOrMore>
2086
+ <zeroOrMore>
2087
+ <ref name="contrib-info.class"/>
2088
+ </zeroOrMore>
2089
+ </define>
2090
+ <!-- CONTRIBUTOR GROUP -->
2091
+ <!--
2092
+ Wrapper element for information concerning
2093
+ a grouping of contributors, such as the
2094
+ primary authors
2095
+ Details at:
2096
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=contrib-group
2097
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=contrib-group
2098
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=contrib-group
2099
+ -->
2100
+ <define name="contrib-group">
2101
+ <element name="contrib-group">
2102
+ <ref name="contrib-group-attlist"/>
2103
+ <ref name="contrib-group-model"/>
2104
+ </element>
2105
+ </define>
2106
+ <define name="contrib-group-attlist" combine="interleave">
2107
+ <ref name="contrib-group-atts"/>
2108
+ </define>
2109
+ <!-- CONTRIBUTOR MODEL -->
2110
+ <!-- Content model for the <contrib> element -->
2111
+ <!-- CONTRIBUTOR -->
2112
+ <!--
2113
+ Wrapper element to contain the information
2114
+ about a single contributor, for example an
2115
+ author or editor.
2116
+ Details at:
2117
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=contrib
2118
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=contrib
2119
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=contrib
2120
+ -->
2121
+ <define name="contrib">
2122
+ <element name="contrib">
2123
+ <ref name="contrib-attlist"/>
2124
+ <ref name="contrib-model"/>
2125
+ </element>
2126
+ </define>
2127
+ <define name="contrib-attlist" combine="interleave">
2128
+ <ref name="contrib-atts"/>
2129
+ </define>
2130
+ <!--
2131
+ ELEM collab Defined %common.ent; (also used inside
2132
+ bibliographic citations)
2133
+ -->
2134
+ <!--
2135
+ ELEM etal Defined %common.ent; (also used inside
2136
+ bibliographic citations)
2137
+ -->
2138
+ <!-- DEGREE(S) ELEMENTS -->
2139
+ <!--
2140
+ The elements that can be included along with
2141
+ data characters inside the content model of
2142
+ <degrees>
2143
+ Design Note: -%just-rendition; begins with
2144
+ an OR bar, so this inline mix begins with
2145
+ an OR bar.
2146
+ -->
2147
+ <!-- DEGREE(S) -->
2148
+ <!--
2149
+ Academic degrees or professional
2150
+ certifications
2151
+ Details at:
2152
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=degrees
2153
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=degrees
2154
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=degrees
2155
+ -->
2156
+ <define name="degrees">
2157
+ <element name="degrees">
2158
+ <ref name="degrees-attlist"/>
2159
+ <zeroOrMore>
2160
+ <choice>
2161
+ <text/>
2162
+ <ref name="degrees-elements"/>
2163
+ </choice>
2164
+ </zeroOrMore>
2165
+ </element>
2166
+ </define>
2167
+ <define name="degrees-attlist" combine="interleave">
2168
+ <ref name="degrees-atts"/>
2169
+ </define>
2170
+ <!-- ON BEHALF OF CONTENT ELEMENTS -->
2171
+ <!--
2172
+ The elements that can be included along with
2173
+ data characters inside the content model of
2174
+ <on-behalf-of>
2175
+ Design Note: -%rendition-plus; begins with
2176
+ an OR bar, so this inline mix beguines with
2177
+ an OR bar.
2178
+ -->
2179
+ <define name="on-behalf-of-elements">
2180
+ <ref name="rendition-plus"/>
2181
+ </define>
2182
+ <!-- ON BEHALF OF -->
2183
+ <!--
2184
+ When a contributor has written or edited
2185
+ a work "on-behalf-of" an organization or
2186
+ group the contributor is acting as a
2187
+ representative of the organization, which
2188
+ may or may not be his/her usual affiliation.
2189
+ Details at:
2190
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=on-behalf-of
2191
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=on-behalf-of
2192
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=on-behalf-of
2193
+ -->
2194
+ <define name="on-behalf-of">
2195
+ <element name="on-behalf-of">
2196
+ <ref name="on-behalf-of-attlist"/>
2197
+ <zeroOrMore>
2198
+ <choice>
2199
+ <text/>
2200
+ <ref name="on-behalf-of-elements"/>
2201
+ </choice>
2202
+ </zeroOrMore>
2203
+ </element>
2204
+ </define>
2205
+ <define name="on-behalf-of-attlist" combine="interleave">
2206
+ <ref name="on-behalf-of-atts"/>
2207
+ </define>
2208
+ <!-- AUTHOR COMMENT MODEL -->
2209
+ <!--
2210
+ Content model for the <author-comment>
2211
+ element
2212
+ -->
2213
+ <define name="author-comment-model">
2214
+ <optional>
2215
+ <ref name="title"/>
2216
+ </optional>
2217
+ <oneOrMore>
2218
+ <ref name="just-para.class"/>
2219
+ </oneOrMore>
2220
+ </define>
2221
+ <!-- AUTHOR COMMENT -->
2222
+ <!--
2223
+ Used for extra textual material associated
2224
+ with a contributor such as an author or
2225
+ editor
2226
+ Details at:
2227
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=author-comment
2228
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=author-comment
2229
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=author-comment
2230
+ -->
2231
+ <define name="author-comment">
2232
+ <element name="author-comment">
2233
+ <ref name="author-comment-attlist"/>
2234
+ <ref name="author-comment-model"/>
2235
+ </element>
2236
+ </define>
2237
+ <define name="author-comment-attlist" combine="interleave">
2238
+ <ref name="author-comment-atts"/>
2239
+ </define>
2240
+ <!-- ============================================================= -->
2241
+ <!-- SUPPLEMENT ELEMENTS -->
2242
+ <!-- ============================================================= -->
2243
+ <!-- SUPPLEMENT ELEMENTS -->
2244
+ <!--
2245
+ Elements for use in the <supplement> element
2246
+ Design Note: All inline mixes begin with an
2247
+ OR bar, but since %simple-text; is an inline
2248
+ mix, the OR bar is already there.
2249
+ -->
2250
+ <define name="supplement-elements">
2251
+ <choice>
2252
+ <ref name="simple-text"/>
2253
+ <ref name="contrib-group.class"/>
2254
+ <ref name="title.class"/>
2255
+ </choice>
2256
+ </define>
2257
+ <!-- SUPPLEMENT -->
2258
+ <!--
2259
+ For a journal published as a supplement, this
2260
+ is a container element for all the provided
2261
+ supplement information, such as additional
2262
+ identification numbers, titles, authors, and
2263
+ supplement series information.
2264
+ Details at:
2265
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=supplement
2266
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=supplement
2267
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=supplement
2268
+ -->
2269
+ <define name="supplement">
2270
+ <element name="supplement">
2271
+ <ref name="supplement-attlist"/>
2272
+ <zeroOrMore>
2273
+ <choice>
2274
+ <text/>
2275
+ <ref name="supplement-elements"/>
2276
+ </choice>
2277
+ </zeroOrMore>
2278
+ </element>
2279
+ </define>
2280
+ <define name="supplement-attlist" combine="interleave">
2281
+ <ref name="supplement-atts"/>
2282
+ </define>
2283
+ </grammar>
2284
+ <!-- ================== End Article Metadata Elements =========== -->