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,4267 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- ============================================================= -->
3
+ <!-- MODULE: Common (Shared) Elements Module -->
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 Common (Shared) Elements Module v0.4 20110131//EN"
13
+ Delivered as file "JATS-common0.ent"
14
+ -->
15
+ <!-- ============================================================= -->
16
+ <!-- ============================================================= -->
17
+ <!-- SYSTEM: Archiving and Interchange DTD Suite -->
18
+ <!---->
19
+ <!-- PURPOSE: Defines the common parameter entities, calls the -->
20
+ <!-- shared modules (such as special characters and -->
21
+ <!-- notations) and provides declarations for elements -->
22
+ <!-- that do not properly fit into one class, since -->
23
+ <!-- they can be used at more than one structural level -->
24
+ <!---->
25
+ <!-- CONTAINS: 1) Default classes for elements defined in this -->
26
+ <!-- module. May be overridden by values in the -->
27
+ <!-- DTD's Customization Module -->
28
+ <!-- 2) Parameter Entities for attribute values -->
29
+ <!-- 3) Parameter Entities for content models -->
30
+ <!-- 4) Parameter Entities for attribute lists -->
31
+ <!-- 5) Elements used in many modules/classes -->
32
+ <!-- - Address elements -->
33
+ <!-- - Date elements -->
34
+ <!-- - Personal name elements -->
35
+ <!-- - Common metadata elements (shared by both -->
36
+ <!-- article metadata and bibliographic -->
37
+ <!-- reference metadata -->
38
+ <!---->
39
+ <!-- MODULES REQUIRED: -->
40
+ <!-- 1) Standard XML Special Characters Module -->
41
+ <!-- (%xmlspecchars.ent;) -->
42
+ <!-- 2) Custom XML Special Characters (%chars.ent;) -->
43
+ <!-- 3) Notation Declarations (%notat.ent;) -->
44
+ <!---->
45
+ <!-- CREATED FOR: -->
46
+ <!-- Digital archives and publishers who wish to -->
47
+ <!-- create a custom XML DTD for original markup of -->
48
+ <!-- journal literature, books, and related material, -->
49
+ <!-- or for archiving and transferring such material -->
50
+ <!-- between archives. -->
51
+ <!---->
52
+ <!-- This DTD is in the public domain. An organization -->
53
+ <!-- that wishes to create its own DTD from the suite -->
54
+ <!-- may do so without permission from NLM. -->
55
+ <!---->
56
+ <!-- The suite has been set up to be extended using a -->
57
+ <!-- new DTD file and a new DTD-specific customization -->
58
+ <!-- module to redefine the many Parameter Entities. -->
59
+ <!-- Do not modify the suite directly or redistribute -->
60
+ <!-- modified versions of the suite. -->
61
+ <!---->
62
+ <!-- In the interest of maintaining consistency and -->
63
+ <!-- clarity for potential users, NLM requests: -->
64
+ <!---->
65
+ <!-- 1. If you create a DTD from the Archiving and -->
66
+ <!-- Interchange DTD Suite and intend to stay -->
67
+ <!-- compatible with the suite, then please include -->
68
+ <!-- the following statement as a comment in all of -->
69
+ <!-- your DTD modules: -->
70
+ <!-- "Created from, and fully compatible with, -->
71
+ <!-- the NISO Z39.96 Journal Article Tag Suite -->
72
+ <!-- (JATS)." -->
73
+ <!---->
74
+ <!-- 2. If you alter one or more modules of the suite, -->
75
+ <!-- then please rename your version and all its -->
76
+ <!-- modules to avoid any confusion with the -->
77
+ <!-- original suite. Also, please include the -->
78
+ <!-- following statement as a comment in all your -->
79
+ <!-- DTD modules: -->
80
+ <!-- "Based in part on, but not fully compatible -->
81
+ <!-- with, the NISO Z39.96 Journal Article Tag -->
82
+ <!-- Suite." -->
83
+ <!---->
84
+ <!-- ORIGINAL CREATION DATE: -->
85
+ <!-- December 2002 -->
86
+ <!---->
87
+ <!-- CREATED BY: Jeff Beck (NCBI) -->
88
+ <!-- Deborah Lapeyre (Mulberry Technologies, Inc.) -->
89
+ <!-- Bruce Rosenblum (Inera Inc.) -->
90
+ <!-- B. Tommie Usdin (Mulberry Technologies, Inc.) -->
91
+ <!---->
92
+ <!-- NLM thanks the Harvard University Libraries, both -->
93
+ <!-- for proposing that a draft archiving NLM DTD for -->
94
+ <!-- life sciences journals be extended to accommodate -->
95
+ <!-- journals in all disciplines and for sponsoring -->
96
+ <!-- Bruce Rosenblum's collaboration with other DTD -->
97
+ <!-- authors in completing NLM Version 1.0. The -->
98
+ <!-- Andrew W. Mellon Foundation provided support for -->
99
+ <!-- these important contributions. -->
100
+ <!---->
101
+ <!-- Suggestions for refinements and enhancements to -->
102
+ <!-- the DTD suite should be sent in email to: -->
103
+ <!-- jats@ncbi.nlm.nih.gov -->
104
+ <!-- important contributions. -->
105
+ <!---->
106
+ <!-- ============================================================= -->
107
+ <!-- ============================================================= -->
108
+ <!-- DTD VERSION/CHANGE HISTORY -->
109
+ <!-- ============================================================= -->
110
+ <!--
111
+
112
+ Version Reason/Occasion (who) vx.x (yyyy-mm-dd)
113
+
114
+ =============================================================
115
+ Version 0.4 (DAL/BTU) v0.4 (2011-01-31)
116
+
117
+ This Tag Set is in the process of becoming a NISO standard.
118
+ The version numbers are starting over from 0.4", as a Trial
119
+ Use Draft, to be made into "Version 1.0" when the Tag Suite
120
+ becomes a NISO standard. Thus, NLM "Version 3.1 Draft" has
121
+ been changed to NISO "Version 0.4". No model, attribute, or
122
+ parameter entity changes were made as part of this renaming.
123
+
124
+ Details on NISO Tial Use Draft Version 0.4 are available at
125
+ http://jats.nlm.nih.gov/JATS-0.4.
126
+
127
+ 19. Updated the public identifier to "v0.4 20110131//EN",
128
+ modified the formal public identifier to include "JATS (Z39.96)",
129
+ and the filename as delivered to include "JATS" and the
130
+ new version number "0".
131
+
132
+ =============================================================
133
+ Version 3.1 (DAL/BTU) v3.1 (2010-12-30)
134
+
135
+ Version 3.1 typo fixes before NISO release.
136
+
137
+ 18. MIXED CITATION ATTS PE - Was defined twice, identically,
138
+ deleted one of them.
139
+
140
+ =============================================================
141
+ Version 3.1 (DAL/BTU) v3.1 (2010-04-30)
142
+
143
+ Version 3.1 is fully compatible with Version 3.0, but the
144
+ following change could break some customizations.
145
+
146
+ Details on version 3.1 are available at
147
+ http://jats.nlm.nih.gov/3.1.
148
+
149
+
150
+ 17. ACCESSIBILITY - Added @alt to <label> thru %label-atts;
151
+
152
+ 16. ALTERNATIVES ATTRIBUTES- Created a new parameter entity for
153
+ attributes for <alternatives>; currently null
154
+
155
+ 15. @SPECIFIC-USE and @XML:LANG - Added the @specific-use and
156
+ @xml:lang to the following elements:
157
+ - anonymous through anonymous-atts (both) NEW PE
158
+ - conf-acronym through conf-acronym-atts (both)
159
+ - conf-date through conf-date-atts (both)
160
+ - conf-loc through conf-loc-atts (both)
161
+ - conf-name through conf-name-atts (both)
162
+ - conf-num through conf-num-atts (both)
163
+ - conf-sponsor through conf-sponsor-atts (both)
164
+ - conf-theme through conf-theme-atts (both)
165
+ - day through day-atts (@specific-use)
166
+ - degrees through degrees-atts (both)
167
+ - element-citation through citation-atts (both)
168
+ - etal through etal-atts (both) NEW PE
169
+ - ext-link through ext-link-atts (@xml:lang; @specific-use
170
+ already)
171
+ - institution through institution-atts (both)
172
+ - issue-part through issue-part (both + content-type) NEW PE
173
+ - isbn through isbn-atts (both) NEW PE
174
+ - label through label-atts (both) NEW PE
175
+ - mixed-citation through citation-atts (both)
176
+ - name through name-atts (@xml:lang; @specific-use already)
177
+ - notes through notes-atts (both)
178
+ - prefix through prefix-atts (both)
179
+ - publisher-loc through publisher-loc-atts (both)
180
+ - publisher-name through publisher-name-atts (both)
181
+ - string-name through string-name-atts (both and
182
+ content-type and name-style) NEW PE
183
+ - suffix through suffix-atts (both)
184
+ - textual-form through textual-form-atts (both)
185
+ - trans-subtitle through trans-subtitle-atts
186
+ (@xml:lang only) NEW PE
187
+ - x-name through x-name-atts (both)
188
+
189
+ 14. AFFILIATION ALTERNATIVES - Created new the element
190
+ <aff-alternatives> to hold multiple <aff>s that are
191
+ representations of a single affiliation, for example, the
192
+ name of an institution in two languages or two scripts.
193
+ New PE; New attribute PE (currently null)
194
+
195
+ 13. RELATED-ARTICLE-ATTS - Removed the dependency that tied
196
+ %related-article-atts to journal-id-atts and added all
197
+ the journal-id attributes to related-article-atts explicitly.
198
+
199
+ 12. TITLE ELEMENTS - Removed the dependency which had both
200
+ <subtitle> and <alt-title> modeled with the same parameter
201
+ entity %title-elements;. Created new PEs for each element
202
+ but set them (as the default) to %title-elements so that no
203
+ customization would break. Models changed:
204
+ - alt-title %alt-title-elements;
205
+ - subtitle %subtitle-elements; (defined in
206
+ article-meta3.ent;)
207
+ - trans-title %trans-title-elements;
208
+ - trans-subtitle %trans-subtitle-elements;
209
+
210
+ 11. TEXTUAL FORM MODEL - Changed the textual-form-elements
211
+ parameter entity to begin with an OR bar, since it names
212
+ elements to be mixed with #PCDATA.
213
+ *****Customization Alert: New parameter entity could break some
214
+ customizations. Check your %textual-form-elements parameter
215
+ entity. *****
216
+
217
+ 10. PUBLISHER - Allowed <publisher-name> and <publisher-loc> to
218
+ repeat (as an unnamed-parenthetical) inside <publisher>.
219
+ This will allow co-publishers and publisher names and locations
220
+ in more than one language. Added to facilitate multiple
221
+ languages. Also added @specific-use and @xml-lang to
222
+ both publisher-name and publisher-loc.
223
+
224
+ 9. ATTLIST PARAMETER ENTITIES - Changed the attribute lists
225
+ from using the same parameter entity (%day-atts;) to using:
226
+ - day %day-atts; (no change)
227
+ - month %month-atts;
228
+ - season %season-atts;
229
+
230
+ 8. ISBN - Added "isbn" as value in predefined list for
231
+ @pub-id-type (%pub-id-types;)
232
+
233
+ 7. TEXTUAL FORM - Added the following attributes: (new)
234
+ - @specific-use
235
+ - @xml:lang
236
+
237
+ 6. NAME ALTERNATIVES - Created a new wrapper element for more
238
+ than one version of a personal name, for example, the name in
239
+ Japanese kana characters and a transliterated form of the name
240
+ in Latin alphabet, or a regular name and a search version
241
+ that transliterates umlauts to unaccented characters.
242
+ - new element <name-alternatives>
243
+ - new PE name-alternatives-model
244
+ - new PE name-alternatives-atts (currently null)
245
+
246
+ 5. STRING NAME - Added the following attributes: (new)
247
+ - @content-type
248
+ - @specific-use
249
+ - @name-style
250
+ - @xml:lang
251
+
252
+ 4. PERSON'S NAME STYLE
253
+ - Added the value "given-only" to the @namestyle on <name>
254
+
255
+ 3. PER SON'S NAME - Allowed <given-names> as an alternative
256
+ to <surname, given-names?) to accommodate the Indian
257
+ names that are only a given name.
258
+
259
+ 2. Updated public identifier to "v3.1 20100830//EN"
260
+
261
+ =============================================================
262
+ Version 3.0 (DAL/BTU) v3.0 (2007-10-31)
263
+
264
+ Version 3.0 is the first non-backward-compatible release.
265
+ In addition to the usual incremental changes, some
266
+ elements and attributes have been renamed and/or remodeled
267
+ to better meet user needs and to increase tag set consistency.
268
+ All module change histories are available through the Tag Suite
269
+ web site at http://dtd.nlm.nih.gov.
270
+
271
+ Details on version 3.0 are available at
272
+ http://jats.nlm.nih.gov/3.0.
273
+
274
+ 1. Updated public identifier to "v3.0 20080202//EN"
275
+ -->
276
+ <!-- ============================================================= -->
277
+ <!-- PARAMETER ENTITIES FOR ATTRIBUTE VALUES -->
278
+ <!-- ============================================================= -->
279
+ <!-- ARTICLE/PUBLICATION IDENTIFIER TYPES -->
280
+ <!--
281
+ The "pub-id-type" attribute names the
282
+ type of identifier, or the organization or
283
+ system that defined this identifier for the
284
+ identifier of the journal article or a
285
+ cited publication.
286
+ -->
287
+ <grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
288
+ <define name="pub-id-types">
289
+ <choice>
290
+ <value>art-access-id</value>
291
+ <value>coden</value>
292
+ <value>doaj</value>
293
+ <value>doi</value>
294
+ <value>isbn</value>
295
+ <value>manuscript</value>
296
+ <value>medline</value>
297
+ <value>other</value>
298
+ <value>pii</value>
299
+ <value>pmcid</value>
300
+ <value>pmid</value>
301
+ <value>publisher-id</value>
302
+ <value>sici</value>
303
+ </choice>
304
+ </define>
305
+ <!-- ============================================================= -->
306
+ <!-- PARAMETER ENTITIES FOR FULL CONTENT MODELS -->
307
+ <!-- ============================================================= -->
308
+ <!-- DATE ELEMENTS MODEL -->
309
+ <!--
310
+ The content models for elements that describe
311
+ dates, such as Publication Date <pub-date>
312
+ and History Dates <date>.
313
+ -->
314
+ <!-- CONTENT MODEL FOR A STRUCTURAL SECTION -->
315
+ <!--
316
+ The model for a section that requires that a
317
+ section title be present, used for elements
318
+ such as Section and Appendix.
319
+ -->
320
+ <!-- CONTENT MODEL FOR A SECTION METADATA -->
321
+ <!--
322
+ In some works, each section has a different
323
+ author or some sections are authored by
324
+ different contributors from the enclosing
325
+ article. This wrapper element for
326
+ section-level metadata is used to capture
327
+ information such as those contributors.
328
+ -->
329
+ <define name="sec-meta-model">
330
+ <zeroOrMore>
331
+ <ref name="contrib-group.class"/>
332
+ </zeroOrMore>
333
+ <zeroOrMore>
334
+ <ref name="kwd-group"/>
335
+ </zeroOrMore>
336
+ <optional>
337
+ <ref name="permissions"/>
338
+ </optional>
339
+ </define>
340
+ <!-- CONTENT MODEL FOR AN UNTITLED SECTION -->
341
+ <!--
342
+ The model for a section-like structure that
343
+ may or may not have an initial title
344
+ -->
345
+ <!-- ============================================================= -->
346
+ <!-- PARAMETER ENTITIES FOR MIXED CONTENT -->
347
+ <!-- ============================================================= -->
348
+ <!-- LINK ELEMENTS -->
349
+ <!--
350
+ Elements for use in the linking elements
351
+ such as <xref>, <target>, and <ext-link>
352
+ -->
353
+ <define name="link-elements">
354
+ <choice>
355
+ <ref name="emphasis.class"/>
356
+ <ref name="phrase-content.class"/>
357
+ <ref name="subsup.class"/>
358
+ </choice>
359
+ </define>
360
+ <!-- PARAGRAPH ELEMENTS -->
361
+ <!--
362
+ The elements that can be included along with
363
+ data characters inside the content model of
364
+ a paragraph <p>.
365
+ Design Note: There is a major overlap between
366
+ this parameter entity and the mix for elements
367
+ that are at the same level as a paragraph.
368
+ Inline elements appear only inside a
369
+ paragraph, but block elements such as quotes
370
+ and lists may appear either within a
371
+ paragraph or at the same level as a
372
+ paragraph. This serves a requirement in a
373
+ repository DTD, since some incoming material
374
+ will have restricted such elements to only
375
+ inside a paragraph, some incoming material
376
+ will have restricted them to only outside a
377
+ paragraph and some may allow them in both
378
+ places. Thus the DTD must allow for them to
379
+ be in either or both.
380
+ Design Note: Inline mixes begin with an
381
+ OR bar
382
+ -->
383
+ <!-- ============================================================= -->
384
+ <!-- PARAMETER ENTITIES FOR TITLES -->
385
+ <!-- ============================================================= -->
386
+ <!-- TITLE ELEMENTS -->
387
+ <!--
388
+ The elements that can be included along with
389
+ data characters inside the content model of
390
+ a paragraph <title>.
391
+ Design Note: All inline mixes begin with an
392
+ OR bar, but since %simple-phrase; is an
393
+ inline mix, the OR bar is already there.
394
+ -->
395
+ <define name="title-elements">
396
+ <choice>
397
+ <ref name="simple-phrase"/>
398
+ <ref name="break.class"/>
399
+ </choice>
400
+ </define>
401
+ <!-- ALTERNATE TITLE ELEMENTS -->
402
+ <!--
403
+ The elements that can be included along with
404
+ data characters inside the content model of
405
+ a paragraph <alt-title>.
406
+ An earlier version of this tag set used the
407
+ parameter entity %title-elements; for many
408
+ title elements including <alt-title>.
409
+ -->
410
+ <define name="alt-title-elements">
411
+ <ref name="title-elements"/>
412
+ </define>
413
+ <!-- TRANSLATED TITLE ELEMENTS -->
414
+ <!--
415
+ The elements that can be included along with
416
+ data characters inside the content model of
417
+ a paragraph <trans-title>.
418
+ An earlier version of this tag set used the
419
+ parameter entity %title-elements; for many
420
+ title elements including <trans-title>.
421
+ -->
422
+ <define name="trans-title-elements">
423
+ <ref name="title-elements"/>
424
+ </define>
425
+ <!-- TRANSLATED SUBTITLE ELEMENTS -->
426
+ <!--
427
+ The elements that can be included along with
428
+ data characters inside the content model of
429
+ a paragraph <subtitle>.
430
+ An earlier version of this tag set used the
431
+ parameter entity %title-elements; for many
432
+ title elements including <trans-subtitle>.
433
+ -->
434
+ <define name="trans-subtitle-elements">
435
+ <ref name="title-elements"/>
436
+ </define>
437
+ <!-- ============================================================= -->
438
+ <!-- PARAMETER ENTITIES FOR LINKING ATTRIBUTES -->
439
+ <!-- THE FOLLOWING FEW ARE SHARED ATTRIBUTES -->
440
+ <!-- ============================================================= -->
441
+ <!-- XLINK LINK ATTRIBUTES -->
442
+ <!--
443
+ Used for elements that are a link by
444
+ definition, such as the <xref> element.
445
+ -->
446
+ <!-- MIGHT LINK XLINK ATTRIBUTES -->
447
+ <!--
448
+ Used for elements which may need to link to
449
+ external sources or other objects within
450
+ the document, but may not necessarily act
451
+ as a link at all. The attribute
452
+ "xlink:href" identifies the object to which
453
+ the link points.
454
+ -->
455
+ <!-- CITATION ATTRIBUTES -->
456
+ <!--
457
+ Attributes for all three kinds of citations:
458
+ <element-citation> and <mixed-citation>
459
+ -->
460
+ <define name="citation-atts">
461
+ <optional>
462
+ <attribute name="id">
463
+ <data type="ID"/>
464
+ </attribute>
465
+ </optional>
466
+ <optional>
467
+ <attribute name="publication-type"/>
468
+ </optional>
469
+ <optional>
470
+ <attribute name="publisher-type"/>
471
+ </optional>
472
+ <optional>
473
+ <attribute name="publication-format"/>
474
+ </optional>
475
+ <optional>
476
+ <attribute name="specific-use"/>
477
+ </optional>
478
+ <optional>
479
+ <attribute name="xml:lang">
480
+ <data type="NMTOKEN"/>
481
+ </attribute>
482
+ </optional>
483
+ <ref name="might-link-atts"/>
484
+ </define>
485
+ <!-- ============================================================= -->
486
+ <!-- PARAMETER ENTITIES FOR ATTRIBUTES LISTS -->
487
+ <!-- (ALPHABETICAL ORDER) -->
488
+ <!-- ============================================================= -->
489
+ <!-- AFFILIATION ATTRIBUTES -->
490
+ <!-- Attributes for the <ack> element -->
491
+ <define name="ack-atts">
492
+ <optional>
493
+ <attribute name="id">
494
+ <data type="ID"/>
495
+ </attribute>
496
+ </optional>
497
+ <optional>
498
+ <attribute name="specific-use"/>
499
+ </optional>
500
+ <optional>
501
+ <attribute name="content-type"/>
502
+ </optional>
503
+ <optional>
504
+ <attribute name="xml:lang">
505
+ <data type="NMTOKEN"/>
506
+ </attribute>
507
+ </optional>
508
+ </define>
509
+ <!-- ADDRESS ATTRIBUTES -->
510
+ <!-- Attributes for the <address> element -->
511
+ <!-- ADDRESS LINE ATTRIBUTES -->
512
+ <!-- Attributes for the <addr-line> element -->
513
+ <define name="addr-line-atts">
514
+ <optional>
515
+ <attribute name="content-type"/>
516
+ </optional>
517
+ <optional>
518
+ <attribute name="specific-use"/>
519
+ </optional>
520
+ <optional>
521
+ <attribute name="xml:lang">
522
+ <data type="NMTOKEN"/>
523
+ </attribute>
524
+ </optional>
525
+ </define>
526
+ <!-- AFFILIATION ATTRIBUTES -->
527
+ <!--
528
+ Attributes for the Affiliation <aff>
529
+ element
530
+ -->
531
+ <define name="aff-atts">
532
+ <optional>
533
+ <attribute name="id">
534
+ <data type="ID"/>
535
+ </attribute>
536
+ </optional>
537
+ <optional>
538
+ <attribute name="content-type"/>
539
+ </optional>
540
+ <optional>
541
+ <attribute name="rid">
542
+ <data type="IDREFS"/>
543
+ </attribute>
544
+ </optional>
545
+ <optional>
546
+ <attribute name="specific-use"/>
547
+ </optional>
548
+ <optional>
549
+ <attribute name="xml:lang">
550
+ <data type="NMTOKEN"/>
551
+ </attribute>
552
+ </optional>
553
+ </define>
554
+ <!-- AFFILIATION ALTERNATIVES ATTRIBUTES -->
555
+ <!--
556
+ Attributes for the <aff-alternatives>
557
+ element
558
+ -->
559
+ <define name="aff-alternatives-atts">
560
+ <optional>
561
+ <attribute name="id">
562
+ <data type="ID"/>
563
+ </attribute>
564
+ </optional>
565
+ </define>
566
+ <!-- ALTERNATE TEXT ATTRIBUTES -->
567
+ <!-- Attributes for the <alt-text> element -->
568
+ <define name="alt-text-atts">
569
+ <optional>
570
+ <attribute name="id">
571
+ <data type="ID"/>
572
+ </attribute>
573
+ </optional>
574
+ <optional>
575
+ <attribute name="content-type"/>
576
+ </optional>
577
+ <optional>
578
+ <attribute name="specific-use"/>
579
+ </optional>
580
+ <optional>
581
+ <attribute name="xml:lang">
582
+ <data type="NMTOKEN"/>
583
+ </attribute>
584
+ </optional>
585
+ </define>
586
+ <!-- ALTERNATE TEXT ATTRIBUTES -->
587
+ <!-- Attributes for the <alt-text> element -->
588
+ <!-- ANONYMOUS ATTRIBUTES -->
589
+ <!-- Attributes for the <anonymous> element -->
590
+ <define name="anonymous-atts">
591
+ <optional>
592
+ <attribute name="specific-use"/>
593
+ </optional>
594
+ <optional>
595
+ <attribute name="xml:lang">
596
+ <data type="NMTOKEN"/>
597
+ </attribute>
598
+ </optional>
599
+ </define>
600
+ <!-- ALTERNATIVES ATTRIBUTES -->
601
+ <!-- Attributes for the <alternatives> element -->
602
+ <!-- ARTICLE TITLE ATTRIBUTES -->
603
+ <!-- Attributes for the <article-title> element -->
604
+ <define name="article-title-atts">
605
+ <optional>
606
+ <attribute name="id">
607
+ <data type="ID"/>
608
+ </attribute>
609
+ </optional>
610
+ <optional>
611
+ <attribute name="xml:lang">
612
+ <data type="NMTOKEN"/>
613
+ </attribute>
614
+ </optional>
615
+ </define>
616
+ <!-- ATTRIBUTION ATTRIBUTES -->
617
+ <!-- Attributes for the <attrib> element -->
618
+ <define name="attrib-atts">
619
+ <optional>
620
+ <attribute name="id">
621
+ <data type="ID"/>
622
+ </attribute>
623
+ </optional>
624
+ <optional>
625
+ <attribute name="specific-use"/>
626
+ </optional>
627
+ <optional>
628
+ <attribute name="xml:lang">
629
+ <data type="NMTOKEN"/>
630
+ </attribute>
631
+ </optional>
632
+ </define>
633
+ <!-- BIOGRAPHY ATTRIBUTES -->
634
+ <!-- Attributes for <bio> element -->
635
+ <define name="bio-atts">
636
+ <optional>
637
+ <attribute name="id">
638
+ <data type="ID"/>
639
+ </attribute>
640
+ </optional>
641
+ <optional>
642
+ <attribute name="rid">
643
+ <data type="IDREFS"/>
644
+ </attribute>
645
+ </optional>
646
+ <optional>
647
+ <attribute name="content-type"/>
648
+ </optional>
649
+ <optional>
650
+ <attribute name="specific-use"/>
651
+ </optional>
652
+ <optional>
653
+ <attribute name="xml:lang">
654
+ <data type="NMTOKEN"/>
655
+ </attribute>
656
+ </optional>
657
+ <ref name="might-link-atts"/>
658
+ </define>
659
+ <!-- COLLABORATION ATTRIBUTES -->
660
+ <!-- Attributes for <collab> -->
661
+ <define name="collab-atts">
662
+ <optional>
663
+ <attribute name="collab-type"/>
664
+ </optional>
665
+ <optional>
666
+ <attribute name="id">
667
+ <data type="ID"/>
668
+ </attribute>
669
+ </optional>
670
+ <optional>
671
+ <attribute name="specific-use"/>
672
+ </optional>
673
+ <optional>
674
+ <attribute name="xml:lang">
675
+ <data type="NMTOKEN"/>
676
+ </attribute>
677
+ </optional>
678
+ <ref name="might-link-atts"/>
679
+ </define>
680
+ <!-- CONFERENCE DATE ATTRIBUTES -->
681
+ <!-- Attributes for the <conf-date> element -->
682
+ <define name="conf-date-atts">
683
+ <optional>
684
+ <attribute name="content-type"/>
685
+ </optional>
686
+ <optional>
687
+ <attribute name="specific-use"/>
688
+ </optional>
689
+ <optional>
690
+ <attribute name="xml:lang">
691
+ <data type="NMTOKEN"/>
692
+ </attribute>
693
+ </optional>
694
+ </define>
695
+ <!-- CONFERENCE LOCATION ATTRIBUTES -->
696
+ <!-- Attributes for the <conf-loc> element -->
697
+ <define name="conf-loc-atts">
698
+ <optional>
699
+ <attribute name="content-type"/>
700
+ </optional>
701
+ <optional>
702
+ <attribute name="specific-use"/>
703
+ </optional>
704
+ <optional>
705
+ <attribute name="xml:lang">
706
+ <data type="NMTOKEN"/>
707
+ </attribute>
708
+ </optional>
709
+ </define>
710
+ <!-- CONFERENCE NAME ATTRIBUTES -->
711
+ <!-- Attributes for the <conf-name> element -->
712
+ <define name="conf-name-atts">
713
+ <optional>
714
+ <attribute name="content-type"/>
715
+ </optional>
716
+ <optional>
717
+ <attribute name="specific-use"/>
718
+ </optional>
719
+ <optional>
720
+ <attribute name="xml:lang">
721
+ <data type="NMTOKEN"/>
722
+ </attribute>
723
+ </optional>
724
+ </define>
725
+ <!-- CONFERENCE SPONSOR ATTRIBUTES -->
726
+ <!-- Attributes for the <conf-sponsor> element -->
727
+ <define name="conf-sponsor-atts">
728
+ <optional>
729
+ <attribute name="content-type"/>
730
+ </optional>
731
+ <optional>
732
+ <attribute name="specific-use"/>
733
+ </optional>
734
+ <optional>
735
+ <attribute name="xml:lang">
736
+ <data type="NMTOKEN"/>
737
+ </attribute>
738
+ </optional>
739
+ </define>
740
+ <!-- COPYRIGHT HOLDER ATTRIBUTES -->
741
+ <!--
742
+ Attributes for the <copyright-holder>
743
+ element
744
+ -->
745
+ <define name="copyright-holder-atts">
746
+ <optional>
747
+ <attribute name="content-type"/>
748
+ </optional>
749
+ <optional>
750
+ <attribute name="specific-use"/>
751
+ </optional>
752
+ <optional>
753
+ <attribute name="xml:lang">
754
+ <data type="NMTOKEN"/>
755
+ </attribute>
756
+ </optional>
757
+ </define>
758
+ <!-- COPYRIGHT STATEMENT ATTRIBUTES -->
759
+ <!--
760
+ Attributes for the <copyright-statement>
761
+ element
762
+ -->
763
+ <define name="copyright-statement-atts">
764
+ <optional>
765
+ <attribute name="content-type"/>
766
+ </optional>
767
+ <optional>
768
+ <attribute name="specific-use"/>
769
+ </optional>
770
+ <optional>
771
+ <attribute name="xml:lang">
772
+ <data type="NMTOKEN"/>
773
+ </attribute>
774
+ </optional>
775
+ </define>
776
+ <!-- COPYRIGHT YEAR ATTRIBUTES -->
777
+ <!--
778
+ Attributes for the <copyright-year>
779
+ element
780
+ -->
781
+ <define name="copyright-year-atts">
782
+ <optional>
783
+ <attribute name="content-type"/>
784
+ </optional>
785
+ <optional>
786
+ <attribute name="specific-use"/>
787
+ </optional>
788
+ </define>
789
+ <!-- COUNTRY ATTRIBUTES -->
790
+ <!-- Attributes for the <country> element -->
791
+ <define name="country-atts">
792
+ <optional>
793
+ <attribute name="content-type"/>
794
+ </optional>
795
+ <optional>
796
+ <attribute name="country"/>
797
+ </optional>
798
+ <optional>
799
+ <attribute name="specific-use"/>
800
+ </optional>
801
+ <optional>
802
+ <attribute name="xml:lang">
803
+ <data type="NMTOKEN"/>
804
+ </attribute>
805
+ </optional>
806
+ </define>
807
+ <!-- CUSTOM METADATA ATTRIBUTES -->
808
+ <!-- Attributes for the <custom-meta> element -->
809
+ <define name="custom-meta-atts">
810
+ <optional>
811
+ <attribute name="id">
812
+ <data type="ID"/>
813
+ </attribute>
814
+ </optional>
815
+ <optional>
816
+ <attribute name="specific-use"/>
817
+ </optional>
818
+ <optional>
819
+ <attribute name="xml:lang">
820
+ <data type="NMTOKEN"/>
821
+ </attribute>
822
+ </optional>
823
+ <ref name="might-link-atts"/>
824
+ </define>
825
+ <!-- DATE (HISTORICAL) ATTRIBUTES -->
826
+ <!-- Attributes for the <date> element -->
827
+ <define name="date-atts">
828
+ <optional>
829
+ <attribute name="date-type"/>
830
+ </optional>
831
+ <optional>
832
+ <attribute name="specific-use"/>
833
+ </optional>
834
+ </define>
835
+ <!-- DAY ATTRIBUTES -->
836
+ <!-- Attributes for the <day> element -->
837
+ <define name="day-atts">
838
+ <optional>
839
+ <attribute name="content-type"/>
840
+ </optional>
841
+ <optional>
842
+ <attribute name="specific-use"/>
843
+ </optional>
844
+ <optional>
845
+ <attribute name="xml:lang">
846
+ <data type="NMTOKEN"/>
847
+ </attribute>
848
+ </optional>
849
+ </define>
850
+ <!-- DEFINITION LIST: DEFINITION ATTRIBUTES -->
851
+ <!-- Attribute list for the <def> element -->
852
+ <define name="def-atts">
853
+ <optional>
854
+ <attribute name="rid">
855
+ <data type="IDREFS"/>
856
+ </attribute>
857
+ </optional>
858
+ <optional>
859
+ <attribute name="id">
860
+ <data type="ID"/>
861
+ </attribute>
862
+ </optional>
863
+ <optional>
864
+ <attribute name="specific-use"/>
865
+ </optional>
866
+ <optional>
867
+ <attribute name="xml:lang">
868
+ <data type="NMTOKEN"/>
869
+ </attribute>
870
+ </optional>
871
+ </define>
872
+ <!-- ELEMENT CITATION ATTRIBUTES -->
873
+ <!--
874
+ Attributes for <element-citation> and
875
+ <nlm-citation>)
876
+ -->
877
+ <define name="element-citation-atts">
878
+ <ref name="citation-atts"/>
879
+ </define>
880
+ <!--
881
+ ELECTRONIC LOCATION IDENTIFIER ATTRIBUTES
882
+ Attribute list for the <elocation-id>
883
+ element
884
+ -->
885
+ <define name="elocation-id-atts">
886
+ <optional>
887
+ <attribute name="content-type"/>
888
+ </optional>
889
+ <optional>
890
+ <attribute name="seq"/>
891
+ </optional>
892
+ <optional>
893
+ <attribute name="specific-use"/>
894
+ </optional>
895
+ </define>
896
+ <!-- EMAIL ATTRIBUTES -->
897
+ <!-- Attribute list for the <email> element -->
898
+ <define name="email-atts">
899
+ <optional>
900
+ <attribute name="content-type"/>
901
+ </optional>
902
+ <optional>
903
+ <attribute name="specific-use"/>
904
+ </optional>
905
+ <optional>
906
+ <attribute name="xml:lang">
907
+ <data type="NMTOKEN"/>
908
+ </attribute>
909
+ </optional>
910
+ <ref name="might-link-atts"/>
911
+ </define>
912
+ <!-- ET AL. ATTRIBUTES -->
913
+ <!-- Attribute list for the <etal> element -->
914
+ <define name="etal-atts">
915
+ <optional>
916
+ <attribute name="specific-use"/>
917
+ </optional>
918
+ <optional>
919
+ <attribute name="xml:lang">
920
+ <data type="NMTOKEN"/>
921
+ </attribute>
922
+ </optional>
923
+ </define>
924
+ <!-- EXTERNAL LINK ATTRIBUTES -->
925
+ <!--
926
+ Attribute list for external links, such as
927
+ <ext-link>
928
+ -->
929
+ <define name="ext-link-atts">
930
+ <optional>
931
+ <attribute name="id">
932
+ <data type="ID"/>
933
+ </attribute>
934
+ </optional>
935
+ <optional>
936
+ <attribute name="ext-link-type"/>
937
+ </optional>
938
+ <optional>
939
+ <attribute name="specific-use"/>
940
+ </optional>
941
+ <optional>
942
+ <attribute name="xml:lang">
943
+ <data type="NMTOKEN"/>
944
+ </attribute>
945
+ </optional>
946
+ <ref name="might-link-atts"/>
947
+ </define>
948
+ <!-- FAX ATTRIBUTES -->
949
+ <!-- Attribute list for the <fax> element -->
950
+ <define name="fax-atts">
951
+ <optional>
952
+ <attribute name="content-type"/>
953
+ </optional>
954
+ <optional>
955
+ <attribute name="specific-use"/>
956
+ </optional>
957
+ </define>
958
+ <!-- FIRST PAGE ATTRIBUTES -->
959
+ <!-- Attribute list for the <fpage> element -->
960
+ <define name="fpage-atts">
961
+ <optional>
962
+ <attribute name="content-type"/>
963
+ </optional>
964
+ <optional>
965
+ <attribute name="seq"/>
966
+ </optional>
967
+ <optional>
968
+ <attribute name="specific-use"/>
969
+ </optional>
970
+ <optional>
971
+ <attribute name="xml:lang">
972
+ <data type="NMTOKEN"/>
973
+ </attribute>
974
+ </optional>
975
+ </define>
976
+ <!-- GIVEN NAMES ATTRIBUTES -->
977
+ <!-- Attribute list for the <given-names> element -->
978
+ <define name="given-names-atts">
979
+ <optional>
980
+ <attribute name="initials"/>
981
+ </optional>
982
+ </define>
983
+ <!-- INSTITUTION ATTRIBUTES -->
984
+ <!-- Attribute list for <institution> -->
985
+ <define name="institution-atts">
986
+ <optional>
987
+ <attribute name="id">
988
+ <data type="ID"/>
989
+ </attribute>
990
+ </optional>
991
+ <optional>
992
+ <attribute name="content-type"/>
993
+ </optional>
994
+ <optional>
995
+ <attribute name="specific-use"/>
996
+ </optional>
997
+ <optional>
998
+ <attribute name="xml:lang">
999
+ <data type="NMTOKEN"/>
1000
+ </attribute>
1001
+ </optional>
1002
+ <ref name="might-link-atts"/>
1003
+ </define>
1004
+ <!-- ISBN ATTRIBUTES -->
1005
+ <!-- Attributes for the <isbn> element -->
1006
+ <define name="isbn-atts">
1007
+ <optional>
1008
+ <attribute name="content-type"/>
1009
+ </optional>
1010
+ <optional>
1011
+ <attribute name="specific-use"/>
1012
+ </optional>
1013
+ </define>
1014
+ <!-- ISSN ATTRIBUTES -->
1015
+ <!--
1016
+ Attribute list for <issn> (and <isbn> in
1017
+ Book)
1018
+ -->
1019
+ <define name="issn-atts">
1020
+ <optional>
1021
+ <attribute name="pub-type"/>
1022
+ </optional>
1023
+ <optional>
1024
+ <attribute name="specific-use"/>
1025
+ </optional>
1026
+ </define>
1027
+ <!-- ISSUE ATTRIBUTES -->
1028
+ <!-- Attribute list for the <issue> element -->
1029
+ <define name="issue-atts">
1030
+ <optional>
1031
+ <attribute name="content-type"/>
1032
+ </optional>
1033
+ <optional>
1034
+ <attribute name="seq"/>
1035
+ </optional>
1036
+ <optional>
1037
+ <attribute name="specific-use"/>
1038
+ </optional>
1039
+ <optional>
1040
+ <attribute name="xml:lang">
1041
+ <data type="NMTOKEN"/>
1042
+ </attribute>
1043
+ </optional>
1044
+ </define>
1045
+ <!-- ISSUE IDENTIFIER ATTRIBUTES -->
1046
+ <!-- Attributes for the <issue-id> element -->
1047
+ <define name="issue-id-atts">
1048
+ <optional>
1049
+ <attribute name="pub-id-type"/>
1050
+ </optional>
1051
+ <optional>
1052
+ <attribute name="content-type"/>
1053
+ </optional>
1054
+ <optional>
1055
+ <attribute name="specific-use"/>
1056
+ </optional>
1057
+ <optional>
1058
+ <attribute name="xml:lang">
1059
+ <data type="NMTOKEN"/>
1060
+ </attribute>
1061
+ </optional>
1062
+ </define>
1063
+ <!-- ISSUE PART ATTRIBUTES -->
1064
+ <!-- Attribute list for <issue-part> element -->
1065
+ <define name="issue-part-atts">
1066
+ <optional>
1067
+ <attribute name="content-type"/>
1068
+ </optional>
1069
+ <optional>
1070
+ <attribute name="specific-use"/>
1071
+ </optional>
1072
+ <optional>
1073
+ <attribute name="xml:lang">
1074
+ <data type="NMTOKEN"/>
1075
+ </attribute>
1076
+ </optional>
1077
+ </define>
1078
+ <!-- ISSUE SPONSOR ATTRIBUTES -->
1079
+ <!-- Attribute list for <issue-sponsor> element -->
1080
+ <define name="issue-sponsor-atts">
1081
+ <optional>
1082
+ <attribute name="content-type"/>
1083
+ </optional>
1084
+ <optional>
1085
+ <attribute name="specific-use"/>
1086
+ </optional>
1087
+ <optional>
1088
+ <attribute name="xml:lang">
1089
+ <data type="NMTOKEN"/>
1090
+ </attribute>
1091
+ </optional>
1092
+ </define>
1093
+ <!-- ISSUE TITLE ATTRIBUTES -->
1094
+ <!-- Attribute list for <issue-title> element -->
1095
+ <define name="issue-title-atts">
1096
+ <optional>
1097
+ <attribute name="content-type"/>
1098
+ </optional>
1099
+ <optional>
1100
+ <attribute name="specific-use"/>
1101
+ </optional>
1102
+ <optional>
1103
+ <attribute name="xml:lang">
1104
+ <data type="NMTOKEN"/>
1105
+ </attribute>
1106
+ </optional>
1107
+ </define>
1108
+ <!-- JOURNAL IDENTIFIER ATTRIBUTES -->
1109
+ <!--
1110
+ Attribute list for journal identifier
1111
+ <journal-id> element
1112
+ -->
1113
+ <define name="journal-id-atts">
1114
+ <optional>
1115
+ <attribute name="journal-id-type"/>
1116
+ </optional>
1117
+ <optional>
1118
+ <attribute name="specific-use"/>
1119
+ </optional>
1120
+ <optional>
1121
+ <attribute name="xml:lang">
1122
+ <data type="NMTOKEN"/>
1123
+ </attribute>
1124
+ </optional>
1125
+ </define>
1126
+ <!-- LABEL ATTRIBUTES -->
1127
+ <!-- Attributes for the <label> element -->
1128
+ <define name="label-atts">
1129
+ <optional>
1130
+ <attribute name="alt"/>
1131
+ </optional>
1132
+ <optional>
1133
+ <attribute name="xml:lang">
1134
+ <data type="NMTOKEN"/>
1135
+ </attribute>
1136
+ </optional>
1137
+ </define>
1138
+ <!-- LICENSE ATTRIBUTES -->
1139
+ <!-- Attributes for the <license> element -->
1140
+ <define name="license-atts">
1141
+ <optional>
1142
+ <attribute name="license-type"/>
1143
+ </optional>
1144
+ <optional>
1145
+ <attribute name="specific-use"/>
1146
+ </optional>
1147
+ <optional>
1148
+ <attribute name="xml:lang">
1149
+ <data type="NMTOKEN"/>
1150
+ </attribute>
1151
+ </optional>
1152
+ <ref name="might-link-atts"/>
1153
+ </define>
1154
+ <!-- LICENSE PARAGRAPH ATTRIBUTES -->
1155
+ <!-- Attributes for the <license> element -->
1156
+ <define name="license-p-atts">
1157
+ <optional>
1158
+ <attribute name="specific-use"/>
1159
+ </optional>
1160
+ </define>
1161
+ <!-- LONG DESCRIPTION ATTRIBUTES -->
1162
+ <!-- Attributes for the <long-desc> element -->
1163
+ <define name="long-desc-atts">
1164
+ <optional>
1165
+ <attribute name="id">
1166
+ <data type="ID"/>
1167
+ </attribute>
1168
+ </optional>
1169
+ <optional>
1170
+ <attribute name="content-type"/>
1171
+ </optional>
1172
+ <optional>
1173
+ <attribute name="specific-use"/>
1174
+ </optional>
1175
+ <optional>
1176
+ <attribute name="xml:lang">
1177
+ <data type="NMTOKEN"/>
1178
+ </attribute>
1179
+ </optional>
1180
+ </define>
1181
+ <!-- LPAGE ATTRIBUTES -->
1182
+ <!-- Attributes for the <lpage> element -->
1183
+ <define name="lpage-atts">
1184
+ <optional>
1185
+ <attribute name="content-type"/>
1186
+ </optional>
1187
+ <optional>
1188
+ <attribute name="specific-use"/>
1189
+ </optional>
1190
+ <optional>
1191
+ <attribute name="xml:lang">
1192
+ <data type="NMTOKEN"/>
1193
+ </attribute>
1194
+ </optional>
1195
+ </define>
1196
+ <!-- METADATA NAME (CUSTOM) ATTRIBUTES -->
1197
+ <!-- Attributes for <meta-name> element -->
1198
+ <define name="meta-name-atts">
1199
+ <empty/>
1200
+ </define>
1201
+ <!-- METADATA VALUE (CUSTOM) ATTRIBUTES -->
1202
+ <!-- Attributes for <meta-value> element -->
1203
+ <define name="meta-value-atts">
1204
+ <empty/>
1205
+ </define>
1206
+ <!-- MIXED CITATION ATTRIBUTES -->
1207
+ <!-- Attributes for <mixed-citation> element -->
1208
+ <define name="mixed-citation-atts">
1209
+ <ref name="citation-atts"/>
1210
+ </define>
1211
+ <!-- MONTH ATTRIBUTES -->
1212
+ <!-- Attributes for the <month> element -->
1213
+ <define name="month-atts">
1214
+ <optional>
1215
+ <attribute name="content-type"/>
1216
+ </optional>
1217
+ <optional>
1218
+ <attribute name="specific-use"/>
1219
+ </optional>
1220
+ <optional>
1221
+ <attribute name="xml:lang">
1222
+ <data type="NMTOKEN"/>
1223
+ </attribute>
1224
+ </optional>
1225
+ </define>
1226
+ <!-- NAME ATTRIBUTES -->
1227
+ <!-- Attribute list for the <name> element -->
1228
+ <define name="name-atts">
1229
+ <optional>
1230
+ <attribute name="content-type"/>
1231
+ </optional>
1232
+ <optional>
1233
+ <attribute name="name-style" a:defaultValue="western">
1234
+ <choice>
1235
+ <value>western</value>
1236
+ <value>eastern</value>
1237
+ <value>islensk</value>
1238
+ <value>given-only</value>
1239
+ </choice>
1240
+ </attribute>
1241
+ </optional>
1242
+ <optional>
1243
+ <attribute name="specific-use"/>
1244
+ </optional>
1245
+ <optional>
1246
+ <attribute name="xml:lang">
1247
+ <data type="NMTOKEN"/>
1248
+ </attribute>
1249
+ </optional>
1250
+ </define>
1251
+ <!-- NAME ALTERNATIVES ATTRIBUTES -->
1252
+ <!--
1253
+ Attributes for the <name-alternatives>
1254
+ element
1255
+ -->
1256
+ <define name="name-alternatives-atts">
1257
+ <empty/>
1258
+ </define>
1259
+ <!-- NOTES ATTRIBUTES -->
1260
+ <!-- Attribute list for the <note> element -->
1261
+ <define name="notes-atts">
1262
+ <optional>
1263
+ <attribute name="id">
1264
+ <data type="ID"/>
1265
+ </attribute>
1266
+ </optional>
1267
+ <optional>
1268
+ <attribute name="notes-type"/>
1269
+ </optional>
1270
+ <optional>
1271
+ <attribute name="specific-use"/>
1272
+ </optional>
1273
+ <optional>
1274
+ <attribute name="xml:lang">
1275
+ <data type="NMTOKEN"/>
1276
+ </attribute>
1277
+ </optional>
1278
+ </define>
1279
+ <!-- OBJECT IDENTIFIER ATTRIBUTES -->
1280
+ <!-- Attributes for the <object-id> element -->
1281
+ <define name="object-id-atts">
1282
+ <optional>
1283
+ <attribute name="pub-id-type"/>
1284
+ </optional>
1285
+ <optional>
1286
+ <attribute name="content-type"/>
1287
+ </optional>
1288
+ <optional>
1289
+ <attribute name="specific-use"/>
1290
+ </optional>
1291
+ </define>
1292
+ <!-- PAGE RANGE ATTRIBUTES -->
1293
+ <!-- Attributes for the <page-range> element -->
1294
+ <define name="page-range-atts">
1295
+ <optional>
1296
+ <attribute name="content-type"/>
1297
+ </optional>
1298
+ <optional>
1299
+ <attribute name="specific-use"/>
1300
+ </optional>
1301
+ <optional>
1302
+ <attribute name="xml:lang">
1303
+ <data type="NMTOKEN"/>
1304
+ </attribute>
1305
+ </optional>
1306
+ </define>
1307
+ <!-- PHONE ATTRIBUTES -->
1308
+ <!-- Attributes for the <phone> element -->
1309
+ <define name="phone-atts">
1310
+ <optional>
1311
+ <attribute name="content-type"/>
1312
+ </optional>
1313
+ <optional>
1314
+ <attribute name="specific-use"/>
1315
+ </optional>
1316
+ </define>
1317
+ <!-- PREFIX ATTRIBUTES -->
1318
+ <!-- Attributes for the <prefix> element -->
1319
+ <define name="prefix-atts">
1320
+ <optional>
1321
+ <attribute name="content-type"/>
1322
+ </optional>
1323
+ <optional>
1324
+ <attribute name="specific-use"/>
1325
+ </optional>
1326
+ <optional>
1327
+ <attribute name="xml:lang">
1328
+ <data type="NMTOKEN"/>
1329
+ </attribute>
1330
+ </optional>
1331
+ </define>
1332
+ <!-- PRICE ATTRIBUTES -->
1333
+ <!-- Attributes for the <price> element -->
1334
+ <define name="price-atts">
1335
+ <optional>
1336
+ <attribute name="currency"/>
1337
+ </optional>
1338
+ <optional>
1339
+ <attribute name="content-type"/>
1340
+ </optional>
1341
+ <optional>
1342
+ <attribute name="specific-use"/>
1343
+ </optional>
1344
+ <optional>
1345
+ <attribute name="xml:lang">
1346
+ <data type="NMTOKEN"/>
1347
+ </attribute>
1348
+ </optional>
1349
+ </define>
1350
+ <!-- PUBLISHER ATTRIBUTES -->
1351
+ <!-- Attributes for the <publisher> element -->
1352
+ <define name="publisher-atts">
1353
+ <optional>
1354
+ <attribute name="content-type"/>
1355
+ </optional>
1356
+ </define>
1357
+ <!-- PUBLISHER LOCATION ATTRIBUTES -->
1358
+ <!-- Attributes for the <publisher-loc> element -->
1359
+ <define name="publisher-loc-atts">
1360
+ <optional>
1361
+ <attribute name="specific-use"/>
1362
+ </optional>
1363
+ <optional>
1364
+ <attribute name="xml:lang">
1365
+ <data type="NMTOKEN"/>
1366
+ </attribute>
1367
+ </optional>
1368
+ </define>
1369
+ <!-- PUBLISHER NAME ATTRIBUTES -->
1370
+ <!-- Attributes for the <publisher-name> element -->
1371
+ <define name="publisher-name-atts">
1372
+ <optional>
1373
+ <attribute name="specific-use"/>
1374
+ </optional>
1375
+ <optional>
1376
+ <attribute name="xml:lang">
1377
+ <data type="NMTOKEN"/>
1378
+ </attribute>
1379
+ </optional>
1380
+ </define>
1381
+ <!-- RELATED ARTICLE ATTRIBUTES -->
1382
+ <!-- Attributes for <related-article> -->
1383
+ <!-- ROLE ATTRIBUTES -->
1384
+ <!-- Attributes for the <role> element -->
1385
+ <define name="role-atts">
1386
+ <optional>
1387
+ <attribute name="content-type"/>
1388
+ </optional>
1389
+ <optional>
1390
+ <attribute name="specific-use"/>
1391
+ </optional>
1392
+ <optional>
1393
+ <attribute name="xml:lang">
1394
+ <data type="NMTOKEN"/>
1395
+ </attribute>
1396
+ </optional>
1397
+ </define>
1398
+ <!-- SEASON ATTRIBUTES -->
1399
+ <!-- Attributes for the <season> element -->
1400
+ <define name="season-atts">
1401
+ <optional>
1402
+ <attribute name="content-type"/>
1403
+ </optional>
1404
+ <optional>
1405
+ <attribute name="specific-use"/>
1406
+ </optional>
1407
+ <optional>
1408
+ <attribute name="xml:lang">
1409
+ <data type="NMTOKEN"/>
1410
+ </attribute>
1411
+ </optional>
1412
+ </define>
1413
+ <!-- SIGNATURE ATTRIBUTES -->
1414
+ <!-- Attributes for the <sig> element -->
1415
+ <define name="sig-atts">
1416
+ <optional>
1417
+ <attribute name="id">
1418
+ <data type="ID"/>
1419
+ </attribute>
1420
+ </optional>
1421
+ <optional>
1422
+ <attribute name="rid">
1423
+ <data type="IDREFS"/>
1424
+ </attribute>
1425
+ </optional>
1426
+ <optional>
1427
+ <attribute name="content-type"/>
1428
+ </optional>
1429
+ <optional>
1430
+ <attribute name="specific-use"/>
1431
+ </optional>
1432
+ <optional>
1433
+ <attribute name="xml:lang">
1434
+ <data type="NMTOKEN"/>
1435
+ </attribute>
1436
+ </optional>
1437
+ </define>
1438
+ <!-- SIGNATURE BLOCK ATTRIBUTES -->
1439
+ <!-- Attributes for the <sig-block> element -->
1440
+ <define name="sig-block-atts">
1441
+ <optional>
1442
+ <attribute name="id">
1443
+ <data type="ID"/>
1444
+ </attribute>
1445
+ </optional>
1446
+ <optional>
1447
+ <attribute name="rid">
1448
+ <data type="IDREFS"/>
1449
+ </attribute>
1450
+ </optional>
1451
+ <optional>
1452
+ <attribute name="content-type"/>
1453
+ </optional>
1454
+ <optional>
1455
+ <attribute name="specific-use"/>
1456
+ </optional>
1457
+ </define>
1458
+ <!-- SIZE ATTRIBUTES -->
1459
+ <!-- Attribute list for the <size> element -->
1460
+ <define name="size-atts">
1461
+ <attribute name="units"/>
1462
+ <optional>
1463
+ <attribute name="specific-use"/>
1464
+ </optional>
1465
+ <optional>
1466
+ <attribute name="xml:lang">
1467
+ <data type="NMTOKEN"/>
1468
+ </attribute>
1469
+ </optional>
1470
+ </define>
1471
+ <!-- STRING DATE ATTRIBUTES -->
1472
+ <!-- Attributes for the <string-date> element -->
1473
+ <define name="string-date-atts">
1474
+ <optional>
1475
+ <attribute name="content-type"/>
1476
+ </optional>
1477
+ <optional>
1478
+ <attribute name="specific-use"/>
1479
+ </optional>
1480
+ <optional>
1481
+ <attribute name="xml:lang">
1482
+ <data type="NMTOKEN"/>
1483
+ </attribute>
1484
+ </optional>
1485
+ </define>
1486
+ <!-- STRING NAME ATTRIBUTES -->
1487
+ <!-- Attribute list for the <string-name> element -->
1488
+ <define name="string-name-atts">
1489
+ <optional>
1490
+ <attribute name="content-type"/>
1491
+ </optional>
1492
+ <optional>
1493
+ <attribute name="name-style" a:defaultValue="western">
1494
+ <choice>
1495
+ <value>western</value>
1496
+ <value>eastern</value>
1497
+ <value>islensk</value>
1498
+ <value>given-only</value>
1499
+ </choice>
1500
+ </attribute>
1501
+ </optional>
1502
+ <optional>
1503
+ <attribute name="specific-use"/>
1504
+ </optional>
1505
+ <optional>
1506
+ <attribute name="xml:lang">
1507
+ <data type="NMTOKEN"/>
1508
+ </attribute>
1509
+ </optional>
1510
+ </define>
1511
+ <!-- SUFFIX ATTRIBUTES -->
1512
+ <!-- Attributes for the <suffix> element -->
1513
+ <define name="suffix-atts">
1514
+ <optional>
1515
+ <attribute name="content-type"/>
1516
+ </optional>
1517
+ <optional>
1518
+ <attribute name="specific-use"/>
1519
+ </optional>
1520
+ <optional>
1521
+ <attribute name="xml:lang">
1522
+ <data type="NMTOKEN"/>
1523
+ </attribute>
1524
+ </optional>
1525
+ </define>
1526
+ <!-- SURNAME ATTRIBUTES -->
1527
+ <!-- Attribute list for the <surname> element -->
1528
+ <define name="surname-atts">
1529
+ <optional>
1530
+ <attribute name="initials"/>
1531
+ </optional>
1532
+ </define>
1533
+ <!-- TEXTUAL FORM ATTRIBUTES -->
1534
+ <!-- Attributes for the <textual-form> element -->
1535
+ <define name="textual-form-atts">
1536
+ <optional>
1537
+ <attribute name="specific-use"/>
1538
+ </optional>
1539
+ <optional>
1540
+ <attribute name="xml:lang">
1541
+ <data type="NMTOKEN"/>
1542
+ </attribute>
1543
+ </optional>
1544
+ </define>
1545
+ <!-- TITLE ATTRIBUTES -->
1546
+ <!-- Attributes for the <title> element -->
1547
+ <define name="title-atts">
1548
+ <optional>
1549
+ <attribute name="id">
1550
+ <data type="ID"/>
1551
+ </attribute>
1552
+ </optional>
1553
+ <optional>
1554
+ <attribute name="content-type"/>
1555
+ </optional>
1556
+ <optional>
1557
+ <attribute name="specific-use"/>
1558
+ </optional>
1559
+ </define>
1560
+ <!-- TRANSLATED SUBTITLE ATTRIBUTES -->
1561
+ <!--
1562
+ Attributes for the <trans-subtitle>
1563
+ element
1564
+ -->
1565
+ <define name="trans-subtitle-atts">
1566
+ <optional>
1567
+ <attribute name="specific-use"/>
1568
+ </optional>
1569
+ <optional>
1570
+ <attribute name="xml:lang">
1571
+ <data type="NMTOKEN"/>
1572
+ </attribute>
1573
+ </optional>
1574
+ </define>
1575
+ <!-- TRANSLATED TITLE ATTRIBUTES -->
1576
+ <!-- Attribute list for the <trans-title> -->
1577
+ <define name="trans-title-atts">
1578
+ <optional>
1579
+ <attribute name="id">
1580
+ <data type="ID"/>
1581
+ </attribute>
1582
+ </optional>
1583
+ <optional>
1584
+ <attribute name="content-type"/>
1585
+ </optional>
1586
+ <optional>
1587
+ <attribute name="specific-use"/>
1588
+ </optional>
1589
+ <optional>
1590
+ <attribute name="xml:lang">
1591
+ <data type="NMTOKEN"/>
1592
+ </attribute>
1593
+ </optional>
1594
+ </define>
1595
+ <!-- TRANSLATED TITLE GROUP ATTRIBUTES -->
1596
+ <!-- Attribute list for the <trans-title-group> -->
1597
+ <define name="trans-title-group-atts">
1598
+ <optional>
1599
+ <attribute name="id">
1600
+ <data type="ID"/>
1601
+ </attribute>
1602
+ </optional>
1603
+ <optional>
1604
+ <attribute name="content-type"/>
1605
+ </optional>
1606
+ <optional>
1607
+ <attribute name="specific-use"/>
1608
+ </optional>
1609
+ <optional>
1610
+ <attribute name="xml:lang">
1611
+ <data type="NMTOKEN"/>
1612
+ </attribute>
1613
+ </optional>
1614
+ </define>
1615
+ <!-- URI ATTRIBUTES -->
1616
+ <!-- Attributes for the <uri> element -->
1617
+ <define name="uri-atts">
1618
+ <optional>
1619
+ <attribute name="content-type"/>
1620
+ </optional>
1621
+ <optional>
1622
+ <attribute name="specific-use"/>
1623
+ </optional>
1624
+ <optional>
1625
+ <attribute name="xml:lang">
1626
+ <data type="NMTOKEN"/>
1627
+ </attribute>
1628
+ </optional>
1629
+ <ref name="might-link-atts"/>
1630
+ </define>
1631
+ <!-- VOLUME NUMBER ATTRIBUTES -->
1632
+ <!-- Attribute list for the <volume> element -->
1633
+ <define name="volume-atts">
1634
+ <optional>
1635
+ <attribute name="seq"/>
1636
+ </optional>
1637
+ <optional>
1638
+ <attribute name="content-type"/>
1639
+ </optional>
1640
+ <optional>
1641
+ <attribute name="specific-use"/>
1642
+ </optional>
1643
+ <optional>
1644
+ <attribute name="xml:lang">
1645
+ <data type="NMTOKEN"/>
1646
+ </attribute>
1647
+ </optional>
1648
+ </define>
1649
+ <!-- VOLUME IDENTIFIER ATTRIBUTES -->
1650
+ <!-- Attributes for the <volume-id> element -->
1651
+ <define name="volume-id-atts">
1652
+ <optional>
1653
+ <attribute name="pub-id-type"/>
1654
+ </optional>
1655
+ <optional>
1656
+ <attribute name="content-type"/>
1657
+ </optional>
1658
+ <optional>
1659
+ <attribute name="specific-use"/>
1660
+ </optional>
1661
+ <optional>
1662
+ <attribute name="xml:lang">
1663
+ <data type="NMTOKEN"/>
1664
+ </attribute>
1665
+ </optional>
1666
+ </define>
1667
+ <!-- VOLUME SERIES ATTRIBUTES -->
1668
+ <!--
1669
+ Attribute list for the <volume-series>
1670
+ element
1671
+ -->
1672
+ <define name="volume-series-atts">
1673
+ <optional>
1674
+ <attribute name="content-type"/>
1675
+ </optional>
1676
+ <optional>
1677
+ <attribute name="specific-use"/>
1678
+ </optional>
1679
+ <optional>
1680
+ <attribute name="xml:lang">
1681
+ <data type="NMTOKEN"/>
1682
+ </attribute>
1683
+ </optional>
1684
+ </define>
1685
+ <!-- YEAR ATTRIBUTES -->
1686
+ <!-- Attributes for the <year> element -->
1687
+ <define name="year-atts">
1688
+ <optional>
1689
+ <attribute name="content-type"/>
1690
+ </optional>
1691
+ <optional>
1692
+ <attribute name="specific-use"/>
1693
+ </optional>
1694
+ <optional>
1695
+ <attribute name="xml:lang">
1696
+ <data type="NMTOKEN"/>
1697
+ </attribute>
1698
+ </optional>
1699
+ </define>
1700
+ <!-- ============================================================= -->
1701
+ <!-- METADATA USED BY MORE THAN ONE CLASS -->
1702
+ <!-- ============================================================= -->
1703
+ <!-- ============================================================= -->
1704
+ <!-- COMMON COPYRIGHT/PERMISSION ELEMENTS -->
1705
+ <!-- ============================================================= -->
1706
+ <!-- COPYRIGHT HOLDER ELEMENTS -->
1707
+ <!--
1708
+ Elements to be mixed with data characters
1709
+ inside the content model for the
1710
+ <copyright-holder> element.
1711
+ -->
1712
+ <define name="copyright-holder-elements">
1713
+ <ref name="subsup.class"/>
1714
+ </define>
1715
+ <!-- COPYRIGHT HOLDER -->
1716
+ <!--
1717
+ Name of the organizational or personal
1718
+ entity that holds the copyright.
1719
+ Details at:
1720
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=copyright-holder
1721
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=copyright-holder
1722
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=copyright-holder
1723
+ -->
1724
+ <define name="copyright-holder">
1725
+ <element name="copyright-holder">
1726
+ <ref name="copyright-holder-attlist"/>
1727
+ <zeroOrMore>
1728
+ <choice>
1729
+ <text/>
1730
+ <ref name="copyright-holder-elements"/>
1731
+ </choice>
1732
+ </zeroOrMore>
1733
+ </element>
1734
+ </define>
1735
+ <define name="copyright-holder-attlist" combine="interleave">
1736
+ <ref name="copyright-holder-atts"/>
1737
+ </define>
1738
+ <!-- COPYRIGHT STATEMENT ELEMENTS -->
1739
+ <!-- Content model for <copyright-statement> -->
1740
+ <define name="copyright-statement-elements">
1741
+ <choice>
1742
+ <ref name="address-link.class"/>
1743
+ <ref name="emphasis.class"/>
1744
+ <ref name="phrase-content.class"/>
1745
+ <ref name="subsup.class"/>
1746
+ </choice>
1747
+ </define>
1748
+ <!-- COPYRIGHT STATEMENT -->
1749
+ <!--
1750
+ Copyright notice or statement, suitable for
1751
+ printing or display. Within the statement the
1752
+ copyright year should be identified, if
1753
+ expected to be displayed.
1754
+ Details at:
1755
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=copyright-statement
1756
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=copyright-statement
1757
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=copyright-statement
1758
+ -->
1759
+ <define name="copyright-statement">
1760
+ <element name="copyright-statement">
1761
+ <ref name="copyright-statement-attlist"/>
1762
+ <zeroOrMore>
1763
+ <choice>
1764
+ <text/>
1765
+ <ref name="copyright-statement-elements"/>
1766
+ </choice>
1767
+ </zeroOrMore>
1768
+ </element>
1769
+ </define>
1770
+ <define name="copyright-statement-attlist" combine="interleave">
1771
+ <ref name="copyright-statement-atts"/>
1772
+ </define>
1773
+ <!-- COPYRIGHT YEAR -->
1774
+ <!--
1775
+ Year of the copyright. Need not be used, if,
1776
+ for example, having the year as part of the
1777
+ copyright statement is sufficient.
1778
+ Details at:
1779
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=copyright-year
1780
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=copyright-year
1781
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=copyright-year
1782
+ -->
1783
+ <define name="copyright-year">
1784
+ <element name="copyright-year">
1785
+ <ref name="copyright-year-attlist"/>
1786
+ <text/>
1787
+ </element>
1788
+ </define>
1789
+ <define name="copyright-year-attlist" combine="interleave">
1790
+ <ref name="copyright-year-atts"/>
1791
+ </define>
1792
+ <!-- LICENSE MODEL -->
1793
+ <!-- Content model for an <license> element -->
1794
+ <define name="license-model">
1795
+ <oneOrMore>
1796
+ <ref name="license-p.class"/>
1797
+ </oneOrMore>
1798
+ </define>
1799
+ <!-- LICENSE INFORMATION -->
1800
+ <!--
1801
+ The set of conditions under which people are
1802
+ allowed to use this article or other
1803
+ license-related information or restrictions.
1804
+ Details at:
1805
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=license
1806
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=license
1807
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=license
1808
+ -->
1809
+ <define name="license">
1810
+ <element name="license">
1811
+ <ref name="license-attlist"/>
1812
+ <ref name="license-model"/>
1813
+ </element>
1814
+ </define>
1815
+ <define name="license-attlist" combine="interleave">
1816
+ <ref name="license-atts"/>
1817
+ </define>
1818
+ <!-- LICENSE PARAGRAPH ELEMENTS -->
1819
+ <!--
1820
+ Elements that can be included with the text
1821
+ inside a <license-p> element.
1822
+ Design Note: All inline mixes begin with an
1823
+ OR bar, but since %p-elements; is an
1824
+ inline mix, the OR bar is already there.
1825
+ -->
1826
+ <define name="license-p-elements">
1827
+ <choice>
1828
+ <ref name="p-elements"/>
1829
+ <ref name="price.class"/>
1830
+ </choice>
1831
+ </define>
1832
+ <!-- LICENSE PARAGRAPH -->
1833
+ <!--
1834
+ Paragraphs of text within the description of
1835
+ a <license>. Not defined as an ordinary
1836
+ paragraph, so that it can have special
1837
+ content.
1838
+ Details at:
1839
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=license-p
1840
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=license-p
1841
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=license-p
1842
+ -->
1843
+ <define name="license-p">
1844
+ <element name="license-p">
1845
+ <ref name="license-p-attlist"/>
1846
+ <zeroOrMore>
1847
+ <choice>
1848
+ <text/>
1849
+ <ref name="license-p-elements"/>
1850
+ </choice>
1851
+ </zeroOrMore>
1852
+ </element>
1853
+ </define>
1854
+ <define name="license-p-attlist" combine="interleave">
1855
+ <ref name="license-p-atts"/>
1856
+ </define>
1857
+ <!-- PERMISSIONS MODEL -->
1858
+ <!-- Model for <permissions> wrapper element -->
1859
+ <define name="permissions-model">
1860
+ <zeroOrMore>
1861
+ <ref name="copyright-statement"/>
1862
+ </zeroOrMore>
1863
+ <zeroOrMore>
1864
+ <ref name="copyright-year"/>
1865
+ </zeroOrMore>
1866
+ <zeroOrMore>
1867
+ <ref name="copyright-holder"/>
1868
+ </zeroOrMore>
1869
+ <zeroOrMore>
1870
+ <ref name="license"/>
1871
+ </zeroOrMore>
1872
+ </define>
1873
+ <!-- PERMISSIONS -->
1874
+ <!--
1875
+ Wrapper element to hold the copyright
1876
+ information, license material, and any
1877
+ future similar metadata.
1878
+ Details at:
1879
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=permissions
1880
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=permissions
1881
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=permissions
1882
+ -->
1883
+ <define name="permissions">
1884
+ <element name="permissions">
1885
+ <ref name="permissions-attlist"/>
1886
+ <ref name="permissions-model"/>
1887
+ </element>
1888
+ </define>
1889
+ <define name="permissions-attlist" combine="interleave">
1890
+ <empty/>
1891
+ </define>
1892
+ <!-- ============================================================= -->
1893
+ <!-- COMMON METADATA/BIBLIOGRAPHIC ELEMENTS -->
1894
+ <!-- ============================================================= -->
1895
+ <!-- ARTICLE TITLE ELEMENTS -->
1896
+ <!--
1897
+ Elements that can be included with the text
1898
+ inside an <article-title> element.
1899
+ Design Note: All inline mixes begin with an
1900
+ OR bar, but since %simple-phrase; is an
1901
+ inline mix, the OR bar is already there.
1902
+ -->
1903
+ <define name="article-title-elements">
1904
+ <choice>
1905
+ <ref name="simple-phrase"/>
1906
+ <ref name="break.class"/>
1907
+ </choice>
1908
+ </define>
1909
+ <!-- ARTICLE TITLE -->
1910
+ <!--
1911
+ The title of the article in the language
1912
+ in which the article was originally
1913
+ published
1914
+ Details at:
1915
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=article-title
1916
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=article-title
1917
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=article-title
1918
+ -->
1919
+ <define name="article-title">
1920
+ <element name="article-title">
1921
+ <ref name="article-title-attlist"/>
1922
+ <zeroOrMore>
1923
+ <choice>
1924
+ <text/>
1925
+ <ref name="article-title-elements"/>
1926
+ </choice>
1927
+ </zeroOrMore>
1928
+ </element>
1929
+ </define>
1930
+ <define name="article-title-attlist" combine="interleave">
1931
+ <ref name="article-title-atts"/>
1932
+ </define>
1933
+ <!-- AFFILIATION ELEMENTS -->
1934
+ <!-- Elements for use in the <aff> element -->
1935
+ <define name="aff-elements">
1936
+ <choice>
1937
+ <ref name="address.class"/>
1938
+ <ref name="address-link.class"/>
1939
+ <ref name="article-link.class"/>
1940
+ <ref name="break.class"/>
1941
+ <ref name="emphasis.class"/>
1942
+ <ref name="label.class"/>
1943
+ <ref name="simple-link.class"/>
1944
+ <ref name="subsup.class"/>
1945
+ </choice>
1946
+ </define>
1947
+ <!-- AFFILIATION -->
1948
+ <!--
1949
+ Name of a institution or organization such as
1950
+ a university or corporation.
1951
+ Details at:
1952
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=aff
1953
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=aff
1954
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=aff
1955
+ -->
1956
+ <define name="aff">
1957
+ <element name="aff">
1958
+ <ref name="aff-attlist"/>
1959
+ <zeroOrMore>
1960
+ <choice>
1961
+ <text/>
1962
+ <ref name="aff-elements"/>
1963
+ </choice>
1964
+ </zeroOrMore>
1965
+ </element>
1966
+ </define>
1967
+ <define name="aff-attlist" combine="interleave">
1968
+ <ref name="aff-atts"/>
1969
+ </define>
1970
+ <!-- AFFILIATION ALTERNATIVES MODEL -->
1971
+ <!--
1972
+ Content model for the element
1973
+ <aff-alternatives>
1974
+ -->
1975
+ <define name="aff-alternatives-model">
1976
+ <oneOrMore>
1977
+ <ref name="aff"/>
1978
+ </oneOrMore>
1979
+ </define>
1980
+ <!-- AFFILIATION ALTERNATIVES -->
1981
+ <!--
1982
+ Container element to hold one or more
1983
+ representations of a single affiliation, for
1984
+ example the name of an institution in two
1985
+ languages or two scripts.
1986
+ Details at:
1987
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=aff-alternatives
1988
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=aff-alternatives
1989
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=aff-alternatives
1990
+ -->
1991
+ <define name="aff-alternatives">
1992
+ <element name="aff-alternatives">
1993
+ <ref name="aff-alternatives-attlist"/>
1994
+ <ref name="aff-alternatives-model"/>
1995
+ </element>
1996
+ </define>
1997
+ <define name="aff-alternatives-attlist" combine="interleave">
1998
+ <ref name="aff-alternatives-atts"/>
1999
+ </define>
2000
+ <!-- COLLABORATIVE (GROUP) AUTHOR ELEMENTS -->
2001
+ <!--
2002
+ Elements for use in the <collab> element
2003
+ Design Note: All inline mixes begin with an
2004
+ OR bar, but since %simple-text; is an inline
2005
+ mix, the OR bar is already there.
2006
+ -->
2007
+ <define name="collab-elements">
2008
+ <choice>
2009
+ <ref name="simple-text"/>
2010
+ <ref name="address.class"/>
2011
+ <ref name="contrib-group.class"/>
2012
+ <ref name="contrib-info.class"/>
2013
+ <ref name="fn-link.class"/>
2014
+ </choice>
2015
+ </define>
2016
+ <!-- COLLABORATIVE (GROUP) AUTHOR -->
2017
+ <!--
2018
+ Used for groups of authors credited under
2019
+ one name, either as a collaboration in the
2020
+ strictest sense, or when an organization,
2021
+ institution, or corporation is the group.
2022
+ Details at:
2023
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=collab
2024
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=collab
2025
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=collab
2026
+ -->
2027
+ <define name="collab">
2028
+ <element name="collab">
2029
+ <ref name="collab-attlist"/>
2030
+ <zeroOrMore>
2031
+ <choice>
2032
+ <text/>
2033
+ <ref name="collab-elements"/>
2034
+ </choice>
2035
+ </zeroOrMore>
2036
+ </element>
2037
+ </define>
2038
+ <define name="collab-attlist" combine="interleave">
2039
+ <ref name="collab-atts"/>
2040
+ </define>
2041
+ <!-- CONFERENCE DATE ELEMENTS -->
2042
+ <!-- Elements for use in the <conf-date> element -->
2043
+ <define name="conf-date-elements">
2044
+ <notAllowed/>
2045
+ </define>
2046
+ <!-- CONFERENCE DATE -->
2047
+ <!--
2048
+ The date(s) on which the conference was held.
2049
+ Details at:
2050
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=conf-date
2051
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=conf-date
2052
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=conf-date
2053
+ -->
2054
+ <define name="conf-date">
2055
+ <element name="conf-date">
2056
+ <ref name="conf-date-attlist"/>
2057
+ <zeroOrMore>
2058
+ <choice>
2059
+ <text/>
2060
+ <ref name="conf-date-elements"/>
2061
+ </choice>
2062
+ </zeroOrMore>
2063
+ </element>
2064
+ </define>
2065
+ <define name="conf-date-attlist" combine="interleave">
2066
+ <ref name="conf-date-atts"/>
2067
+ </define>
2068
+ <!-- CONFERENCE LOCATION ELEMENTS -->
2069
+ <!--
2070
+ Elements for use in the <conf-loc> element
2071
+ Design Note: All inline mixes begin with an
2072
+ OR bar, but since %simple-text; is an inline
2073
+ mix, the OR bar is already there.
2074
+ -->
2075
+ <!-- CONFERENCE LOCATION -->
2076
+ <!--
2077
+ The physical location(s) of the conference.
2078
+ This may include a city, a country, or a
2079
+ campus or organization location if that is
2080
+ the only location available.
2081
+ Details at:
2082
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=conf-loc
2083
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=conf-loc
2084
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=conf-loc
2085
+ -->
2086
+ <define name="conf-loc">
2087
+ <element name="conf-loc">
2088
+ <ref name="conf-loc-attlist"/>
2089
+ <zeroOrMore>
2090
+ <choice>
2091
+ <text/>
2092
+ <ref name="conf-loc-elements"/>
2093
+ </choice>
2094
+ </zeroOrMore>
2095
+ </element>
2096
+ </define>
2097
+ <define name="conf-loc-attlist" combine="interleave">
2098
+ <ref name="conf-loc-atts"/>
2099
+ </define>
2100
+ <!-- CONFERENCE NAME ELEMENTS -->
2101
+ <!--
2102
+ Elements for use in the <conf-name> element.
2103
+ Design Note: All inline mixes begin with an
2104
+ OR bar, but since %simple-text; is an inline
2105
+ mix, the OR bar is already there.
2106
+ -->
2107
+ <!-- CONFERENCE NAME -->
2108
+ <!--
2109
+ The full name of the conference, including any
2110
+ qualifiers such as "43rd Annual".
2111
+ Details at:
2112
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=conf-name
2113
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=conf-name
2114
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=conf-name
2115
+ -->
2116
+ <define name="conf-name">
2117
+ <element name="conf-name">
2118
+ <ref name="conf-name-attlist"/>
2119
+ <zeroOrMore>
2120
+ <choice>
2121
+ <text/>
2122
+ <ref name="conf-name-elements"/>
2123
+ </choice>
2124
+ </zeroOrMore>
2125
+ </element>
2126
+ </define>
2127
+ <define name="conf-name-attlist" combine="interleave">
2128
+ <ref name="conf-name-atts"/>
2129
+ </define>
2130
+ <!-- OBJECT IDENTIFIER -->
2131
+ <!--
2132
+ Used to record an identifier such as a DOI
2133
+ for an interior element such as an <abstract>
2134
+ or <figure>.
2135
+ Details at:
2136
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=object-id
2137
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=object-id
2138
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=object-id
2139
+ -->
2140
+ <define name="object-id">
2141
+ <element name="object-id">
2142
+ <ref name="object-id-attlist"/>
2143
+ <text/>
2144
+ </element>
2145
+ </define>
2146
+ <define name="object-id-attlist" combine="interleave">
2147
+ <ref name="object-id-atts"/>
2148
+ </define>
2149
+ <!-- ISBN ELEMENTS -->
2150
+ <!--
2151
+ Elements for use with data characters inside
2152
+ the model for the <isbn> element
2153
+ -->
2154
+ <define name="isbn-elements">
2155
+ <notAllowed/>
2156
+ </define>
2157
+ <!-- ISBN -->
2158
+ <!--
2159
+ International Standard Book Number
2160
+ Details at:
2161
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=isbn
2162
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=isbn
2163
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=isbn
2164
+ -->
2165
+ <define name="isbn">
2166
+ <element name="isbn">
2167
+ <ref name="isbn-attlist"/>
2168
+ <zeroOrMore>
2169
+ <choice>
2170
+ <text/>
2171
+ <ref name="isbn-elements"/>
2172
+ </choice>
2173
+ </zeroOrMore>
2174
+ </element>
2175
+ </define>
2176
+ <define name="isbn-attlist" combine="interleave">
2177
+ <ref name="isbn-atts"/>
2178
+ </define>
2179
+ <!-- ISSN ELEMENTS -->
2180
+ <!--
2181
+ Elements for use with data characters inside
2182
+ the model for the <issue> element
2183
+ -->
2184
+ <define name="issn-elements">
2185
+ <notAllowed/>
2186
+ </define>
2187
+ <!-- ISSN -->
2188
+ <!--
2189
+ International Standard Serial Number
2190
+ Details at:
2191
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=issn
2192
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=issn
2193
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=issn
2194
+ -->
2195
+ <define name="issn">
2196
+ <element name="issn">
2197
+ <ref name="issn-attlist"/>
2198
+ <zeroOrMore>
2199
+ <choice>
2200
+ <text/>
2201
+ <ref name="issn-elements"/>
2202
+ </choice>
2203
+ </zeroOrMore>
2204
+ </element>
2205
+ </define>
2206
+ <define name="issn-attlist" combine="interleave">
2207
+ <ref name="issn-atts"/>
2208
+ </define>
2209
+ <!-- ISSUE ELEMENTS -->
2210
+ <!--
2211
+ Elements for use with data characters inside
2212
+ the model for the <issue> element
2213
+ -->
2214
+ <!-- ISSUE NUMBER -->
2215
+ <!--
2216
+ The issue number, issue name, or other
2217
+ identifier of an issue of a journal that
2218
+ is displayed or printed with the issue.
2219
+ Details at:
2220
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=issue
2221
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=issue
2222
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=issue
2223
+ -->
2224
+ <define name="issue">
2225
+ <element name="issue">
2226
+ <ref name="issue-attlist"/>
2227
+ <zeroOrMore>
2228
+ <choice>
2229
+ <text/>
2230
+ <ref name="issue-elements"/>
2231
+ </choice>
2232
+ </zeroOrMore>
2233
+ </element>
2234
+ </define>
2235
+ <define name="issue-attlist" combine="interleave">
2236
+ <ref name="issue-atts"/>
2237
+ </define>
2238
+ <!-- ISSUE IDENTIFIER -->
2239
+ <!--
2240
+ Used to record an identifier such as a DOI
2241
+ that describes an entire issue of a
2242
+ journal
2243
+ Details at:
2244
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=issue-id
2245
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=issue-id
2246
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=issue-id
2247
+ -->
2248
+ <define name="issue-id">
2249
+ <element name="issue-id">
2250
+ <ref name="issue-id-attlist"/>
2251
+ <text/>
2252
+ </element>
2253
+ </define>
2254
+ <define name="issue-id-attlist" combine="interleave">
2255
+ <ref name="issue-id-atts"/>
2256
+ </define>
2257
+ <!-- ISSUE PART ELEMENTS -->
2258
+ <!--
2259
+ Elements that can be added to the text
2260
+ within the element <issue-part>
2261
+ -->
2262
+ <!-- ISSUE PART -->
2263
+ <!--
2264
+ A publisher may split an issue into two or
2265
+ more separately bound or separately issued
2266
+ parts. This element holds the identifiers
2267
+ (titles, part numbers, etc.) for those
2268
+ publishing components.
2269
+ Details at:
2270
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=issue-part
2271
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=issue-part
2272
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=issue-part
2273
+ -->
2274
+ <define name="issue-part">
2275
+ <element name="issue-part">
2276
+ <ref name="issue-part-attlist"/>
2277
+ <zeroOrMore>
2278
+ <choice>
2279
+ <text/>
2280
+ <ref name="just-rendition"/>
2281
+ </choice>
2282
+ </zeroOrMore>
2283
+ </element>
2284
+ </define>
2285
+ <define name="issue-part-attlist" combine="interleave">
2286
+ <ref name="issue-part-atts"/>
2287
+ </define>
2288
+ <!-- ISSUE SPONSOR ELEMENTS -->
2289
+ <!--
2290
+ Elements for use in the <issue-sponsor>
2291
+ element
2292
+ -->
2293
+ <!-- ISSUE TITLE -->
2294
+ <!--
2295
+ Used to record the sponsor for an issue of
2296
+ the journal
2297
+ Details at:
2298
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=issue-sponsor
2299
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=issue-sponsor
2300
+ -->
2301
+ <define name="issue-sponsor">
2302
+ <element name="issue-sponsor">
2303
+ <ref name="issue-sponsor-attlist"/>
2304
+ <zeroOrMore>
2305
+ <choice>
2306
+ <text/>
2307
+ <ref name="just-rendition"/>
2308
+ </choice>
2309
+ </zeroOrMore>
2310
+ </element>
2311
+ </define>
2312
+ <define name="issue-sponsor-attlist" combine="interleave">
2313
+ <ref name="issue-sponsor-atts"/>
2314
+ </define>
2315
+ <!-- ISSUE TITLE ELEMENTS -->
2316
+ <!-- Elements for use in the <issue-title> element -->
2317
+ <!-- ISSUE TITLE -->
2318
+ <!--
2319
+ Used to record the theme or special issue
2320
+ title for an issue of the journal
2321
+ Details at:
2322
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=issue-title
2323
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=issue-title
2324
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=issue-title
2325
+ -->
2326
+ <define name="issue-title">
2327
+ <element name="issue-title">
2328
+ <ref name="issue-title-attlist"/>
2329
+ <zeroOrMore>
2330
+ <choice>
2331
+ <text/>
2332
+ <ref name="just-rendition"/>
2333
+ </choice>
2334
+ </zeroOrMore>
2335
+ </element>
2336
+ </define>
2337
+ <define name="issue-title-attlist" combine="interleave">
2338
+ <ref name="issue-title-atts"/>
2339
+ </define>
2340
+ <!-- JOURNAL IDENTIFIER -->
2341
+ <!--
2342
+ Short code that represents the journal; used
2343
+ as an alternative to or short form of the
2344
+ journal title; used for identification of
2345
+ the journal domain.
2346
+ Details at:
2347
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=journal-id
2348
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=journal-id
2349
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=journal-id
2350
+ -->
2351
+ <define name="journal-id">
2352
+ <element name="journal-id">
2353
+ <ref name="journal-id-attlist"/>
2354
+ <text/>
2355
+ </element>
2356
+ </define>
2357
+ <define name="journal-id-attlist" combine="interleave">
2358
+ <ref name="journal-id-atts"/>
2359
+ </define>
2360
+ <!-- ROLE ELEMENTS -->
2361
+ <!--
2362
+ The elements that can be included along with
2363
+ data characters inside the content model of
2364
+ a <role>
2365
+ Design Note: All inline mixes begin with an
2366
+ OR bar; since %rendition-plus; is an
2367
+ inline mix, the OR bar is already there.
2368
+ -->
2369
+ <define name="role-elements">
2370
+ <ref name="rendition-plus"/>
2371
+ </define>
2372
+ <!-- ROLE OR FUNCTION TITLE OF CONTRIBUTOR -->
2373
+ <!--
2374
+ A title or the role of a contributor
2375
+ (such as an author) in this work. For example,
2376
+ Editor-in-Chief, Contributor, Chief
2377
+ Scientist, Photographer, Research Associate,
2378
+ etc.
2379
+ Details at:
2380
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=role
2381
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=role
2382
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=role
2383
+ -->
2384
+ <define name="role">
2385
+ <element name="role">
2386
+ <ref name="role-attlist"/>
2387
+ <zeroOrMore>
2388
+ <choice>
2389
+ <text/>
2390
+ <ref name="role-elements"/>
2391
+ </choice>
2392
+ </zeroOrMore>
2393
+ </element>
2394
+ </define>
2395
+ <define name="role-attlist" combine="interleave">
2396
+ <ref name="role-atts"/>
2397
+ </define>
2398
+ <!-- TRANSLATED TITLE GROUP MODEL -->
2399
+ <!--
2400
+ Content model for the element
2401
+ <trans-title-group>
2402
+ -->
2403
+ <define name="trans-title-group-model">
2404
+ <ref name="trans-title"/>
2405
+ <zeroOrMore>
2406
+ <ref name="trans-subtitle"/>
2407
+ </zeroOrMore>
2408
+ </define>
2409
+ <!-- TRANSLATED TITLE GROUP -->
2410
+ <!--
2411
+ Container element for all translated, and
2412
+ transliterated journal titles.
2413
+ Details at:
2414
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=trans-title-group
2415
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=trans-title-group
2416
+ -->
2417
+ <define name="trans-title-group">
2418
+ <element name="trans-title-group">
2419
+ <ref name="trans-title-group-attlist"/>
2420
+ <ref name="trans-title-group-model"/>
2421
+ </element>
2422
+ </define>
2423
+ <define name="trans-title-group-attlist" combine="interleave">
2424
+ <ref name="trans-title-group-atts"/>
2425
+ </define>
2426
+ <!-- TRANSLATED SUBTITLE -->
2427
+ <!--
2428
+ An alternate version of an article subtitle
2429
+ that has been translated out of the original
2430
+ language of the article subtitle <subtitle>
2431
+ Details at:
2432
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=trans-subtitle
2433
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=trans-subtitle
2434
+ -->
2435
+ <define name="trans-subtitle">
2436
+ <element name="trans-subtitle">
2437
+ <ref name="trans-subtitle-attlist"/>
2438
+ <zeroOrMore>
2439
+ <choice>
2440
+ <text/>
2441
+ <ref name="trans-subtitle-elements"/>
2442
+ </choice>
2443
+ </zeroOrMore>
2444
+ </element>
2445
+ </define>
2446
+ <define name="trans-subtitle-attlist" combine="interleave">
2447
+ <ref name="trans-subtitle-atts"/>
2448
+ </define>
2449
+ <!-- TRANSLATED TITLE -->
2450
+ <!--
2451
+ An alternate version of the title that has
2452
+ been translated into a language other than
2453
+ that of the original article title
2454
+ <article-title>
2455
+ Details at:
2456
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=trans-title
2457
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=trans-title
2458
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=trans-title
2459
+ -->
2460
+ <define name="trans-title">
2461
+ <element name="trans-title">
2462
+ <ref name="trans-title-attlist"/>
2463
+ <zeroOrMore>
2464
+ <choice>
2465
+ <text/>
2466
+ <ref name="trans-title-elements"/>
2467
+ </choice>
2468
+ </zeroOrMore>
2469
+ </element>
2470
+ </define>
2471
+ <define name="trans-title-attlist" combine="interleave">
2472
+ <ref name="trans-title-atts"/>
2473
+ </define>
2474
+ <!-- VOLUME NUMBER ELEMENTS -->
2475
+ <!--
2476
+ The elements that can be included along with
2477
+ data characters inside the content model of
2478
+ a <volume>
2479
+ -->
2480
+ <!-- VOLUME NUMBER -->
2481
+ <!--
2482
+ NEW DEFINITION FOR RELEASE 2.0:
2483
+ The volume number, volume name, or other
2484
+ identifier of an volume of a journal that
2485
+ is displayed or printed with the volume.
2486
+ Details at:
2487
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=volume
2488
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=volume
2489
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=volume
2490
+ -->
2491
+ <define name="volume">
2492
+ <element name="volume">
2493
+ <ref name="volume-attlist"/>
2494
+ <zeroOrMore>
2495
+ <choice>
2496
+ <text/>
2497
+ <ref name="volume-elements"/>
2498
+ </choice>
2499
+ </zeroOrMore>
2500
+ </element>
2501
+ </define>
2502
+ <define name="volume-attlist" combine="interleave">
2503
+ <ref name="volume-atts"/>
2504
+ </define>
2505
+ <!-- VOLUME IDENTIFIER ELEMENTS -->
2506
+ <!--
2507
+ The elements that can be included along with
2508
+ data characters inside the content model of
2509
+ a <volume-id>
2510
+ -->
2511
+ <!-- VOLUME IDENTIFIER -->
2512
+ <!--
2513
+ Used to record an identifier such as a DOI
2514
+ that describes an entire volume of a
2515
+ journal.
2516
+ Details at:
2517
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=volume-id
2518
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=volume-id
2519
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=volume-id
2520
+ -->
2521
+ <define name="volume-id">
2522
+ <element name="volume-id">
2523
+ <ref name="volume-id-attlist"/>
2524
+ <zeroOrMore>
2525
+ <choice>
2526
+ <text/>
2527
+ <ref name="just-rendition"/>
2528
+ </choice>
2529
+ </zeroOrMore>
2530
+ </element>
2531
+ </define>
2532
+ <define name="volume-id-attlist" combine="interleave">
2533
+ <ref name="volume-id-atts"/>
2534
+ </define>
2535
+ <!-- VOLUME SERIES ELEMENTS -->
2536
+ <!--
2537
+ The elements that can be included along with
2538
+ data characters inside the content model of
2539
+ a <volume>
2540
+ -->
2541
+ <!-- VOLUME SERIES -->
2542
+ <!--
2543
+ This is a rare metadata element, intended to
2544
+ hold the series number, in those odd cases
2545
+ where, for example, a Publisher has reissued
2546
+ a journal, restarting the volume numbers
2547
+ with "1", so duplicate volume numbers
2548
+ would exist and need to be differentiated.
2549
+ Such a publisher typically adds a series
2550
+ series number to their volume numbers, and
2551
+ this element has been created to hold such
2552
+ a series number.
2553
+ Details at:
2554
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=volume-series
2555
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=volume-series
2556
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=volume-series
2557
+ -->
2558
+ <define name="volume-series">
2559
+ <element name="volume-series">
2560
+ <ref name="volume-series-attlist"/>
2561
+ <zeroOrMore>
2562
+ <choice>
2563
+ <text/>
2564
+ <ref name="just-rendition"/>
2565
+ </choice>
2566
+ </zeroOrMore>
2567
+ </element>
2568
+ </define>
2569
+ <define name="volume-series-attlist" combine="interleave">
2570
+ <ref name="volume-series-atts"/>
2571
+ </define>
2572
+ <!-- ============================================================= -->
2573
+ <!-- COMMON ARTICLE METADATA/BIBLIOGRAPHIC -->
2574
+ <!-- CONTRIBUTOR IDENTIFICATION ELEMENTS -->
2575
+ <!-- ============================================================= -->
2576
+ <!-- ANONYMOUS ELEMENTS -->
2577
+ <!--
2578
+ The elements that can be included along with
2579
+ data characters inside the content model of
2580
+ an <anonymous> element
2581
+ -->
2582
+ <!-- ANONYMOUS CONTENT MODEL -->
2583
+ <!-- The content model for the <etal> element -->
2584
+ <!-- ANONYMOUS -->
2585
+ <!--
2586
+ Place holder for the name of a contributor
2587
+ whose name is unknown or not disclosed.
2588
+ Details at:
2589
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=anonymous
2590
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=anonymous
2591
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=anonymous
2592
+ -->
2593
+ <define name="anonymous">
2594
+ <element name="anonymous">
2595
+ <ref name="anonymous-attlist"/>
2596
+ <ref name="anonymous-model"/>
2597
+ </element>
2598
+ </define>
2599
+ <define name="anonymous-attlist" combine="interleave">
2600
+ <ref name="anonymous-atts"/>
2601
+ </define>
2602
+ <!-- ET AL ELEMENTS -->
2603
+ <!--
2604
+ The elements that can be included along with
2605
+ data characters inside the content model of
2606
+ an <etal> element
2607
+ -->
2608
+ <!-- ET AL CONTENT MODEL -->
2609
+ <!-- The content model for the <etal> element -->
2610
+ <define name="etal-model">
2611
+ <zeroOrMore>
2612
+ <choice>
2613
+ <text/>
2614
+ <ref name="just-rendition"/>
2615
+ </choice>
2616
+ </zeroOrMore>
2617
+ </define>
2618
+ <!-- ET AL -->
2619
+ <!--
2620
+ Most journals model this as an EMPTY element,
2621
+ typically used to generate the text "et al."
2622
+ from a stylesheet. However, a few journal
2623
+ DTDs (Blackwell's, for example) expect
2624
+ content for this element, with such text as
2625
+ "Associates, coworkers, and colleagues".
2626
+ Details at:
2627
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=etal
2628
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=etal
2629
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=etal
2630
+ -->
2631
+ <define name="etal">
2632
+ <element name="etal">
2633
+ <ref name="etal-attlist"/>
2634
+ <ref name="etal-model"/>
2635
+ </element>
2636
+ </define>
2637
+ <define name="etal-attlist" combine="interleave">
2638
+ <ref name="etal-atts"/>
2639
+ </define>
2640
+ <!-- ============================================================= -->
2641
+ <!-- COMMON ARTICLE METADATA/BIBLIOGRAPHIC -->
2642
+ <!-- PUBLISHER IDENTIFICATION ELEMENTS -->
2643
+ <!-- ============================================================= -->
2644
+ <!-- PUBLISHER CONTENT MODEL -->
2645
+ <!--
2646
+ The content model for the <publisher>
2647
+ element
2648
+ -->
2649
+ <define name="publisher-model">
2650
+ <oneOrMore>
2651
+ <ref name="publisher-name"/>
2652
+ <optional>
2653
+ <ref name="publisher-loc"/>
2654
+ </optional>
2655
+ </oneOrMore>
2656
+ </define>
2657
+ <!-- PUBLISHER -->
2658
+ <!--
2659
+ Who published the work
2660
+ Details at:
2661
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=publisher
2662
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=publisher
2663
+ -->
2664
+ <define name="publisher">
2665
+ <element name="publisher">
2666
+ <ref name="publisher-attlist"/>
2667
+ <ref name="publisher-model"/>
2668
+ </element>
2669
+ </define>
2670
+ <define name="publisher-attlist" combine="interleave">
2671
+ <ref name="publisher-atts"/>
2672
+ </define>
2673
+ <!-- PUBLISHER'S NAME ELEMENTS -->
2674
+ <!--
2675
+ The elements that can be included along with
2676
+ data characters inside the content model of
2677
+ a <publisher-name>
2678
+ Design Note: All inline mixes begin with an
2679
+ OR bar; since %just-rendition; is an
2680
+ inline mix, the OR bar is already there
2681
+ -->
2682
+ <!-- PUBLISHER'S NAME -->
2683
+ <!--
2684
+ Name of the publisher of the work
2685
+ Details at:
2686
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=publisher-name
2687
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=publisher-name
2688
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=publisher-name
2689
+ -->
2690
+ <define name="publisher-name">
2691
+ <element name="publisher-name">
2692
+ <ref name="publisher-name-attlist"/>
2693
+ <zeroOrMore>
2694
+ <choice>
2695
+ <text/>
2696
+ <ref name="publisher-name-elements"/>
2697
+ </choice>
2698
+ </zeroOrMore>
2699
+ </element>
2700
+ </define>
2701
+ <define name="publisher-name-attlist" combine="interleave">
2702
+ <ref name="publisher-name-atts"/>
2703
+ </define>
2704
+ <!-- PUBLISHER'S LOCATION ELEMENTS -->
2705
+ <!--
2706
+ Elements for use in the Publisher Location
2707
+ <publisher-loc> element
2708
+ -->
2709
+ <!-- PUBLISHER'S LOCATION -->
2710
+ <!--
2711
+ Place of publication, usually a city such
2712
+ as New York or London
2713
+ Details at:
2714
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=publisher-loc
2715
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=publisher-loc
2716
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=publisher-loc
2717
+ -->
2718
+ <define name="publisher-loc">
2719
+ <element name="publisher-loc">
2720
+ <ref name="publisher-loc-attlist"/>
2721
+ <zeroOrMore>
2722
+ <choice>
2723
+ <text/>
2724
+ <ref name="publisher-loc-elements"/>
2725
+ </choice>
2726
+ </zeroOrMore>
2727
+ </element>
2728
+ </define>
2729
+ <define name="publisher-loc-attlist" combine="interleave">
2730
+ <ref name="publisher-loc-atts"/>
2731
+ </define>
2732
+ <!-- ============================================================= -->
2733
+ <!-- COMMON METADATA ELEMENTS CONTINUED -->
2734
+ <!-- PAGE NUMBERING (SIZE) ELEMENTS -->
2735
+ <!-- ============================================================= -->
2736
+ <!-- FIRST PAGE -->
2737
+ <!--
2738
+ The page number on which the article starts,
2739
+ for print journals that have page numbers
2740
+ Details at:
2741
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=fpage
2742
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=fpage
2743
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=fpage
2744
+ -->
2745
+ <define name="fpage">
2746
+ <element name="fpage">
2747
+ <ref name="fpage-attlist"/>
2748
+ <text/>
2749
+ </element>
2750
+ </define>
2751
+ <define name="fpage-attlist" combine="interleave">
2752
+ <ref name="fpage-atts"/>
2753
+ </define>
2754
+ <!-- LAST PAGE -->
2755
+ <!--
2756
+ The page number on which the article ends,
2757
+ for print journals that have page numbers
2758
+ Details at:
2759
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=lpage
2760
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=lpage
2761
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=lpage
2762
+ -->
2763
+ <define name="lpage">
2764
+ <element name="lpage">
2765
+ <ref name="lpage-attlist"/>
2766
+ <text/>
2767
+ </element>
2768
+ </define>
2769
+ <define name="lpage-attlist" combine="interleave">
2770
+ <ref name="lpage-atts"/>
2771
+ </define>
2772
+ <!-- PAGE RANGES -->
2773
+ <!--
2774
+ A container element for additional page
2775
+ information (TO BE USED TO SUPPLEMENT AND
2776
+ NOT TO REPLACE <fpage> and <lpage>) to record
2777
+ discontinuous pages ranges such as
2778
+ "8-11, 14-19, 40"
2779
+ meaning that the article begins on page
2780
+ 8, runs 8 through 11, skips to pages 14
2781
+ through 19, and concludes on page 40.
2782
+ Details at:
2783
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=page-range
2784
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=page-range
2785
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=page-range
2786
+ -->
2787
+ <define name="page-range">
2788
+ <element name="page-range">
2789
+ <ref name="page-range-attlist"/>
2790
+ <text/>
2791
+ </element>
2792
+ </define>
2793
+ <define name="page-range-attlist" combine="interleave">
2794
+ <ref name="page-range-atts"/>
2795
+ </define>
2796
+ <!-- SIZE ELEMENTS -->
2797
+ <!--
2798
+ The elements that can be included along with
2799
+ data characters inside the content model of
2800
+ the size element.
2801
+ -->
2802
+ <define name="size-elements">
2803
+ <notAllowed/>
2804
+ </define>
2805
+ <!-- SIZE -->
2806
+ <!--
2807
+ The size (such as running time, page count,
2808
+ or physical measurements) of the object being
2809
+ described, usually by a <product> element.
2810
+ The "units" attribute must be used to name
2811
+ the unit of measure (pages, minutes, hours,
2812
+ linear feet, etc.).
2813
+ Details at:
2814
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=size
2815
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=size
2816
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=size
2817
+ -->
2818
+ <define name="size">
2819
+ <element name="size">
2820
+ <ref name="size-attlist"/>
2821
+ <zeroOrMore>
2822
+ <choice>
2823
+ <text/>
2824
+ <ref name="size-elements"/>
2825
+ </choice>
2826
+ </zeroOrMore>
2827
+ </element>
2828
+ </define>
2829
+ <define name="size-attlist" combine="interleave">
2830
+ <ref name="size-atts"/>
2831
+ </define>
2832
+ <!-- ELECTRONIC LOCATION IDENTIFIER -->
2833
+ <!--
2834
+ Used to identify an article that
2835
+ does not have traditional page numbers.
2836
+ Details at:
2837
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=elocation-id
2838
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=elocation-id
2839
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=elocation-id
2840
+ -->
2841
+ <define name="elocation-id">
2842
+ <element name="elocation-id">
2843
+ <ref name="elocation-id-attlist"/>
2844
+ <text/>
2845
+ </element>
2846
+ </define>
2847
+ <define name="elocation-id-attlist" combine="interleave">
2848
+ <ref name="elocation-id-atts"/>
2849
+ </define>
2850
+ <!-- ============================================================= -->
2851
+ <!-- CITATIONS (BIBLIOGRAPHIC REFERENCE) -->
2852
+ <!-- ============================================================= -->
2853
+ <!-- CITATION ELEMENTS -->
2854
+ <!--
2855
+ Content for both types of citation. These
2856
+ elements may be mixed with #PCDATA in the
2857
+ <mixed-citation> element (in which all
2858
+ punctuation and spacing are left intact), and
2859
+ they also constitute the choices that can be
2860
+ used to form the all-element-content of the
2861
+ <element-citation> element (in which
2862
+ punctuation and spacing are removed).
2863
+ Design Note: All inline mixes begin with an
2864
+ OR bar.
2865
+ -->
2866
+ <!-- MIXED CITATION -->
2867
+ <!--
2868
+ A citation is a description of a work, such
2869
+ as a journal article, book, or personal
2870
+ communication, that is cited in the text of
2871
+ the article. This citation element is
2872
+ completely loose, with text, punctuation,
2873
+ spacing, and any of the citation elements
2874
+ in any order.
2875
+ Details at:
2876
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=mixed-citation
2877
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=mixed-citation
2878
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=mixed-citation
2879
+ -->
2880
+ <define name="mixed-citation">
2881
+ <element name="mixed-citation">
2882
+ <ref name="mixed-citation-attlist"/>
2883
+ <zeroOrMore>
2884
+ <choice>
2885
+ <text/>
2886
+ <ref name="citation-elements"/>
2887
+ </choice>
2888
+ </zeroOrMore>
2889
+ </element>
2890
+ </define>
2891
+ <define name="mixed-citation-attlist" combine="interleave">
2892
+ <ref name="mixed-citation-atts"/>
2893
+ </define>
2894
+ <!-- ELEMENT CITATION -->
2895
+ <!--
2896
+ A citation is a description of a work, such
2897
+ as a journal article, book, or personal
2898
+ communication, that is cited in the text of
2899
+ the article. This citation model contains
2900
+ element-only content, with elements in
2901
+ any order as many times as needed. This
2902
+ citation is intended for use in capturing
2903
+ a publisher's specific element order.
2904
+ Details at:
2905
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=element-citation
2906
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=element-citation
2907
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=element-citation
2908
+ -->
2909
+ <define name="element-citation">
2910
+ <element name="element-citation">
2911
+ <ref name="element-citation-attlist"/>
2912
+ <oneOrMore>
2913
+ <ref name="citation-elements"/>
2914
+ </oneOrMore>
2915
+ </element>
2916
+ </define>
2917
+ <define name="element-citation-attlist" combine="interleave">
2918
+ <ref name="element-citation-atts"/>
2919
+ </define>
2920
+ <!-- ============================================================= -->
2921
+ <!-- ADDRESS ELEMENTS (BIBLIOGRAPHIC) -->
2922
+ <!-- ============================================================= -->
2923
+ <!-- ADDRESS MODEL -->
2924
+ <!-- Content model for the <address> element -->
2925
+ <define name="address-model">
2926
+ <zeroOrMore>
2927
+ <choice>
2928
+ <ref name="address.class"/>
2929
+ <ref name="address-link.class"/>
2930
+ </choice>
2931
+ </zeroOrMore>
2932
+ </define>
2933
+ <!-- ADDRESS/CONTACT INFORMATION -->
2934
+ <!--
2935
+ Wrapper element for contact information such
2936
+ as address, phone, fax, email, url, country,
2937
+ etc.
2938
+ Details at:
2939
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=address
2940
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=address
2941
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=address
2942
+ -->
2943
+ <define name="address">
2944
+ <element name="address">
2945
+ <ref name="address-attlist"/>
2946
+ <ref name="address-model"/>
2947
+ </element>
2948
+ </define>
2949
+ <define name="address-attlist" combine="interleave">
2950
+ <ref name="address-atts"/>
2951
+ </define>
2952
+ <!-- ADDRESS LINE ELEMENTS -->
2953
+ <!-- Elements for use in the <addr-line> element -->
2954
+ <define name="addr-line-elements">
2955
+ <choice>
2956
+ <ref name="simple-text"/>
2957
+ <ref name="address-line.class"/>
2958
+ </choice>
2959
+ </define>
2960
+ <!-- ADDRESS LINE -->
2961
+ <!-- One line in an address -->
2962
+ <!--
2963
+ Conversion Note: If the address is
2964
+ undifferentiated data characters, the entire
2965
+ address may be inside one of these elements.
2966
+ Details at:
2967
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=addr-line
2968
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=addr-line
2969
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=addr-line
2970
+ -->
2971
+ <define name="addr-line">
2972
+ <element name="addr-line">
2973
+ <ref name="addr-line-attlist"/>
2974
+ <zeroOrMore>
2975
+ <choice>
2976
+ <text/>
2977
+ <ref name="addr-line-elements"/>
2978
+ </choice>
2979
+ </zeroOrMore>
2980
+ </element>
2981
+ </define>
2982
+ <define name="addr-line-attlist" combine="interleave">
2983
+ <ref name="addr-line-atts"/>
2984
+ </define>
2985
+ <!-- COUNTRY ELEMENTS -->
2986
+ <!--
2987
+ The elements that can be included along with
2988
+ data characters inside the content model of
2989
+ the country element.
2990
+ -->
2991
+ <define name="country-elements">
2992
+ <notAllowed/>
2993
+ </define>
2994
+ <!-- COUNTRY: IN AN ADDRESS -->
2995
+ <!--
2996
+ Details at:
2997
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=country
2998
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=country
2999
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=country
3000
+ -->
3001
+ <define name="country">
3002
+ <element name="country">
3003
+ <ref name="country-attlist"/>
3004
+ <zeroOrMore>
3005
+ <choice>
3006
+ <text/>
3007
+ <ref name="country-elements"/>
3008
+ </choice>
3009
+ </zeroOrMore>
3010
+ </element>
3011
+ </define>
3012
+ <define name="country-attlist" combine="interleave">
3013
+ <ref name="country-atts"/>
3014
+ </define>
3015
+ <!-- EMAIL ADDRESS ELEMENTS -->
3016
+ <!--
3017
+ Elements to be mixed with #PCDATA inside the
3018
+ <email> element
3019
+ -->
3020
+ <define name="email-elements">
3021
+ <notAllowed/>
3022
+ </define>
3023
+ <!-- EMAIL ADDRESS -->
3024
+ <!--
3025
+ Details at:
3026
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=email
3027
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=email
3028
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=email
3029
+ -->
3030
+ <define name="email">
3031
+ <element name="email">
3032
+ <ref name="email-attlist"/>
3033
+ <zeroOrMore>
3034
+ <choice>
3035
+ <text/>
3036
+ <ref name="email-elements"/>
3037
+ </choice>
3038
+ </zeroOrMore>
3039
+ </element>
3040
+ </define>
3041
+ <define name="email-attlist" combine="interleave">
3042
+ <ref name="email-atts"/>
3043
+ </define>
3044
+ <!-- FAX NUMBER ELEMENTS -->
3045
+ <!--
3046
+ The elements that can be included along with
3047
+ data characters inside the content model of
3048
+ a <fax>
3049
+ -->
3050
+ <!-- FAX NUMBER: IN AN ADDRESS -->
3051
+ <!--
3052
+ Details at:
3053
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=fax
3054
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=fax
3055
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=fax
3056
+ -->
3057
+ <define name="fax">
3058
+ <element name="fax">
3059
+ <ref name="fax-attlist"/>
3060
+ <zeroOrMore>
3061
+ <choice>
3062
+ <text/>
3063
+ <ref name="fax-elements"/>
3064
+ </choice>
3065
+ </zeroOrMore>
3066
+ </element>
3067
+ </define>
3068
+ <define name="fax-attlist" combine="interleave">
3069
+ <ref name="fax-atts"/>
3070
+ </define>
3071
+ <!-- INSTITUTION NAME ELEMENTS -->
3072
+ <!--
3073
+ Elements for use in the <institution>
3074
+ element
3075
+ -->
3076
+ <!-- INSTITUTION NAME: IN AN ADDRESS -->
3077
+ <!--
3078
+ Name of a institution or organization such as
3079
+ a university or corporation used in an
3080
+ address or within a citation (such as a
3081
+ <mixed-citation> or an <element-citation>
3082
+ Details at:
3083
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=institution
3084
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=institution
3085
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=institution
3086
+ -->
3087
+ <define name="institution">
3088
+ <element name="institution">
3089
+ <ref name="institution-attlist"/>
3090
+ <zeroOrMore>
3091
+ <choice>
3092
+ <text/>
3093
+ <ref name="institution-elements"/>
3094
+ </choice>
3095
+ </zeroOrMore>
3096
+ </element>
3097
+ </define>
3098
+ <define name="institution-attlist" combine="interleave">
3099
+ <ref name="institution-atts"/>
3100
+ </define>
3101
+ <!-- PHONE NUMBER ELEMENTS -->
3102
+ <!--
3103
+ The elements that can be included along with
3104
+ data characters inside the content model of
3105
+ a <phone number>
3106
+ Design Note: All inline mixes begin with an
3107
+ OR bar, but since %just-rendition; is an
3108
+ inline mix, the OR bar is already there.
3109
+ -->
3110
+ <!-- PHONE NUMBER: IN AN ADDRESS -->
3111
+ <!--
3112
+ A callable phone number in some telephone or
3113
+ wireless system somewhere in the world.
3114
+ Details at:
3115
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=phone
3116
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=phone
3117
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=phone
3118
+ -->
3119
+ <define name="phone">
3120
+ <element name="phone">
3121
+ <ref name="phone-attlist"/>
3122
+ <zeroOrMore>
3123
+ <choice>
3124
+ <text/>
3125
+ <ref name="phone-elements"/>
3126
+ </choice>
3127
+ </zeroOrMore>
3128
+ </element>
3129
+ </define>
3130
+ <define name="phone-attlist" combine="interleave">
3131
+ <ref name="phone-atts"/>
3132
+ </define>
3133
+ <!-- URI ELEMENTS -->
3134
+ <!--
3135
+ The elements that can be included along with
3136
+ data characters inside the content model of
3137
+ a <uri>
3138
+ Design Note: This PE begins with an OR
3139
+ bar because %just-rendition; begins with an
3140
+ OR bar.
3141
+ -->
3142
+ <!-- URI -->
3143
+ <!--
3144
+ URI such as a URL that may be used as a
3145
+ live link, typically naming a website, such
3146
+ as:
3147
+ <url>http://www.mulberrytech.com</url>
3148
+ Alternatively the element content may name
3149
+ the URL, e.g., "Mulberry's Website" and the
3150
+ "xlink:href" attribute may hold the real
3151
+ URL.
3152
+ <url xlink:href="http://www.mulberrytech.
3153
+ com">Mulberry's Website</url>
3154
+ Details at:
3155
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=uri
3156
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=uri
3157
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=uri
3158
+ -->
3159
+ <define name="uri">
3160
+ <element name="uri">
3161
+ <ref name="uri-attlist"/>
3162
+ <zeroOrMore>
3163
+ <choice>
3164
+ <text/>
3165
+ <ref name="uri-elements"/>
3166
+ </choice>
3167
+ </zeroOrMore>
3168
+ </element>
3169
+ </define>
3170
+ <define name="uri-attlist" combine="interleave">
3171
+ <ref name="uri-atts"/>
3172
+ </define>
3173
+ <!-- ============================================================= -->
3174
+ <!-- DATE ELEMENTS (PUBLICATION HISTORY) -->
3175
+ <!-- ============================================================= -->
3176
+ <!-- DATE -->
3177
+ <!--
3178
+ The elements <day>, <month>, and <year> should
3179
+ ALWAYS be numeric values. The date may be
3180
+ represented as a string in <string-date>, but
3181
+ the numeric values should be present whenever
3182
+ possible.
3183
+ Details at:
3184
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=date
3185
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=date
3186
+ -->
3187
+ <define name="date">
3188
+ <element name="date">
3189
+ <ref name="date-attlist"/>
3190
+ <ref name="date-model"/>
3191
+ </element>
3192
+ </define>
3193
+ <define name="date-attlist" combine="interleave">
3194
+ <ref name="date-atts"/>
3195
+ </define>
3196
+ <!-- DAY -->
3197
+ <!--
3198
+ The numeric value of a day of the month, used
3199
+ in both article metadata and inside a citation,
3200
+ in two digits as it would be stated in the "DD"
3201
+ in an international date format YYYY-MM-DD, for
3202
+ example "03", "25".
3203
+ Details at:
3204
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=day
3205
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=day
3206
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=day
3207
+ -->
3208
+ <define name="day">
3209
+ <element name="day">
3210
+ <ref name="day-attlist"/>
3211
+ <text/>
3212
+ </element>
3213
+ </define>
3214
+ <define name="day-attlist" combine="interleave">
3215
+ <ref name="day-atts"/>
3216
+ </define>
3217
+ <!-- MONTH -->
3218
+ <!--
3219
+ Names one of the months of the year. Used in
3220
+ both article metadata and inside a citation,
3221
+ this element may contain a full month
3222
+ "December", an abbreviation "Dec", or,
3223
+ preferably, a numeric month such as "12".
3224
+ Details at:
3225
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=month
3226
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=month
3227
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=month
3228
+ -->
3229
+ <define name="month">
3230
+ <element name="month">
3231
+ <ref name="month-attlist"/>
3232
+ <text/>
3233
+ </element>
3234
+ </define>
3235
+ <define name="month-attlist" combine="interleave">
3236
+ <ref name="month-atts"/>
3237
+ </define>
3238
+ <!-- SEASON -->
3239
+ <!--
3240
+ Season of publication, such as "Spring".
3241
+ Used in both article metadata and inside a
3242
+ citation (such as a <mixed-citation> or an
3243
+ <element-citation>
3244
+ Details at:
3245
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=season
3246
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=season
3247
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=season
3248
+ -->
3249
+ <define name="season">
3250
+ <element name="season">
3251
+ <ref name="season-attlist"/>
3252
+ <text/>
3253
+ </element>
3254
+ </define>
3255
+ <define name="season-attlist" combine="interleave">
3256
+ <ref name="season-atts"/>
3257
+ </define>
3258
+ <!-- YEAR -->
3259
+ <!--
3260
+ Year of publication, which should be expressed
3261
+ as a 4-digit number: "1776" or "1924"
3262
+ Details at:
3263
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=year
3264
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=year
3265
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=year
3266
+ -->
3267
+ <define name="year">
3268
+ <element name="year">
3269
+ <ref name="year-attlist"/>
3270
+ <text/>
3271
+ </element>
3272
+ </define>
3273
+ <define name="year-attlist" combine="interleave">
3274
+ <ref name="year-atts"/>
3275
+ </define>
3276
+ <!-- STRING DATE ELEMENTS -->
3277
+ <!--
3278
+ The elements that can be included along with
3279
+ data characters inside the content model of
3280
+ the <string-date> element
3281
+ -->
3282
+ <define name="string-date-elements">
3283
+ <ref name="date-parts.class"/>
3284
+ </define>
3285
+ <!-- DATE AS A STRING -->
3286
+ <!--
3287
+ This is a representation of the date as a
3288
+ string; usually used for dates for which
3289
+ months and years are not given, but may be
3290
+ used for any date as a string (i.e., "January,
3291
+ 2001" "Fall 2001" "March 11, 2001".
3292
+ Details at:
3293
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=string-date
3294
+ -->
3295
+ <define name="string-date">
3296
+ <element name="string-date">
3297
+ <ref name="string-date-attlist"/>
3298
+ <zeroOrMore>
3299
+ <choice>
3300
+ <text/>
3301
+ <ref name="string-date-elements"/>
3302
+ </choice>
3303
+ </zeroOrMore>
3304
+ </element>
3305
+ </define>
3306
+ <define name="string-date-attlist" combine="interleave">
3307
+ <ref name="string-date-atts"/>
3308
+ </define>
3309
+ <!-- ============================================================= -->
3310
+ <!-- PERSON'S NAME ELEMENTS (BIBLIOGRAPHIC) -->
3311
+ <!-- ============================================================= -->
3312
+ <!-- NAME ALTERNATIVES MODEL -->
3313
+ <!--
3314
+ Content model for the <name-alternatives>
3315
+ element
3316
+ -->
3317
+ <define name="name-alternatives-model">
3318
+ <oneOrMore>
3319
+ <ref name="name-alternatives.class"/>
3320
+ </oneOrMore>
3321
+ </define>
3322
+ <!-- NAME ALTERNATIVES -->
3323
+ <!--
3324
+ Wrapper element for more than one version of
3325
+ a personal name, for eaxmple, the name in
3326
+ Japanese kana characters and a transliterated
3327
+ form of the name in Latin alphabet.
3328
+ Details at:
3329
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=name-alternatives
3330
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=name-alternatives
3331
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=name-alternatives
3332
+ -->
3333
+ <define name="name-alternatives">
3334
+ <element name="name-alternatives">
3335
+ <ref name="name-alternatives-attlist"/>
3336
+ <ref name="name-alternatives-model"/>
3337
+ </element>
3338
+ </define>
3339
+ <define name="name-alternatives-attlist" combine="interleave">
3340
+ <ref name="name-alternatives-atts"/>
3341
+ </define>
3342
+ <!-- NAME OF PERSON (STRUCTURED) -->
3343
+ <!--
3344
+ Wrapper element for personal names.
3345
+ Details at:
3346
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=name
3347
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=name
3348
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=name
3349
+ -->
3350
+ <define name="name">
3351
+ <element name="name">
3352
+ <ref name="name-attlist"/>
3353
+ <choice>
3354
+ <group>
3355
+ <ref name="surname"/>
3356
+ <optional>
3357
+ <ref name="given-names"/>
3358
+ </optional>
3359
+ </group>
3360
+ <ref name="given-names"/>
3361
+ </choice>
3362
+ <optional>
3363
+ <ref name="prefix"/>
3364
+ </optional>
3365
+ <optional>
3366
+ <ref name="suffix"/>
3367
+ </optional>
3368
+ </element>
3369
+ </define>
3370
+ <define name="name-attlist" combine="interleave">
3371
+ <ref name="name-atts"/>
3372
+ </define>
3373
+ <!-- STRING NAME ELEMENTS -->
3374
+ <!--
3375
+ The elements that can be included along with
3376
+ data characters inside the content model of
3377
+ the <string-name> element
3378
+ -->
3379
+ <define name="string-name-elements">
3380
+ <ref name="person-name.class"/>
3381
+ </define>
3382
+ <!-- NAME OF PERSON (UNSTRUCTURED) -->
3383
+ <!--
3384
+ Wrapper element for personal names where the
3385
+ stricter format of the <name> element cannot
3386
+ be followed. This is a very loose element,
3387
+ allowing data characters, generated text,
3388
+ and any or all of the naming elements.
3389
+ Details at:
3390
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=string-name
3391
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=string-name
3392
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=string-name
3393
+ -->
3394
+ <define name="string-name">
3395
+ <element name="string-name">
3396
+ <ref name="string-name-attlist"/>
3397
+ <zeroOrMore>
3398
+ <choice>
3399
+ <text/>
3400
+ <ref name="string-name-elements"/>
3401
+ </choice>
3402
+ </zeroOrMore>
3403
+ </element>
3404
+ </define>
3405
+ <define name="string-name-attlist" combine="interleave">
3406
+ <ref name="string-name-atts"/>
3407
+ </define>
3408
+ <!-- ============================================================= -->
3409
+ <!-- PARTS OF A PERSON'S NAME ELEMENTS -->
3410
+ <!-- ============================================================= -->
3411
+ <!-- GIVEN (FIRST) NAMES ELEMENTS -->
3412
+ <!--
3413
+ The elements that can be included along with
3414
+ data characters inside the content model of
3415
+ a <given-names>
3416
+ -->
3417
+ <!-- GIVEN (FIRST) NAMES -->
3418
+ <!--
3419
+ Includes all given names for a person, such
3420
+ as the first name, middle names, maiden
3421
+ name if used as part of the married name,
3422
+ etc.)
3423
+ Details at:
3424
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=given-names
3425
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=given-names
3426
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=given-names
3427
+ -->
3428
+ <define name="given-names">
3429
+ <element name="given-names">
3430
+ <ref name="given-names-attlist"/>
3431
+ <zeroOrMore>
3432
+ <choice>
3433
+ <text/>
3434
+ <ref name="given-names-elements"/>
3435
+ </choice>
3436
+ </zeroOrMore>
3437
+ </element>
3438
+ </define>
3439
+ <define name="given-names-attlist" combine="interleave">
3440
+ <ref name="given-names-atts"/>
3441
+ </define>
3442
+ <!-- SURNAME ELEMENTS -->
3443
+ <!--
3444
+ The elements that can be included along with
3445
+ data characters inside the content model of
3446
+ a <surname>
3447
+ Design Note: This PE begins with an OR
3448
+ bar because %just-rendition; begins with an
3449
+ OR bar.
3450
+ -->
3451
+ <!-- SURNAME -->
3452
+ <!--
3453
+ The surname (family name) of an individual.
3454
+ or the single name if there is only one
3455
+ name, for example, "Cher" or "Pele".
3456
+ Details at:
3457
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=surname
3458
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=surname
3459
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=surname
3460
+ -->
3461
+ <define name="surname">
3462
+ <element name="surname">
3463
+ <ref name="surname-attlist"/>
3464
+ <zeroOrMore>
3465
+ <choice>
3466
+ <text/>
3467
+ <ref name="surname-elements"/>
3468
+ </choice>
3469
+ </zeroOrMore>
3470
+ </element>
3471
+ </define>
3472
+ <define name="surname-attlist" combine="interleave">
3473
+ <ref name="surname-atts"/>
3474
+ </define>
3475
+ <!-- PREFIX ELEMENTS -->
3476
+ <!--
3477
+ The elements that can be included along with
3478
+ data characters inside the content model of
3479
+ a <prefix>
3480
+ Design Note: This PE begins with an OR
3481
+ bar because %just-rendition; begins with an
3482
+ OR bar.
3483
+ -->
3484
+ <!-- PREFIX -->
3485
+ <!--
3486
+ Honorifics or other qualifiers that usually
3487
+ precede the surname, for example, Professor,
3488
+ Rev., President, Senator, Dr., Sir, The
3489
+ Honorable, et al.
3490
+ Details at:
3491
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=prefix
3492
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=prefix
3493
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=prefix
3494
+ -->
3495
+ <define name="prefix">
3496
+ <element name="prefix">
3497
+ <ref name="prefix-attlist"/>
3498
+ <zeroOrMore>
3499
+ <choice>
3500
+ <text/>
3501
+ <ref name="prefix-elements"/>
3502
+ </choice>
3503
+ </zeroOrMore>
3504
+ </element>
3505
+ </define>
3506
+ <define name="prefix-attlist" combine="interleave">
3507
+ <ref name="prefix-atts"/>
3508
+ </define>
3509
+ <!-- SUFFIX ELEMENTS -->
3510
+ <!--
3511
+ The elements that can be included along with
3512
+ data characters inside the content model of
3513
+ a <suffix>
3514
+ Design Note: This PE begins with an OR bar,
3515
+ it is inside %just-rendition;
3516
+ -->
3517
+ <!-- SUFFIX -->
3518
+ <!--
3519
+ Text used as a suffix to a person's name, for
3520
+ example: Sr. Jr. III, 3rd
3521
+ Details at:
3522
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=suffix
3523
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=suffix
3524
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=suffix
3525
+ -->
3526
+ <define name="suffix">
3527
+ <element name="suffix">
3528
+ <ref name="suffix-attlist"/>
3529
+ <zeroOrMore>
3530
+ <choice>
3531
+ <text/>
3532
+ <ref name="suffix-elements"/>
3533
+ </choice>
3534
+ </zeroOrMore>
3535
+ </element>
3536
+ </define>
3537
+ <define name="suffix-attlist" combine="interleave">
3538
+ <ref name="suffix-atts"/>
3539
+ </define>
3540
+ <!-- ============================================================= -->
3541
+ <!-- EXTERNAL LINK ELEMENTS -->
3542
+ <!-- ============================================================= -->
3543
+ <!-- EXTERNAL LINK ELEMENTS -->
3544
+ <!--
3545
+ The elements that can be included along with
3546
+ data characters inside the content model of
3547
+ an <ext-link>
3548
+ Design Note: All inline mixes begin with an
3549
+ OR bar, but since %link-elements; is an inline
3550
+ mix, the OR bar is already there.
3551
+ -->
3552
+ <define name="ext-link-elements">
3553
+ <ref name="link-elements"/>
3554
+ </define>
3555
+ <!-- EXTERNAL LINK -->
3556
+ <!--
3557
+ Link to an external file, such as Medline,
3558
+ Genbank, etc. Linking may be accomplished
3559
+ using the XLink linking attributes.
3560
+ Details at:
3561
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=ext-link
3562
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=ext-link
3563
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=ext-link
3564
+ -->
3565
+ <define name="ext-link">
3566
+ <element name="ext-link">
3567
+ <ref name="ext-link-attlist"/>
3568
+ <zeroOrMore>
3569
+ <choice>
3570
+ <text/>
3571
+ <ref name="ext-link-elements"/>
3572
+ </choice>
3573
+ </zeroOrMore>
3574
+ </element>
3575
+ </define>
3576
+ <define name="ext-link-attlist" combine="interleave">
3577
+ <ref name="ext-link-atts"/>
3578
+ </define>
3579
+ <!-- ============================================================= -->
3580
+ <!-- SHARED STRUCTURAL ELEMENTS -->
3581
+ <!-- ============================================================= -->
3582
+ <!-- ATTRIBUTION ELEMENTS -->
3583
+ <!--
3584
+ The elements that can be included along with
3585
+ data characters inside the content model of
3586
+ an attribution
3587
+ Design Note: All inline mixes begin with an
3588
+ OR bar, but since %simple-phrase; is an
3589
+ inline mix, the OR bar is already there.
3590
+ -->
3591
+ <define name="attrib-elements">
3592
+ <ref name="emphasized-text"/>
3593
+ </define>
3594
+ <!-- ATTRIBUTION -->
3595
+ <!--
3596
+ Source, author, formal thanks, or other
3597
+ information (other than copyright material)
3598
+ concerning the origins of an extract, a poem
3599
+ <verse-group> or similar element.
3600
+ Details at:
3601
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=attrib
3602
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=attrib
3603
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=attrib
3604
+ -->
3605
+ <define name="attrib">
3606
+ <element name="attrib">
3607
+ <ref name="attrib-attlist"/>
3608
+ <zeroOrMore>
3609
+ <choice>
3610
+ <text/>
3611
+ <ref name="attrib-elements"/>
3612
+ </choice>
3613
+ </zeroOrMore>
3614
+ </element>
3615
+ </define>
3616
+ <define name="attrib-attlist" combine="interleave">
3617
+ <ref name="attrib-atts"/>
3618
+ </define>
3619
+ <!-- DEFINITION LIST: DEFINITION MODEL -->
3620
+ <!--
3621
+ Content model for the <def> element, which
3622
+ is used in contexts outside of <def-list>s
3623
+ -->
3624
+ <define name="def-model">
3625
+ <oneOrMore>
3626
+ <ref name="just-para.class"/>
3627
+ </oneOrMore>
3628
+ </define>
3629
+ <!-- DEFINITION LIST: DEFINITION -->
3630
+ <!--
3631
+ Used in two senses:
3632
+ 1) The definition, description, or other
3633
+ explanation of the word, phrase, or picture
3634
+ of a 2-part or definition list
3635
+ 2) The definition or expansion of an
3636
+ abbreviation or acronym <abbrev>
3637
+ Details at:
3638
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=def
3639
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=def
3640
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=def
3641
+ -->
3642
+ <define name="def">
3643
+ <element name="def">
3644
+ <ref name="def-attlist"/>
3645
+ <ref name="def-model"/>
3646
+ </element>
3647
+ </define>
3648
+ <define name="def-attlist" combine="interleave">
3649
+ <ref name="def-atts"/>
3650
+ </define>
3651
+ <!-- LABEL ELEMENTS -->
3652
+ <!--
3653
+ The elements that can be included along with
3654
+ data characters inside the content model of
3655
+ the <label> element
3656
+ -->
3657
+ <!-- LABEL OF A FIGURE, REFERENCE, ETC. -->
3658
+ <!--
3659
+ The number and any prefix word that comes
3660
+ before, for example, the caption of a Figure,
3661
+ such as "Figure 3." or "Exhibit 2.".
3662
+ Details at:
3663
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=label
3664
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=label
3665
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=label
3666
+ -->
3667
+ <define name="label">
3668
+ <element name="label">
3669
+ <ref name="label-attlist"/>
3670
+ <zeroOrMore>
3671
+ <choice>
3672
+ <text/>
3673
+ <ref name="label-elements"/>
3674
+ </choice>
3675
+ </zeroOrMore>
3676
+ </element>
3677
+ </define>
3678
+ <define name="label-attlist" combine="interleave">
3679
+ <ref name="label-atts"/>
3680
+ </define>
3681
+ <!-- PRICE ELEMENTS -->
3682
+ <!--
3683
+ The elements that can be included along with
3684
+ data characters inside the content model of
3685
+ the <price> element
3686
+ -->
3687
+ <define name="price-elements">
3688
+ <ref name="emphasis.class"/>
3689
+ </define>
3690
+ <!-- PRICE -->
3691
+ <!--
3692
+ Sale price of a work, typically a book or
3693
+ software package that is being reviewed
3694
+ Details at:
3695
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=price
3696
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=price
3697
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=price
3698
+ -->
3699
+ <define name="price">
3700
+ <element name="price">
3701
+ <ref name="price-attlist"/>
3702
+ <zeroOrMore>
3703
+ <choice>
3704
+ <text/>
3705
+ <ref name="price-elements"/>
3706
+ </choice>
3707
+ </zeroOrMore>
3708
+ </element>
3709
+ </define>
3710
+ <define name="price-attlist" combine="interleave">
3711
+ <ref name="price-atts"/>
3712
+ </define>
3713
+ <!-- STRUCTURAL TITLE ELEMENTS -->
3714
+ <!--
3715
+ The elements that can be included along with
3716
+ data characters inside the content model of
3717
+ the <title> element
3718
+ Design Note: All inline mixes begin with an
3719
+ OR bar, but since %simple-phrase; is an
3720
+ inline mix, the OR bar is already there.
3721
+ -->
3722
+ <define name="struct-title-elements">
3723
+ <choice>
3724
+ <ref name="simple-phrase"/>
3725
+ <ref name="break.class"/>
3726
+ <ref name="citation.class"/>
3727
+ </choice>
3728
+ </define>
3729
+ <!-- TITLE -->
3730
+ <!--
3731
+ Heading or title for a structural element
3732
+ such as a Section, Figure, Boxed Text, etc.
3733
+ Details at:
3734
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=title
3735
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=title
3736
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=title
3737
+ -->
3738
+ <define name="title">
3739
+ <element name="title">
3740
+ <ref name="title-attlist"/>
3741
+ <zeroOrMore>
3742
+ <choice>
3743
+ <text/>
3744
+ <ref name="struct-title-elements"/>
3745
+ </choice>
3746
+ </zeroOrMore>
3747
+ </element>
3748
+ </define>
3749
+ <define name="title-attlist" combine="interleave">
3750
+ <ref name="title-atts"/>
3751
+ </define>
3752
+ <!-- ============================================================= -->
3753
+ <!-- RELATED ARTICLE ELEMENTS -->
3754
+ <!-- (METADATA AND STRUCTURAL) -->
3755
+ <!-- ============================================================= -->
3756
+ <!-- RELATED ARTICLE ELEMENTS -->
3757
+ <!-- Elements allowed inside <related-article> -->
3758
+ <define name="related-article-elements">
3759
+ <choice>
3760
+ <ref name="emphasis.class"/>
3761
+ <ref name="journal-id.class"/>
3762
+ <ref name="phrase-content.class"/>
3763
+ <ref name="references.class"/>
3764
+ <ref name="subsup.class"/>
3765
+ </choice>
3766
+ </define>
3767
+ <!-- RELATED ARTICLE INFORMATION -->
3768
+ <!--
3769
+ Wrapper element, used as a container for
3770
+ text links to a related article, possibly
3771
+ accompanied by a very brief description
3772
+ such as "errata (correction)".
3773
+ Details at:
3774
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=related-article
3775
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=related-article
3776
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=related-article
3777
+ -->
3778
+ <define name="related-article">
3779
+ <element name="related-article">
3780
+ <ref name="related-article-attlist"/>
3781
+ <zeroOrMore>
3782
+ <choice>
3783
+ <text/>
3784
+ <ref name="related-article-elements"/>
3785
+ </choice>
3786
+ </zeroOrMore>
3787
+ </element>
3788
+ </define>
3789
+ <define name="related-article-attlist" combine="interleave">
3790
+ <ref name="related-article-atts"/>
3791
+ </define>
3792
+ <!-- ============================================================= -->
3793
+ <!-- SIGNATURE BLOCK ELEMENTS -->
3794
+ <!-- ============================================================= -->
3795
+ <!-- SIGNATURE BLOCK ELEMENTS -->
3796
+ <!--
3797
+ Elements to be mixed with data characters
3798
+ inside the content model for the
3799
+ <sig-block> element.
3800
+ -->
3801
+ <define name="sig-block-elements">
3802
+ <choice>
3803
+ <ref name="break.class"/>
3804
+ <ref name="emphasis.class"/>
3805
+ <ref name="just-base-display.class"/>
3806
+ <ref name="inline-display-noalt.class"/>
3807
+ <ref name="phrase-content.class"/>
3808
+ <ref name="sig.class"/>
3809
+ <ref name="subsup.class"/>
3810
+ </choice>
3811
+ </define>
3812
+ <!-- SIGNATURE BLOCK -->
3813
+ <!--
3814
+ An area of text and graphic material placed
3815
+ at the end of an article or section to hold
3816
+ the graphical signature or other description
3817
+ of the person responsible for or attesting
3818
+ to the content.
3819
+ Details at:
3820
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=sig-block
3821
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=sig-block
3822
+ -->
3823
+ <define name="sig-block">
3824
+ <element name="sig-block">
3825
+ <ref name="sig-block-attlist"/>
3826
+ <zeroOrMore>
3827
+ <choice>
3828
+ <text/>
3829
+ <ref name="sig-block-elements"/>
3830
+ </choice>
3831
+ </zeroOrMore>
3832
+ </element>
3833
+ </define>
3834
+ <define name="sig-block-attlist" combine="interleave">
3835
+ <ref name="sig-block-atts"/>
3836
+ </define>
3837
+ <!-- SIGNATURE ELEMENTS -->
3838
+ <!--
3839
+ Elements to be mixed with data characters
3840
+ inside the content model for the
3841
+ <sig> element.
3842
+ -->
3843
+ <define name="sig-elements">
3844
+ <choice>
3845
+ <ref name="rendition-plus"/>
3846
+ <ref name="break.class"/>
3847
+ <ref name="inline-display-noalt.class"/>
3848
+ <ref name="just-base-display-noalt.class"/>
3849
+ </choice>
3850
+ </define>
3851
+ <!-- SIGNATURE -->
3852
+ <!--
3853
+ One contributor signature and associated
3854
+ material (such as a text restatement of the
3855
+ affiliation) inside a signature block.
3856
+ Details at:
3857
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=sig
3858
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=sig
3859
+ -->
3860
+ <define name="sig">
3861
+ <element name="sig">
3862
+ <ref name="sig-attlist"/>
3863
+ <zeroOrMore>
3864
+ <choice>
3865
+ <text/>
3866
+ <ref name="sig-elements"/>
3867
+ </choice>
3868
+ </zeroOrMore>
3869
+ </element>
3870
+ </define>
3871
+ <define name="sig-attlist" combine="interleave">
3872
+ <ref name="sig-atts"/>
3873
+ </define>
3874
+ <!-- ============================================================= -->
3875
+ <!-- FRONT MATTER/BACK MATTER ELEMENTS -->
3876
+ <!-- ============================================================= -->
3877
+ <!-- ACKNOWLEDGMENTS MODEL -->
3878
+ <!-- Content model for the <ack> element -->
3879
+ <!-- ACKNOWLEDGMENTS -->
3880
+ <!--
3881
+ Details at:
3882
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=ack
3883
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=ack
3884
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=ack
3885
+ -->
3886
+ <define name="ack">
3887
+ <element name="ack">
3888
+ <ref name="ack-attlist"/>
3889
+ <ref name="ack-model"/>
3890
+ </element>
3891
+ </define>
3892
+ <define name="ack-attlist" combine="interleave">
3893
+ <ref name="ack-atts"/>
3894
+ </define>
3895
+ <!-- BIOGRAPHY MODEL -->
3896
+ <!-- Content model for the <bio> element -->
3897
+ <define name="bio-model">
3898
+ <ref name="sec-opt-title-model"/>
3899
+ </define>
3900
+ <!-- BIOGRAPHY -->
3901
+ <!--
3902
+ Short biography of a person, usually the
3903
+ author
3904
+ Details at:
3905
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=bio
3906
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=bio
3907
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=bio
3908
+ -->
3909
+ <define name="bio">
3910
+ <element name="bio">
3911
+ <ref name="bio-attlist"/>
3912
+ <ref name="bio-model"/>
3913
+ </element>
3914
+ </define>
3915
+ <define name="bio-attlist" combine="interleave">
3916
+ <ref name="bio-atts"/>
3917
+ </define>
3918
+ <!-- NOTES MODEL -->
3919
+ <!-- Content model for the <notes> element -->
3920
+ <define name="notes-model">
3921
+ <ref name="sec-opt-title-model"/>
3922
+ </define>
3923
+ <!-- NOTES -->
3924
+ <!--
3925
+ A container element for the notes that may
3926
+ appear at the end of an Article or at the
3927
+ end of a Table, for example, a typical
3928
+ end-of-article note is a "Note in Proof".
3929
+ Details at:
3930
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=notes
3931
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=notes
3932
+ -->
3933
+ <define name="notes">
3934
+ <element name="notes">
3935
+ <ref name="notes-attlist"/>
3936
+ <ref name="notes-model"/>
3937
+ </element>
3938
+ </define>
3939
+ <define name="notes-attlist" combine="interleave">
3940
+ <ref name="notes-atts"/>
3941
+ </define>
3942
+ <!-- ============================================================= -->
3943
+ <!-- ACCESSIBILITY ELEMENTS -->
3944
+ <!-- ============================================================= -->
3945
+ <!-- ALTERNATE TITLE TEXT FOR A FIGURE, ETC. -->
3946
+ <!--
3947
+ Short phrase used to display or pronounce
3948
+ as an alternative to providing the full
3949
+ graphic for accessibility display or
3950
+ graphic-limited websites or devices. For
3951
+ example, <alt-text> may be used to display
3952
+ "behind" a figure or graphic.
3953
+ Details at:
3954
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=alt-text
3955
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=alt-text
3956
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=alt-text
3957
+ -->
3958
+ <define name="alt-text">
3959
+ <element name="alt-text">
3960
+ <ref name="alt-text-attlist"/>
3961
+ <text/>
3962
+ </element>
3963
+ </define>
3964
+ <define name="alt-text-attlist" combine="interleave">
3965
+ <ref name="alt-text-atts"/>
3966
+ </define>
3967
+ <!-- LONG DESCRIPTION ELEMENTS -->
3968
+ <!--
3969
+ Elements to be mixed with data characters
3970
+ inside the <long-desc> element
3971
+ -->
3972
+ <define name="long-desc-elements">
3973
+ <notAllowed/>
3974
+ </define>
3975
+ <!-- LONG DESCRIPTION -->
3976
+ <!--
3977
+ Description or summary of the content of a
3978
+ graphical object, table, or textual object
3979
+ such as a text box, used by some systems to
3980
+ make the object accessible, even to people
3981
+ or systems that cannot read/see/display the
3982
+ object.
3983
+ Details at:
3984
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=long-desc
3985
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=long-desc
3986
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=long-desc
3987
+ -->
3988
+ <define name="long-desc">
3989
+ <element name="long-desc">
3990
+ <ref name="long-desc-attlist"/>
3991
+ <zeroOrMore>
3992
+ <choice>
3993
+ <text/>
3994
+ <ref name="long-desc-elements"/>
3995
+ </choice>
3996
+ </zeroOrMore>
3997
+ </element>
3998
+ </define>
3999
+ <define name="long-desc-attlist" combine="interleave">
4000
+ <ref name="long-desc-atts"/>
4001
+ </define>
4002
+ <!-- ============================================================= -->
4003
+ <!-- CUSTOM METADATA ELEMENTS -->
4004
+ <!-- ============================================================= -->
4005
+ <!-- CUSTOM METADATA GROUP MODEL -->
4006
+ <!--
4007
+ Content model for the <custom-meta-group>
4008
+ element
4009
+ -->
4010
+ <define name="custom-meta-group-model">
4011
+ <oneOrMore>
4012
+ <ref name="custom-meta"/>
4013
+ </oneOrMore>
4014
+ </define>
4015
+ <!-- CUSTOM METADATA GROUP -->
4016
+ <!--
4017
+ Some DTDs and schemas allow for metadata
4018
+ above and beyond that which can be specified
4019
+ by this DTD. This element is a grouping
4020
+ element used to contain all these additional
4021
+ metadata elements.
4022
+ Details at:
4023
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=custom-meta-group
4024
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=custom-meta-group
4025
+ -->
4026
+ <define name="custom-meta-group">
4027
+ <element name="custom-meta-group">
4028
+ <ref name="custom-meta-group-attlist"/>
4029
+ <ref name="custom-meta-group-model"/>
4030
+ </element>
4031
+ </define>
4032
+ <define name="custom-meta-group-attlist" combine="interleave">
4033
+ <empty/>
4034
+ </define>
4035
+ <!-- CUSTOM METADATA MODEL -->
4036
+ <!-- Content model for the <custom-meta> element -->
4037
+ <define name="custom-meta-model">
4038
+ <ref name="meta-name"/>
4039
+ <ref name="meta-value"/>
4040
+ </define>
4041
+ <!-- CUSTOM METADATA -->
4042
+ <!--
4043
+ Some DTDs and schemas allow for metadata
4044
+ above and beyond that which can be specified
4045
+ by this DTD. This element is used to capture
4046
+ metadata elements that have not been defined
4047
+ explicitly in the models for this DTD, so
4048
+ that the intellectual content will not be lost.
4049
+ Details at:
4050
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=custom-meta
4051
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=custom-meta
4052
+ -->
4053
+ <define name="custom-meta">
4054
+ <element name="custom-meta">
4055
+ <ref name="custom-meta-attlist"/>
4056
+ <ref name="custom-meta-model"/>
4057
+ </element>
4058
+ </define>
4059
+ <define name="custom-meta-attlist" combine="interleave">
4060
+ <ref name="custom-meta-atts"/>
4061
+ </define>
4062
+ <!-- METADATA DATA NAME ELEMENTS -->
4063
+ <!--
4064
+ Elements that may be used, along with data
4065
+ characters, inside the <meta-name> element
4066
+ Design Note: All inline mixes begin with an
4067
+ OR bar, but since %simple-phrase; is an
4068
+ inline mix, the OR bar is already there.
4069
+ -->
4070
+ <define name="meta-name-elements">
4071
+ <notAllowed/>
4072
+ </define>
4073
+ <!-- METADATA DATA NAME FOR CUSTOM METADATA -->
4074
+ <!--
4075
+ The <custom-meta> element
4076
+ allows for an infinite number of name/value
4077
+ pairs, with few constraints on the length or
4078
+ content of the value. This element contains
4079
+ the name of the metadata field.
4080
+ Details at:
4081
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=meta-name
4082
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=meta-name
4083
+ -->
4084
+ <define name="meta-name">
4085
+ <element name="meta-name">
4086
+ <ref name="meta-name-attlist"/>
4087
+ <zeroOrMore>
4088
+ <choice>
4089
+ <text/>
4090
+ <ref name="meta-name-elements"/>
4091
+ </choice>
4092
+ </zeroOrMore>
4093
+ </element>
4094
+ </define>
4095
+ <define name="meta-name-attlist" combine="interleave">
4096
+ <ref name="meta-name-atts"/>
4097
+ </define>
4098
+ <!-- METADATA DATA VALUE ELEMENTS -->
4099
+ <!--
4100
+ Elements that may be used, along with data
4101
+ characters, inside the <meta-value> element
4102
+ Design Note: All inline mixes begin with an
4103
+ OR bar, but since %simple-phrase; is an
4104
+ inline mix, the OR bar is already there.
4105
+ -->
4106
+ <define name="meta-value-elements">
4107
+ <ref name="simple-phrase"/>
4108
+ </define>
4109
+ <!-- METADATA DATA VALUE FOR CUSTOM METADATA -->
4110
+ <!--
4111
+ The <custom-meta> element
4112
+ allows for an infinite number of name/value
4113
+ pairs, with few constraints on the length or
4114
+ content of the value. This element contains
4115
+ the value of the metadata field that is named
4116
+ by the <meta-name> element.
4117
+ Details at:
4118
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=meta-value
4119
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=meta-value
4120
+ -->
4121
+ <define name="meta-value">
4122
+ <element name="meta-value">
4123
+ <ref name="meta-value-attlist"/>
4124
+ <zeroOrMore>
4125
+ <choice>
4126
+ <text/>
4127
+ <ref name="meta-value-elements"/>
4128
+ </choice>
4129
+ </zeroOrMore>
4130
+ </element>
4131
+ </define>
4132
+ <define name="meta-value-attlist" combine="interleave">
4133
+ <ref name="meta-value-atts"/>
4134
+ </define>
4135
+ <!-- ============================================================= -->
4136
+ <!-- PROCESSING ALTERNATIVES ELEMENTS -->
4137
+ <!-- ============================================================= -->
4138
+ <!-- ALTERNATIVES MODEL -->
4139
+ <!--
4140
+ Model for the <alternatives> processing
4141
+ alternatives element
4142
+ -->
4143
+ <define name="alternatives-model">
4144
+ <oneOrMore>
4145
+ <choice>
4146
+ <ref name="alternatives-display.class"/>
4147
+ <ref name="math.class"/>
4148
+ </choice>
4149
+ </oneOrMore>
4150
+ </define>
4151
+ <!-- ALTERNATIVES FOR PROCESSING -->
4152
+ <!--
4153
+ Container element used to hold a group of
4154
+ processing alternatives, for example, a
4155
+ single logical <graphic> that ships in
4156
+ different formats (tif, gif, jpeg) or
4157
+ different resolutions. This element is a
4158
+ physical grouping to contain multiple
4159
+ logically equivalent (substitutable) versions
4160
+ of the same information object.
4161
+ Details at:
4162
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=alternatives
4163
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=alternatives
4164
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=alternatives
4165
+ -->
4166
+ <define name="alternatives">
4167
+ <element name="alternatives">
4168
+ <ref name="alternatives-attlist"/>
4169
+ <ref name="alternatives-model"/>
4170
+ </element>
4171
+ </define>
4172
+ <define name="alternatives-attlist" combine="interleave">
4173
+ <ref name="alternatives-atts"/>
4174
+ </define>
4175
+ <!-- TEXTUAL FORM ELEMENTS -->
4176
+ <!-- Model for the <textual-form> element -->
4177
+ <define name="textual-form-elements">
4178
+ <choice>
4179
+ <ref name="emphasis.class"/>
4180
+ <ref name="inline-display-noalt.class"/>
4181
+ <ref name="math.class"/>
4182
+ <ref name="phrase-content.class"/>
4183
+ <ref name="subsup.class"/>
4184
+ </choice>
4185
+ </define>
4186
+ <!-- TEXTUAL FORM -->
4187
+ <!--
4188
+ Container element (for use only inside
4189
+ <alternatives>) that will hold text and
4190
+ mixed content objects that act as alternatives
4191
+ to, for example, graphics.
4192
+ Details at:
4193
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=textual-form
4194
+ http://jats.nlm.nih.gov/publishing/tag-library/0.4/index.html?elem=textual-form
4195
+ http://jats.nlm.nih.gov/articleauthoring/tag-library/0.4/index.html?elem=textual-form
4196
+ -->
4197
+ <define name="textual-form">
4198
+ <element name="textual-form">
4199
+ <ref name="textual-form-attlist"/>
4200
+ <zeroOrMore>
4201
+ <choice>
4202
+ <text/>
4203
+ <ref name="textual-form-elements"/>
4204
+ </choice>
4205
+ </zeroOrMore>
4206
+ </element>
4207
+ </define>
4208
+ <define name="textual-form-attlist" combine="interleave">
4209
+ <ref name="textual-form-atts"/>
4210
+ </define>
4211
+ <!-- ============================================================= -->
4212
+ <!-- GENERATED TEXT OR PUNCTUATION -->
4213
+ <!-- ============================================================= -->
4214
+ <!-- X TEXT ATTRIBUTES -->
4215
+ <!-- Attributes for the element <x> -->
4216
+ <define name="x-atts">
4217
+ <optional>
4218
+ <attribute name="content-type"/>
4219
+ </optional>
4220
+ <optional>
4221
+ <attribute name="xml:space" a:defaultValue="preserve">
4222
+ <value>preserve</value>
4223
+ </attribute>
4224
+ </optional>
4225
+ <optional>
4226
+ <attribute name="specific-use"/>
4227
+ </optional>
4228
+ <optional>
4229
+ <attribute name="xml:lang">
4230
+ <data type="NMTOKEN"/>
4231
+ </attribute>
4232
+ </optional>
4233
+ </define>
4234
+ <!-- X ELEMENTS -->
4235
+ <!-- Elements for use inside the <x> element -->
4236
+ <define name="x-elements">
4237
+ <notAllowed/>
4238
+ </define>
4239
+ <!-- X - GENERATED TEXT AND PUNCTUATION -->
4240
+ <!--
4241
+ A container element to hold punctuation or
4242
+ other generated text, typically when 1) an
4243
+ archive decides not to have any text
4244
+ generated and thus to pre-generate such
4245
+ things as commas or semicolons between
4246
+ keywords or 2) when an archive receives text
4247
+ with <x> tags embedded and wishes to retain
4248
+ them.
4249
+ Details at:
4250
+ http://jats.nlm.nih.gov/archiving/tag-library/0.4/index.html?elem=x
4251
+ -->
4252
+ <define name="x">
4253
+ <element name="x">
4254
+ <ref name="x-attlist"/>
4255
+ <zeroOrMore>
4256
+ <choice>
4257
+ <text/>
4258
+ <ref name="x-elements"/>
4259
+ </choice>
4260
+ </zeroOrMore>
4261
+ </element>
4262
+ </define>
4263
+ <define name="x-attlist" combine="interleave">
4264
+ <ref name="x-atts"/>
4265
+ </define>
4266
+ </grammar>
4267
+ <!-- ================== End Common (Shared) Elements Module ====== -->