mml 2.3.0 → 2.3.2

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 (336) hide show
  1. checksums.yaml +4 -4
  2. data/.gitmodules +9 -0
  3. data/.rubocop.yml +4 -0
  4. data/.rubocop_todo.yml +83 -18
  5. data/Gemfile +0 -2
  6. data/README.adoc +176 -47
  7. data/Rakefile +16 -1
  8. data/lib/mml/base/common_attributes.rb +44 -0
  9. data/lib/mml/base/content/annotation.rb +28 -0
  10. data/lib/mml/base/content/annotation_xml.rb +31 -0
  11. data/lib/mml/base/content/apply.rb +27 -0
  12. data/lib/mml/base/content/arith.rb +243 -0
  13. data/lib/mml/base/content/bind.rb +27 -0
  14. data/lib/mml/base/content/bvar.rb +20 -0
  15. data/lib/mml/base/content/calculus.rb +103 -0
  16. data/lib/mml/base/content/cbytes.rb +24 -0
  17. data/lib/mml/base/content/cerror.rb +24 -0
  18. data/lib/mml/base/content/ci.rb +77 -0
  19. data/lib/mml/base/content/cn.rb +33 -0
  20. data/lib/mml/base/content/condition.rb +20 -0
  21. data/lib/mml/base/content/constants.rb +173 -0
  22. data/lib/mml/base/content/cs.rb +22 -0
  23. data/lib/mml/base/content/csymbol.rb +79 -0
  24. data/lib/mml/base/content/declare.rb +34 -0
  25. data/lib/mml/base/content/degree.rb +20 -0
  26. data/lib/mml/base/content/elementary_functions.rb +309 -0
  27. data/lib/mml/base/content/fn.rb +25 -0
  28. data/lib/mml/base/content/functions.rb +85 -0
  29. data/lib/mml/base/content/interval.rb +24 -0
  30. data/lib/mml/base/content/inverse.rb +25 -0
  31. data/lib/mml/base/content/lambda.rb +20 -0
  32. data/lib/mml/base/content/linear_algebra.rb +122 -0
  33. data/lib/mml/base/content/logic.rb +93 -0
  34. data/lib/mml/base/content/otherwise.rb +20 -0
  35. data/lib/mml/base/content/piece.rb +20 -0
  36. data/lib/mml/base/content/piecewise.rb +20 -0
  37. data/lib/mml/base/content/relations.rb +113 -0
  38. data/lib/mml/base/content/reln.rb +19 -0
  39. data/lib/mml/base/content/semantics.rb +27 -0
  40. data/lib/mml/base/content/sep.rb +19 -0
  41. data/lib/mml/base/content/sets.rb +163 -0
  42. data/lib/mml/base/content/share.rb +22 -0
  43. data/lib/mml/base/content/statistics.rb +95 -0
  44. data/lib/mml/base/content/vector_calculus.rb +63 -0
  45. data/lib/mml/base/content_loader.rb +195 -0
  46. data/lib/mml/base/maction.rb +1 -0
  47. data/lib/mml/base/math.rb +47 -0
  48. data/lib/mml/base/menclose.rb +1 -1
  49. data/lib/mml/base/mfenced.rb +2 -2
  50. data/lib/mml/base/mglyph.rb +2 -2
  51. data/lib/mml/base/mi.rb +9 -6
  52. data/lib/mml/base/mlabeledtr.rb +2 -6
  53. data/lib/mml/base/mn.rb +3 -2
  54. data/lib/mml/base/mo.rb +3 -3
  55. data/lib/mml/base/mrow.rb +0 -2
  56. data/lib/mml/base/ms.rb +4 -6
  57. data/lib/mml/base/mscarries.rb +1 -1
  58. data/lib/mml/base/mspace.rb +0 -2
  59. data/lib/mml/base/mstyle.rb +4 -8
  60. data/lib/mml/base/mtable.rb +8 -0
  61. data/lib/mml/base/mtd.rb +6 -0
  62. data/lib/mml/base/mtext.rb +0 -2
  63. data/lib/mml/base/semantics.rb +4 -2
  64. data/lib/mml/base/universal_presentation_attributes.rb +46 -0
  65. data/lib/mml/base/v3_common.rb +16 -0
  66. data/lib/mml/base/v3_presentation_attributes.rb +15 -0
  67. data/lib/mml/base/v4_attributes.rb +4 -18
  68. data/lib/mml/base.rb +11 -0
  69. data/lib/mml/common_elements.rb +336 -0
  70. data/lib/mml/context_configuration.rb +29 -0
  71. data/lib/mml/v2/annotation.rb +9 -0
  72. data/lib/mml/v2/annotation_xml.rb +9 -0
  73. data/lib/mml/v2/apply.rb +9 -0
  74. data/lib/mml/v2/arith.rb +93 -0
  75. data/lib/mml/v2/bind.rb +9 -0
  76. data/lib/mml/v2/bvar.rb +9 -0
  77. data/lib/mml/v2/calculus.rb +33 -0
  78. data/lib/mml/v2/ci.rb +9 -0
  79. data/lib/mml/v2/cn.rb +9 -0
  80. data/lib/mml/v2/common_elements.rb +34 -0
  81. data/lib/mml/v2/condition.rb +9 -0
  82. data/lib/mml/v2/configuration.rb +13 -0
  83. data/lib/mml/v2/constants.rb +65 -0
  84. data/lib/mml/v2/csymbol.rb +9 -0
  85. data/lib/mml/v2/degree.rb +9 -0
  86. data/lib/mml/v2/elementary_functions.rb +121 -0
  87. data/lib/mml/v2/fn.rb +9 -0
  88. data/lib/mml/v2/functions.rb +29 -0
  89. data/lib/mml/v2/interval.rb +9 -0
  90. data/lib/mml/v2/inverse.rb +9 -0
  91. data/lib/mml/v2/lambda.rb +9 -0
  92. data/lib/mml/v2/linear_algebra.rb +41 -0
  93. data/lib/mml/v2/logic.rb +33 -0
  94. data/lib/mml/v2/maction.rb +9 -0
  95. data/lib/mml/v2/maligngroup.rb +9 -0
  96. data/lib/mml/v2/malignmark.rb +9 -0
  97. data/lib/mml/v2/math.rb +11 -0
  98. data/lib/mml/v2/menclose.rb +9 -0
  99. data/lib/mml/v2/merror.rb +9 -0
  100. data/lib/mml/v2/mfenced.rb +9 -0
  101. data/lib/mml/v2/mfrac.rb +9 -0
  102. data/lib/mml/v2/mfraction.rb +9 -0
  103. data/lib/mml/v2/mglyph.rb +9 -0
  104. data/lib/mml/v2/mi.rb +9 -0
  105. data/lib/mml/v2/mlabeledtr.rb +9 -0
  106. data/lib/mml/v2/mlongdiv.rb +9 -0
  107. data/lib/mml/v2/mmultiscripts.rb +9 -0
  108. data/lib/mml/v2/mn.rb +9 -0
  109. data/lib/mml/v2/mo.rb +10 -0
  110. data/lib/mml/v2/mover.rb +9 -0
  111. data/lib/mml/v2/mpadded.rb +9 -0
  112. data/lib/mml/v2/mphantom.rb +9 -0
  113. data/lib/mml/v2/mprescripts.rb +9 -0
  114. data/lib/mml/v2/mroot.rb +9 -0
  115. data/lib/mml/v2/mrow.rb +9 -0
  116. data/lib/mml/v2/ms.rb +9 -0
  117. data/lib/mml/v2/mscarries.rb +9 -0
  118. data/lib/mml/v2/mscarry.rb +9 -0
  119. data/lib/mml/v2/msgroup.rb +9 -0
  120. data/lib/mml/v2/msline.rb +9 -0
  121. data/lib/mml/v2/mspace.rb +9 -0
  122. data/lib/mml/v2/msqrt.rb +9 -0
  123. data/lib/mml/v2/msrow.rb +9 -0
  124. data/lib/mml/v2/mstack.rb +9 -0
  125. data/lib/mml/v2/mstyle.rb +10 -0
  126. data/lib/mml/v2/msub.rb +9 -0
  127. data/lib/mml/v2/msubsup.rb +9 -0
  128. data/lib/mml/v2/msup.rb +9 -0
  129. data/lib/mml/v2/mtable.rb +9 -0
  130. data/lib/mml/v2/mtd.rb +9 -0
  131. data/lib/mml/v2/mtext.rb +9 -0
  132. data/lib/mml/v2/mtr.rb +9 -0
  133. data/lib/mml/v2/munder.rb +9 -0
  134. data/lib/mml/v2/munderover.rb +9 -0
  135. data/lib/mml/v2/namespace.rb +7 -0
  136. data/lib/mml/v2/none.rb +9 -0
  137. data/lib/mml/v2/otherwise.rb +9 -0
  138. data/lib/mml/v2/piece.rb +9 -0
  139. data/lib/mml/v2/piecewise.rb +9 -0
  140. data/lib/mml/v2/relations.rb +41 -0
  141. data/lib/mml/v2/reln.rb +13 -0
  142. data/lib/mml/v2/semantics.rb +9 -0
  143. data/lib/mml/v2/sep.rb +9 -0
  144. data/lib/mml/v2/sets.rb +57 -0
  145. data/lib/mml/v2/statistics.rb +33 -0
  146. data/lib/mml/v2/vector_calculus.rb +21 -0
  147. data/lib/mml/v2.rb +311 -0
  148. data/lib/mml/v3/annotation.rb +10 -0
  149. data/lib/mml/v3/annotation_xml.rb +10 -0
  150. data/lib/mml/v3/apply.rb +10 -0
  151. data/lib/mml/v3/arith.rb +115 -0
  152. data/lib/mml/v3/bind.rb +10 -0
  153. data/lib/mml/v3/calculus.rb +40 -0
  154. data/lib/mml/v3/cbytes.rb +10 -0
  155. data/lib/mml/v3/cerror.rb +10 -0
  156. data/lib/mml/v3/ci.rb +10 -0
  157. data/lib/mml/v3/cn.rb +10 -0
  158. data/lib/mml/v3/common_elements.rb +34 -0
  159. data/lib/mml/v3/constants.rb +80 -0
  160. data/lib/mml/v3/constructs.rb +55 -0
  161. data/lib/mml/v3/cs.rb +10 -0
  162. data/lib/mml/v3/csymbol.rb +10 -0
  163. data/lib/mml/v3/deprecated_content.rb +29 -0
  164. data/lib/mml/v3/elementary_functions.rb +145 -0
  165. data/lib/mml/v3/functions.rb +35 -0
  166. data/lib/mml/v3/linear_algebra.rb +50 -0
  167. data/lib/mml/v3/logic.rb +40 -0
  168. data/lib/mml/v3/maction.rb +1 -1
  169. data/lib/mml/v3/math.rb +7 -1
  170. data/lib/mml/v3/mi.rb +1 -0
  171. data/lib/mml/v3/mn.rb +1 -0
  172. data/lib/mml/v3/mo.rb +1 -0
  173. data/lib/mml/v3/mrow.rb +1 -0
  174. data/lib/mml/v3/ms.rb +1 -0
  175. data/lib/mml/v3/mstyle.rb +1 -0
  176. data/lib/mml/v3/mtext.rb +1 -0
  177. data/lib/mml/v3/relations.rb +50 -0
  178. data/lib/mml/v3/sets.rb +70 -0
  179. data/lib/mml/v3/statistics.rb +40 -0
  180. data/lib/mml/v3/vector_calculus.rb +25 -0
  181. data/lib/mml/v3.rb +25 -0
  182. data/lib/mml/v4/a.rb +4 -3
  183. data/lib/mml/v4/annotation.rb +10 -0
  184. data/lib/mml/v4/annotation_xml.rb +14 -0
  185. data/lib/mml/v4/apply.rb +9 -0
  186. data/lib/mml/v4/arith.rb +93 -0
  187. data/lib/mml/v4/calculus.rb +25 -0
  188. data/lib/mml/v4/cbytes.rb +9 -0
  189. data/lib/mml/v4/cerror.rb +9 -0
  190. data/lib/mml/v4/ci.rb +9 -0
  191. data/lib/mml/v4/cn.rb +9 -0
  192. data/lib/mml/v4/common_elements.rb +33 -0
  193. data/lib/mml/v4/constants.rb +65 -0
  194. data/lib/mml/v4/constructs.rb +49 -0
  195. data/lib/mml/v4/cs.rb +9 -0
  196. data/lib/mml/v4/csymbol.rb +9 -0
  197. data/lib/mml/v4/deprecated_content.rb +25 -0
  198. data/lib/mml/v4/elementary_functions.rb +118 -0
  199. data/lib/mml/v4/factorof.rb +9 -0
  200. data/lib/mml/v4/functions.rb +30 -0
  201. data/lib/mml/v4/limit.rb +9 -0
  202. data/lib/mml/v4/linear_algebra.rb +41 -0
  203. data/lib/mml/v4/logic.rb +33 -0
  204. data/lib/mml/v4/maction.rb +1 -2
  205. data/lib/mml/v4/maligngroup.rb +0 -1
  206. data/lib/mml/v4/malignmark.rb +0 -1
  207. data/lib/mml/v4/math.rb +1 -1
  208. data/lib/mml/v4/menclose.rb +0 -1
  209. data/lib/mml/v4/merror.rb +0 -1
  210. data/lib/mml/v4/mfenced.rb +0 -1
  211. data/lib/mml/v4/mfrac.rb +0 -1
  212. data/lib/mml/v4/mfraction.rb +0 -1
  213. data/lib/mml/v4/mglyph.rb +0 -1
  214. data/lib/mml/v4/mi.rb +1 -1
  215. data/lib/mml/v4/mlabeledtr.rb +0 -1
  216. data/lib/mml/v4/mlongdiv.rb +0 -1
  217. data/lib/mml/v4/mmultiscripts.rb +0 -1
  218. data/lib/mml/v4/mn.rb +1 -1
  219. data/lib/mml/v4/mo.rb +1 -1
  220. data/lib/mml/v4/mover.rb +0 -1
  221. data/lib/mml/v4/mpadded.rb +0 -1
  222. data/lib/mml/v4/mphantom.rb +0 -1
  223. data/lib/mml/v4/mprescripts.rb +0 -1
  224. data/lib/mml/v4/mroot.rb +0 -1
  225. data/lib/mml/v4/mrow.rb +1 -1
  226. data/lib/mml/v4/ms.rb +1 -1
  227. data/lib/mml/v4/mscarries.rb +0 -1
  228. data/lib/mml/v4/mscarry.rb +0 -1
  229. data/lib/mml/v4/msgroup.rb +0 -1
  230. data/lib/mml/v4/msline.rb +0 -1
  231. data/lib/mml/v4/mspace.rb +0 -1
  232. data/lib/mml/v4/msqrt.rb +0 -1
  233. data/lib/mml/v4/msrow.rb +0 -1
  234. data/lib/mml/v4/mstack.rb +0 -1
  235. data/lib/mml/v4/mstyle.rb +1 -1
  236. data/lib/mml/v4/msub.rb +0 -1
  237. data/lib/mml/v4/msubsup.rb +0 -1
  238. data/lib/mml/v4/msup.rb +0 -1
  239. data/lib/mml/v4/mtable.rb +0 -1
  240. data/lib/mml/v4/mtd.rb +0 -1
  241. data/lib/mml/v4/mtext.rb +1 -1
  242. data/lib/mml/v4/mtr.rb +0 -1
  243. data/lib/mml/v4/munder.rb +0 -1
  244. data/lib/mml/v4/munderover.rb +0 -1
  245. data/lib/mml/v4/none.rb +0 -1
  246. data/lib/mml/v4/relations.rb +37 -0
  247. data/lib/mml/v4/semantics.rb +0 -1
  248. data/lib/mml/v4/sets.rb +57 -0
  249. data/lib/mml/v4/statistics.rb +33 -0
  250. data/lib/mml/v4/tendsto.rb +9 -0
  251. data/lib/mml/v4/vector_calculus.rb +21 -0
  252. data/lib/mml/v4.rb +421 -44
  253. data/lib/mml/version.rb +1 -1
  254. data/lib/mml/versioned_parser.rb +1 -1
  255. data/lib/mml.rb +3 -1
  256. data/reference-docs/mathml-source/pubtext/mathmlspec.dtd +150 -0
  257. data/reference-docs/mathml-source/pubtext/xmlspec.dtd +2649 -0
  258. data/reference-docs/mathml-source/readme.txt +40 -0
  259. data/reference-docs/mathml-source/run +296 -0
  260. data/reference-docs/mathml-source/style/html/html2xhtml.xsl +216 -0
  261. data/reference-docs/mathml-source/style/html/images.xsl +98 -0
  262. data/reference-docs/mathml-source/style/html/mml6.xsl +1156 -0
  263. data/reference-docs/mathml-source/style/html/mmldiff.xsl +566 -0
  264. data/reference-docs/mathml-source/style/html/mmlspec.xsl +2531 -0
  265. data/reference-docs/mathml-source/style/html/slices-common.xsl +312 -0
  266. data/reference-docs/mathml-source/style/html/slices.xsl +48 -0
  267. data/reference-docs/mathml-source/style/html/xmlspec.xsl +2542 -0
  268. data/reference-docs/mathml-source/style/pdf/mathmlspec.xsl +2510 -0
  269. data/reference-docs/mathml-source/xml/changes.xml +773 -0
  270. data/reference-docs/mathml-source/xml/character-set.xml +1011 -0
  271. data/reference-docs/mathml-source/xml/content-element-def.xml +6143 -0
  272. data/reference-docs/mathml-source/xml/content-markup.xml +8178 -0
  273. data/reference-docs/mathml-source/xml/contributors.xml +425 -0
  274. data/reference-docs/mathml-source/xml/dom-bindings.xml +20 -0
  275. data/reference-docs/mathml-source/xml/dom-intro.xml +114 -0
  276. data/reference-docs/mathml-source/xml/fundamentals.xml +1646 -0
  277. data/reference-docs/mathml-source/xml/glossary.xml +519 -0
  278. data/reference-docs/mathml-source/xml/interface.xml +1096 -0
  279. data/reference-docs/mathml-source/xml/introduction.xml +724 -0
  280. data/reference-docs/mathml-source/xml/mathml-css-sample.xml +304 -0
  281. data/reference-docs/mathml-source/xml/mathml-dom.xml +3813 -0
  282. data/reference-docs/mathml-source/xml/mathml-spec.xml +356 -0
  283. data/reference-docs/mathml-source/xml/mixing.xml +982 -0
  284. data/reference-docs/mathml-source/xml/operator-dict.xml +551 -0
  285. data/reference-docs/mathml-source/xml/parsing.xml +2565 -0
  286. data/reference-docs/mathml-source/xml/presentation-markup.xml +6834 -0
  287. data/reference-docs/mathml-source/xml/references.xml +323 -0
  288. data/reference-docs/mathml-source/xml/validation-grammar.xml +877 -0
  289. data/schemas/README.adoc +17 -0
  290. data/schemas/mathml2/common/common-attribs.xsd +41 -0
  291. data/schemas/mathml2/common/math.xsd +126 -0
  292. data/schemas/mathml2/common/xlink-href.xsd +20 -0
  293. data/schemas/mathml2/content/CVS/Entries +16 -0
  294. data/schemas/mathml2/content/CVS/Repository +1 -0
  295. data/schemas/mathml2/content/CVS/Root +1 -0
  296. data/schemas/mathml2/content/arith.xsd +90 -0
  297. data/schemas/mathml2/content/calculus.xsd +146 -0
  298. data/schemas/mathml2/content/common-attrib.xsd +30 -0
  299. data/schemas/mathml2/content/constants.xsd +83 -0
  300. data/schemas/mathml2/content/constructs.xsd +260 -0
  301. data/schemas/mathml2/content/elementary-functions.xsd +117 -0
  302. data/schemas/mathml2/content/functions.xsd +73 -0
  303. data/schemas/mathml2/content/linear-algebra.xsd +173 -0
  304. data/schemas/mathml2/content/logic.xsd +53 -0
  305. data/schemas/mathml2/content/relations.xsd +55 -0
  306. data/schemas/mathml2/content/semantics.xsd +85 -0
  307. data/schemas/mathml2/content/sets.xsd +236 -0
  308. data/schemas/mathml2/content/statistics.xsd +136 -0
  309. data/schemas/mathml2/content/tokens.xsd +120 -0
  310. data/schemas/mathml2/content/tokens.xsd.~1.3.~ +119 -0
  311. data/schemas/mathml2/content/vector-calculus.xsd +88 -0
  312. data/schemas/mathml2/mathml2.xsd +59 -0
  313. data/schemas/mathml2/presentation/action.xsd +44 -0
  314. data/schemas/mathml2/presentation/characters.xsd +37 -0
  315. data/schemas/mathml2/presentation/common-attribs.xsd +113 -0
  316. data/schemas/mathml2/presentation/common-types.xsd +103 -0
  317. data/schemas/mathml2/presentation/error.xsd +40 -0
  318. data/schemas/mathml2/presentation/layout.xsd +195 -0
  319. data/schemas/mathml2/presentation/scripts.xsd +186 -0
  320. data/schemas/mathml2/presentation/space.xsd +52 -0
  321. data/schemas/mathml2/presentation/style.xsd +69 -0
  322. data/schemas/mathml2/presentation/table.xsd +216 -0
  323. data/schemas/mathml2/presentation/tokens.xsd +124 -0
  324. data/schemas/mathml3/mathml3-common.xsd +99 -0
  325. data/schemas/mathml3/mathml3-content.xsd +684 -0
  326. data/schemas/mathml3/mathml3-presentation.xsd +2151 -0
  327. data/schemas/mathml3/mathml3-strict-content.xsd +186 -0
  328. data/schemas/mathml3/mathml3.xsd +9 -0
  329. data/schemas/mathml4/mathml4-content.rnc +382 -0
  330. data/schemas/mathml4/mathml4-core.rnc +361 -0
  331. data/schemas/mathml4/mathml4-presentation.rnc +358 -0
  332. data/schemas/mathml4/mathml4-strict-content.rnc +86 -0
  333. data/schemas/mathml4/mathml4.rnc +21 -0
  334. data/schemas/mathml4/mathml4.rnc.1 +21 -0
  335. data/schemas/mathml4/mathml4.rng +37 -0
  336. metadata +249 -2
@@ -0,0 +1,773 @@
1
+ <inform-div1 id="changes" role="appendixj"><head>Changes</head>
2
+ <!-- $Id: changes.xml,v 1.61 2003/10/07 10:33:33 davidc Exp $ -->
3
+
4
+ <div2 diff="add" id="changes_mathml2.0-2.02e">
5
+ <head>Changes between MathML 2.0 and MathML 2.0 Second Edition</head>
6
+
7
+ <ulist>
8
+
9
+ <item><p>Changes to frontmatter.</p>
10
+ <ulist>
11
+ <item><p>New text in <specref ref="abstract"/> and <specref ref="status"/>.</p></item>
12
+ </ulist>
13
+ </item>
14
+
15
+ <item><p>Changes to <specref ref="intro"/>.</p>
16
+ <ulist>
17
+
18
+ <item><p>Additional markup for bibliographic references in
19
+ <specref ref="intro_role"/> and
20
+ <specref ref="intro_goals"/>.</p></item>
21
+ </ulist>
22
+ </item>
23
+
24
+ <item><p>Changes to <specref ref="fund_overview"/>.</p>
25
+ <ulist>
26
+ <item><p>Modify description of namespace declarations in <specref ref="fund_document"/>.</p></item>
27
+ <item><p>Modify description of entity usage in <specref ref="fund_pres"/>.</p></item>
28
+ <item><p>Correct the MathML and default rendering of quatratic
29
+ formula example in <specref ref="fund_cont"/>.</p></item>
30
+ <item><p>Wording changes in <specref ref="fund_globatt"/>.</p></item>
31
+ </ulist>
32
+ </item>
33
+
34
+
35
+ <item><p>Changes to <specref ref="presm"/>.</p>
36
+ <ulist>
37
+ <item><p>Delete incorrect reference to default em units in
38
+ <specref ref="presm_opspacing"/>.</p></item>
39
+ <item><p>Delete references to Negative Space Characters in <specref
40
+ ref="presm_mtext"/> and <specref ref="presm_mstyle"/>.</p></item>
41
+ <item><p>Editorial changes to the wording in
42
+ <specref ref="presm_ms"/>.</p></item>
43
+ <item><p>Correct description of <att>lspace</att> value in
44
+ <specref ref="presm_mpadded"/>.</p></item>
45
+ <item><p>Add
46
+ warning that attempts to render outside the bounding box of the
47
+ MathML expression will give implemetation specific results in
48
+ <specref ref="presm_mpadded"/>.</p></item>
49
+ <item><p>Modify text to match example and refer to over brace rather
50
+ than over bar in <specref ref="presm_mover"/>.</p></item>
51
+ <item><p>Correct description of <att>displaystyle</att> in
52
+ <specref ref="presm_mfrac"/> (may be set on <el>mtable</el>).</p></item>
53
+ <item><p> Extend the description of <specref ref="presm_menclose"/>
54
+ to clarify that the list of notations is open-ended, and extend
55
+ the example list to include boxes and strikeouts of various forms.</p>
56
+ <p>The example in this section omitted units in the <att>columnspacing</att> and <att>rowspacing</att> attributes.</p></item>
57
+ <item><p>Correct the example MathML in <specref ref="presm_mtable"/>.</p></item>
58
+ <item><p>Correct the description of <att>minlabelspacing</att>
59
+ and include <el>mlabeledtr</el> in list of elements with inferred
60
+ mrows in <specref ref="presm_malign"/>.</p></item>
61
+ <item><p>Clarify <att>rowspan</att> and <att>columnspan</att> must be
62
+ positive integers in <specref ref="presm_mtdatts"/>.</p></item>
63
+ <item><p>Correct the description the <att>linebreak</att> attribute in
64
+ <specref ref="presm_mspace"/>.</p></item>
65
+
66
+ <item><p>Editorial changes to the text in
67
+ <specref ref="presm_summary"/>,
68
+ <specref ref="presm_symbolchars"/>,
69
+ <specref ref="presm_commatt"/>,
70
+ <specref ref="presm_color"/>,
71
+ <specref ref="presm_mglyph"/>,
72
+ <specref ref="presm_msubsup"/>,
73
+ <specref ref="presm_munderover"/>, and
74
+ <specref ref="presm_mmultiscripts"/>.</p></item>
75
+
76
+ <item><p>Clarification that the <att>fontfamily</att> attribute
77
+ of <el>mglyph</el> is not deprecated
78
+ in <specref ref="presm_deprecatt"/>.</p></item>
79
+ <item><p>Editorial changes to the description of MathML conformance,
80
+ and deletion of the non normative and unsupported menu action type
81
+ in <specref ref="presm_maction"/>.</p></item>
82
+ <item><p>Addition of a tail to the image for U+2910, and swapping the
83
+ images for the lowercase phi variants, U+03D5 and U+03C6.</p></item>
84
+ </ulist>
85
+
86
+ </item>
87
+
88
+
89
+ <item><p>Changes to <specref ref="contm"/>.</p>
90
+ <ulist>
91
+ <item><p>Add comment about use of <el>semantics</el> in
92
+ <specref ref="contm_cats"/>.</p></item>
93
+ <item><p>Modify description of the <att>definitionURL</att> attribute in
94
+ <specref ref="contm_deffun"/>,
95
+ <specref ref="contm_container"/>
96
+ to be consistent with the DTD with regard to the <att>type</att> attribute.</p></item>
97
+ <item><p>Modify description of the <att>type</att> attribute in
98
+ <specref ref="contm_cats"/>.</p></item>
99
+ <item><p>Add clarifying comments on the attributes allowed on
100
+ <el>declare</el> and give new extended example in
101
+ <specref ref="contm_declare"/>.</p></item>
102
+ <item><p>Editorial correction to text in
103
+ <specref ref="contm_union"/> and <specref ref="contm_prsubset"/>.</p></item>
104
+ <item><p>New text clarifying the use of <el>tendsto</el> in
105
+ <specref ref="contm_tendsto"/>.</p></item>
106
+ <item><p>Clarifying the use of <att>definitionURL</att> and
107
+ <att>encoding</att> attributes with <el>annotation</el> in
108
+ <specref ref="contm_annotation"/> and <specref ref="contm_semantics"/>.</p></item>
109
+ <item><p>New text highlighting the fact that <el>vector</el> may be
110
+ rendered either horizontally or vertically in
111
+ <specref ref="contm_vector"/>.</p></item>
112
+
113
+
114
+ <item><p>The descriptions of the "scientific, or e notation" (1.234e5) in
115
+ <specref ref="contm_typeattrib"/>, <specref ref="contm_ci"/> and
116
+ Appendices C and D became inconsistent in the final
117
+ draft of MathML2. The older names float and floating-point remained, and the
118
+ description of type="e-notation" in Chapter 4 (but not Appendix C)
119
+ described its use with the example 1.234 e 5
120
+ where e was used as a separator rather than the <el>sep</el> element
121
+ </p></item>
122
+ <item><p>Correct the example MathML in <specref
123
+ ref="contm_genatt"/>.</p></item>
124
+ <item><p>Add note to <specref
125
+ ref="contm_forall"/> observing that the mathematical expressions in the
126
+ examples are false.</p></item>
127
+ <item><p>Clarify that the order of child elements of <el>bvar</el>
128
+ is not signifcant in <specref
129
+ ref="contm_bvar"/>.</p></item>
130
+ <item><p>Correct the example of OpenMath usage in
131
+ in <specref ref="contm_annotation-xml"/>,
132
+ <specref ref="contm_conditions"/>, and
133
+ <specref ref="contm_csymbol"/>.</p></item>
134
+
135
+ <item><p>
136
+ Clarification on the use of bound variables in
137
+ in <specref ref="contm_constructor"/>,
138
+ <specref ref="contm_opwithqual"/>,
139
+ <specref ref="contm_interval"/>,
140
+ <specref ref="contm_lambda"/>,
141
+ <specref ref="contm_int"/>, and
142
+ <specref ref="contm_diff"/>.</p></item>
143
+ <item><p>Clarification of the examples of the deprecated <el>fn</el>
144
+ element in <specref ref="contm_elem"/>,
145
+ <specref ref="contm_apply"/>, and
146
+ <specref ref="contm_fn"/>.</p></item>
147
+ <item><p>Clarification that <el>piecewice</el> may be used with no
148
+ <el>piece</el> children in <specref ref="contm_piecewise"/>.</p></item>
149
+ <item><p>Use the MathML2 <el>pi</el> element in the example in <specref ref="contm_approx"/>.</p></item>
150
+ <item><p>Modify example of the <attval>constant</attval> type in <specref ref="contm_cn"/>.</p></item>
151
+ <item><p>Expand and clarify the use of qualifier elements such as
152
+ <el>bvar</el> in <specref ref="contm_usequalifier"/>.</p></item>
153
+ <item><p>Delete misleading references to <el>declare</el> in
154
+ <el>bvar</el> in <specref ref="contm_funopqual"/> and <specref ref="contm_relation"/>.</p></item>
155
+ <item><p>Clarify the description of the <el>condition</el> element in
156
+ <specref ref="contm_condition"/>, especially its relationship to <el>domainofapplication</el>.</p></item>
157
+ <item><p>Make explict that <el>domainofapplication</el> is a qualifier
158
+ element in <specref ref="contm_domainofapplication"/></p></item>
159
+ <item><p>Clarify the use of the <el>set</el> and <el>condition</el>
160
+ elements to specify a set as a range of a function over a given domain
161
+ in <specref ref="contm_set"/> (and similarly in <specref ref="contm_list"/>).</p></item>
162
+ <item><p>Clarify the description of the use of
163
+ <el>domainofapplication</el> with <el>sum</el>
164
+ in <specref ref="contm_sum"/> and <specref ref="contm_product"/>.</p></item>
165
+ <item><p>Show the full equation, not just the left hand side,
166
+ in the example rendering in <specref
167
+ ref="contm_scalarproduct"/>.</p></item>
168
+ <item><p>Note <el>fn</el> is deprecated
169
+ in <specref ref="contm_usequalifier"/>.</p></item>
170
+ <item><p>Editorial changes in
171
+ <specref ref="contm_usage"/>.</p></item>
172
+ <item><p>Deletion of the stated restriction that the element may only
173
+ appear as a child of <el>apply</el> or <el>reln</el>
174
+ in <specref ref="contm_maxmin"/>.</p></item>
175
+ <item><p>Clarify that qualifiers may be used with all n-ary operators
176
+ in <specref ref="contm_naryopwithqual"/>.</p></item>
177
+ <item><p>Clarification of the use of qualifier elements with
178
+ <el>csymbol</el> and <el>ci</el>
179
+ in <specref ref="contm_csymbolwithqual"/>.</p></item>
180
+ <item><p>Clarification of the use of qualifier elements in
181
+ in
182
+ <specref ref="contm_compose"/>,
183
+ <specref ref="contm_plus"/>,
184
+ <specref ref="contm_times"/>,
185
+ <specref ref="contm_cartesianproduct"/>,
186
+ <specref ref="contm_gcd"/>,
187
+ <specref ref="contm_and"/>,
188
+ <specref ref="contm_or"/>,
189
+ <specref ref="contm_xor"/>,
190
+ <specref ref="contm_exists"/>,
191
+ <specref ref="contm_eq"/>,
192
+ <specref ref="contm_gt"/>,
193
+ <specref ref="contm_lt"/>,
194
+ <specref ref="contm_geq"/>,
195
+ <specref ref="contm_leq"/>,
196
+ <specref ref="contm_equivalent"/>,
197
+ <specref ref="contm_lcm"/>.</p></item>
198
+ <item><p>Additional example, showing the use of <el>bvar</el>
199
+ in <specref ref="contm_subset"/>.</p></item>
200
+
201
+ <item><p>Alternative renderings using nabla added in
202
+ <specref ref="contm_divergence"/>,
203
+ <specref ref="contm_grad"/> and
204
+ <specref ref="contm_curl"/>.</p></item>
205
+ <item><p>Editorial changes to clarify the allowed arguments in
206
+ <specref ref="contm_intersect"/>.</p></item>
207
+ <item><p>Correct the example renderings in <specref
208
+ ref="contm_notsubset"/>
209
+ and <specref ref="contm_notprsubset"/>.</p></item>
210
+ <item><p>Editorial additions clarifying the intended
211
+ use of <el>encoding</el> in
212
+ <specref ref="contm_attrib"/>.</p></item>
213
+ <item><p>Correct the example rendering in <specref
214
+ ref="contm_outerproduct"/>.</p></item>
215
+ </ulist>
216
+ </item>
217
+
218
+
219
+ <item><p>Changes to <specref ref="mixing"/>.</p>
220
+ <ulist>
221
+ <item><p>Editorial corrections to text in <specref
222
+ ref="mixing_markup"/>.</p></item>
223
+ <item><p>Correct the complexity of parallel markup given in <specref
224
+ ref="mixing_parallel"/> to O(n log n).</p></item>
225
+ <item><p>Modify the example rendering image to include both sides of
226
+ the equivalence expression in <specref
227
+ ref="mixing_reasons"/>.</p></item>
228
+ <item><p>Add bibiographic reference to the OpenMath Standard in <specref
229
+ ref="mixing_reasons"/>.</p></item>
230
+ <item><p>Correct the example MathML in <specref
231
+ ref="mixing_sheet"/>.</p></item>
232
+ </ulist>
233
+ </item>
234
+
235
+
236
+ <item><p>Changes to <specref ref="chars"/>.</p>
237
+ <ulist>
238
+ <item><p>Editorial changes to <specref ref="chars"/>, especially
239
+ <specref ref="chars_intro"/>.</p></item>
240
+ <item><p>Delete references to (deprecated) negative and other spacing
241
+ characters in the table in <specref ref="chars_nonmark"/>.</p></item>
242
+ <item><p>Delete reference to possible Unicode characters for Boolean
243
+ values as these were not in the final set of characters added at
244
+ Unicode 3.2, <specref ref="chars_special"/>.</p></item>
245
+ <item><p>Some changes in <specref ref="chars_math-negated-tables"/> to
246
+ document the current usage of combining characters which have been
247
+ brought into line with the final versions of Unicode 3.2.</p></item>
248
+ <item><p>Changes to
249
+ <specref ref="chars_mathmlchars"/>,
250
+ <specref ref="chars_unicodechars"/>,
251
+ <specref ref="chars_BMP-SMP"/>,
252
+ <specref ref="chars_byxxx"/>,
253
+ <specref ref="chars_16x16-tables"/>,
254
+ <specref ref="chars_math-variant-tables"/>,
255
+ <specref ref="chars_letter-like-tables"/> and
256
+ <specref ref="chars_char-status"/>,
257
+ to reflect Unicode 3.1 and 3.2 which were both released after the first edition of MathML
258
+ 2.0.</p></item>
259
+ <item><p>Editorial changes to the description of <el>mglyph</el> in
260
+ <specref ref="chars_mglyph"/>.</p></item>
261
+ </ulist>
262
+ </item>
263
+
264
+
265
+ <item><p>Changes to <specref ref="interf"/>.</p>
266
+ <ulist>
267
+ <item><p>Deleted reference to non-conforming namespace behavior in some
268
+ existing systems in <specref ref="interf_namespace"/>.</p></item>
269
+ <item><p>Editorial changes to <specref ref="interf_toplevel"/>.</p></item>
270
+ <item><p>Change reference to XLink which is now a W3C Recommendation, <specref ref="interf_link"/>.</p></item>
271
+ <item><p>New section, <specref ref="interf_graphics"/> giving an
272
+ example integrating with SVG.</p></item>
273
+ <item><p>Additional markup for bibliographic references in
274
+ <specref ref="interf_unspecified"/>.</p></item>
275
+ <item><p>Editorial changes to description of MathML processors in
276
+ <specref ref="interf_genproc"/>.</p></item>
277
+ <item><p>New section describing (existing) extension mechanisms in
278
+ MathML 2, <specref ref="interf_extension"/>.</p></item>
279
+ <item><p>Editorial changes to use consistent terminology to describe conformance
280
+ criteria for MathML processors in
281
+ <specref ref="interf_testsuite"/>, <specref ref="interf_deprec"/>,
282
+ <specref ref="interf_error"/>,
283
+ and <specref ref="interf_future"/>.</p></item>
284
+ </ulist>
285
+ </item>
286
+
287
+
288
+
289
+ <item><p>Changes to <specref ref="parsing"/>.</p>
290
+ <ulist>
291
+
292
+ <item><p>New section, <specref
293
+ ref="parsing_wellformed"/> describing use without a DTD.</p>
294
+ </item>
295
+
296
+ <item><p>The location of the MathML DTDs described in <specref
297
+ ref="parsing_doctype"/> and <specref
298
+ ref="parsing_module"/> are now in the Math Working group area rather
299
+ than distributed with this Recommendation.</p>
300
+ </item>
301
+
302
+ <item><p>New sections descriping parameterisation possibilities for
303
+ the DTD: <specref ref="parsing_dtd_prefix"/>
304
+ and <specref ref="parsing_dtd_strict"/>.</p>
305
+ </item>
306
+
307
+ <item><p>In <specref ref="parsing_sgml"/>, the link to the W3C Note on
308
+ SGML and XML has been corrected and changed to a bibliography
309
+ reference.</p></item>
310
+
311
+ <item><p>The MathML DTD as shown in <specref ref="parsing_dtd"/>
312
+ Incorporates several corrections as listed in the MathML 2.0
313
+ Errata document, or listed in the change log at the end of the DTD.</p></item>
314
+ <item><p>New section, <specref ref="parsing_usingxsd"/> describing the
315
+ use of the W3C XML Schema for MathML.</p></item>
316
+ </ulist>
317
+ </item>
318
+
319
+ <item><p>Changes to <specref ref="cmvg"/>.</p>
320
+ <ulist>
321
+ <item><p>Many corrections, and new display format for the productions
322
+ given in the grammar for Content Markup in <specref ref="cmvg"/>.</p></item>
323
+ </ulist>
324
+ </item>
325
+
326
+ <item><p>Changes to <specref ref="cedef"/>.</p>
327
+ <ulist>
328
+ <item><p>Many corrections to the MathML Examples in
329
+ <specref ref="cedef_cn"/>,
330
+ <specref ref="cedef_ci"/>,
331
+ <specref ref="cedef_interval"/>,
332
+ <specref ref="cedef_factorial"/>,
333
+ <specref ref="cedef_rem"/>,
334
+ <specref ref="cedef_root"/>,
335
+ <specref ref="cedef_gcd"/>,
336
+ <specref ref="cedef_divide"/>,
337
+ <specref ref="cedef_plus"/>,
338
+ <specref ref="cedef_equivalent"/>,
339
+ <specref ref="cedef_partialdiff"/>,
340
+ <specref ref="cedef_divergence"/>,
341
+ <specref ref="cedef_grad"/>,
342
+ <specref ref="cedef_limit"/>,
343
+ <specref ref="cedef_moment"/>,
344
+ <specref ref="cedef_selector"/>,
345
+ <specref ref="cedef_rationals"/>,
346
+ <specref ref="cedef_exponentiale"/>,
347
+ <specref ref="cedef_imaginaryi"/>,
348
+ <specref ref="cedef_reln"/>,
349
+ <specref ref="cedef_condition"/>,
350
+ <specref ref="cedef_lambda"/>,
351
+ <specref ref="cedef_compose"/>,
352
+ <specref ref="cedef_codomain"/>,
353
+ <specref ref="cedef_image"/>,
354
+ <specref ref="cedef_domainofapplication"/>,
355
+ <specref ref="cedef_piecewise"/>,
356
+ <specref ref="cedef_piece"/>,
357
+ <specref ref="cedef_quotient"/>,
358
+ <specref ref="cedef_min"/>,
359
+ <specref ref="cedef_forall"/>,
360
+ <specref ref="cedef_int"/>,
361
+ <specref ref="cedef_max"/>,
362
+ <specref ref="cedef_minus"/>,
363
+ <specref ref="cedef_times"/>,
364
+ <specref ref="cedef_eq"/>,
365
+ <specref ref="cedef_lowlimit"/>,
366
+ <specref ref="cedef_abs"/>,
367
+ <specref ref="cedef_lcm"/>,
368
+ <specref ref="cedef_gt"/>,
369
+ <specref ref="cedef_lt"/>,
370
+ <specref ref="cedef_geq"/>,
371
+ <specref ref="cedef_leq"/>,
372
+ <specref ref="cedef_lowlimit"/>,
373
+ <specref ref="cedef_uplimit"/>,
374
+ <specref ref="cedef_bvar"/>,
375
+ <specref ref="cedef_degree"/>,
376
+ <specref ref="cedef_curl"/>,
377
+ <specref ref="cedef_set"/>,
378
+ <specref ref="cedef_list"/>,
379
+ <specref ref="cedef_union"/>,
380
+ <specref ref="cedef_intersect"/>,
381
+ <specref ref="cedef_subset"/>,
382
+ <specref ref="cedef_prsubset"/>,
383
+ <specref ref="cedef_sum"/>,
384
+ <specref ref="cedef_product"/>,
385
+ <specref ref="cedef_exp"/>,
386
+ <specref ref="cedef_ln"/>,
387
+ <specref ref="cedef_log"/>,
388
+ <specref ref="cedef_sin"/>,
389
+ <specref ref="cedef_cos"/>,
390
+ <specref ref="cedef_tan"/>,
391
+ <specref ref="cedef_sec"/>,
392
+ <specref ref="cedef_csc"/>,
393
+ <specref ref="cedef_cot"/>,
394
+ <specref ref="cedef_sinh"/>,
395
+ <specref ref="cedef_cosh"/>,
396
+ <specref ref="cedef_tanh"/>,
397
+ <specref ref="cedef_sech"/>,
398
+ <specref ref="cedef_csch"/>,
399
+ <specref ref="cedef_coth"/>,
400
+ <specref ref="cedef_arcsin"/>,
401
+ <specref ref="cedef_arccos"/>,
402
+ <specref ref="cedef_arctan"/>,
403
+ <specref ref="cedef_arccosh"/>,
404
+ <specref ref="cedef_arccot"/>,
405
+ <specref ref="cedef_arccoth"/>,
406
+ <specref ref="cedef_arccsc"/>,
407
+ <specref ref="cedef_arccsch"/>,
408
+ <specref ref="cedef_arcsec"/>,
409
+ <specref ref="cedef_arcsech"/>,
410
+ <specref ref="cedef_arcsinh"/>,
411
+ <specref ref="cedef_arctanh"/>,
412
+ <specref ref="cedef_momentabout"/>,
413
+ <specref ref="cedef_vector"/>,
414
+ <specref ref="cedef_matrix"/>,
415
+ <specref ref="cedef_transpose"/>,
416
+ <specref ref="cedef_reals"/>,
417
+ <specref ref="cedef_power"/>,
418
+ <specref ref="cedef_exists"/>,
419
+ <specref ref="cedef_floor"/>,
420
+ <specref ref="cedef_ceiling"/>,
421
+ <specref ref="cedef_approx"/>,
422
+ <specref ref="cedef_true"/>,
423
+ <specref ref="cedef_false"/>,
424
+ <specref ref="cedef_pi"/>,
425
+ <specref ref="cedef_eulergamma"/>,
426
+ <specref ref="cedef_otherwise"/>.
427
+ </p></item>
428
+ <item><p>Clarify the use of <att>definitionURL</att>
429
+ in <specref ref="cedef_about"/>.</p></item>
430
+
431
+ </ulist>
432
+ </item>
433
+
434
+ <item><p>Changes to <specref ref="mathml-dom"/>.</p>
435
+ <ulist>
436
+ <item><p>Corrections to the following interfaces:
437
+ <intref ref="dom_PresentationToken">MathMLPresentationToken</intref>,
438
+ <intref ref="dom_ContentToken">MathMLContentToken</intref>,
439
+ <intref ref="dom_SpaceElement">MathMLSpaceElement</intref>,
440
+ <intref ref="dom_OperatorElement">MathMLOperatorElement</intref>,
441
+ <intref ref="dom_StyleElement">MathMLStyleElement</intref>,
442
+ <intref ref="dom_FencedElement">MathMLFencedElement</intref>,
443
+ <intref ref="dom_FractionElement">MathMLFractionElement</intref>,
444
+ <intref ref="dom_ContentElement">MathMLContentElement</intref>,
445
+ <intref ref="dom_IntervalElement">MathMLIntervalElement</intref>,
446
+ <intref ref="dom_ApplyElement">MathMLApplyElement</intref>,
447
+ <intref ref="dom_EncloseElement">MathMLEncloseElement</intref>,
448
+ <intref ref="dom_ActionElement">MathMLActionElement</intref>,
449
+ <intref ref="dom_TableRowElement">MathMLTableRowElement</intref>,
450
+ <intref ref="dom_CnElement">MathMLCnElement</intref>,
451
+ <intref ref="dom_CiElement">MathMLCiElement</intref>,
452
+ <intref ref="dom_TendsToElement">MathMLTendsToElement</intref>.</p></item>
453
+ <item><p>Modification of the description of
454
+ <el>tendsto</el> in <specref ref="dom_elementTable"/>.</p>
455
+ </item>
456
+ </ulist>
457
+ </item>
458
+
459
+ <item><p>Changes to <specref ref="oper-dict"/>.</p>
460
+ <ulist>
461
+ <item><p>Blank lines in <specref ref="oper-dict_entries"/> used in the inferred
462
+ mrow grouping algorithm were omitted.
463
+ They have been restored based on the groupings in MathML 1.01.
464
+ </p></item>
465
+ <item><p>Some entity names in <specref ref="oper-dict_entries"/> have
466
+ been corrected and/or deleted to match the names in the MathML DTD.
467
+ </p></item>
468
+ </ulist>
469
+ </item>
470
+
471
+ <item><p>Changes to <specref ref="contributors"/>.</p>
472
+ <ulist>
473
+ <item><p>Document changes in Working Group membership in <specref ref="contrib"/>.</p></item>
474
+ <item><p>Editorial changes in <specref ref="contrib_ack"/>.</p></item>
475
+ </ulist>
476
+ </item>
477
+
478
+ <item><p>Changes to <specref ref="changes"/>.</p>
479
+ <ulist>
480
+ <item><p>New section <specref ref="changes_mathml2.0-2.02e"/>
481
+ describing changes in the Second Edition.</p></item>
482
+ <item><p>Minor edits to the description of the earlier changes
483
+ in <specref ref="changes_mathml1.01-2.0"/>.</p></item>
484
+ </ulist>
485
+ </item>
486
+
487
+ <item><p>Changes to <specref ref="references"/>.</p>
488
+ <ulist>
489
+ <item><p>Added and updated many entries:
490
+ <bibref ref="Behaviors"/>,
491
+ <bibref ref="CSS1"/>,
492
+ <bibref ref="CSS2"/>,
493
+ <bibref ref="DOM"/>,
494
+ <bibref ref="HTML4"/>,
495
+ <bibref ref="MathML1"/>,
496
+ <bibref ref="MathML2"/>,
497
+ <bibref ref="Modularization"/>,
498
+ <bibref ref="Namespaces"/>,
499
+ <bibref ref="RFC2045"/>,
500
+ <bibref ref="RFC2046"/>,
501
+ <bibref ref="sgml-xml"/>,
502
+ <bibref ref="SVG1.1"/>,
503
+ <bibref ref="XHTML"/>,
504
+ <bibref ref="XHTML-MathML-SVG"/>,
505
+ <bibref ref="XLink"/>,
506
+ <bibref ref="XML"/>,
507
+ <bibref ref="XMLSchemas"/>,
508
+ <bibref ref="XPath"/>,
509
+ <bibref ref="XPointer"/>,
510
+ <bibref ref="XSLT"/>,
511
+ <bibref ref="UAX15"/>.
512
+ </p></item>
513
+ </ulist>
514
+ </item>
515
+
516
+ <item><p>Changes to <specref ref="index"/>.</p>
517
+ <ulist>
518
+ <item><p>New Appendix <specref ref="index"/> incorporating
519
+ <specref ref="index_elem"/> and <specref ref="index_att"/></p></item>
520
+ </ulist>
521
+ </item>
522
+
523
+
524
+ </ulist>
525
+ </div2>
526
+
527
+ <div2 id="changes_mathml1.01-2.0">
528
+ <head>Changes between MathML 1.01 and MathML 2.0</head>
529
+
530
+
531
+ <ulist>
532
+ <item><p>changes to <specref ref="intro"/>
533
+ <ulist>
534
+ <item><p>rewritten to reflect developments since publication of
535
+ the MathML 1.0 Recommendation <bibref diff="add" ref="MathML1"/>, for example XML, XSL, CSS and schemas</p></item>
536
+ </ulist>
537
+ </p></item>
538
+
539
+ <item><p>changes to <specref ref="fund"/>
540
+ <ulist>
541
+ <item><p>rewritten to reflect developments since publication of
542
+ the MathML 1.0 Recommendation <bibref diff="add" ref="MathML1"/>, for example XML, XSL, CSS and schemas</p></item>
543
+ <item><p>examples were rewritten to reflect good MathML 2.0 practice</p></item>
544
+ <item><p>descriptions of attribute values were updated to reflect
545
+ MathML 2.0</p></item>
546
+ </ulist>
547
+ </p></item>
548
+
549
+ <item><p>changes to <specref ref="presm"/>
550
+ <ulist>
551
+
552
+ <item><p>introduced a new section on bidirectional layout of
553
+ mathematics</p></item>
554
+
555
+ <item><p>introduced new mathematics style attributes
556
+ <att>mathvariant</att>,
557
+ <att>mathsize</att>,
558
+ <att>mathweight</att>, and
559
+ <att>mathcolor</att> on token elements, and deprecated the
560
+ use of
561
+ <att>fontfamily</att>,
562
+ <att>fontsize</att>,
563
+ <att>fontweight</att>,
564
+ <att>fontstyle</att> and
565
+ <att>color</att>.
566
+ </p></item>
567
+
568
+
569
+ <item><p>introduced new elements <kw>mglyph</kw>, <kw>menclose</kw>
570
+ and <kw>mlabeledtr</kw> and updated related text accordingly</p></item>
571
+
572
+ <item><p>added attributes <kw>beveled</kw>, <kw>numalign</kw> and
573
+ <kw>denomalign</kw> to <kw>mfrac</kw></p></item>
574
+
575
+ <item><p>added a linebreaking attribute to <kw>mspace</kw></p></item>
576
+
577
+ <item><p>required <kw>mtr</kw> and <kw>mtd</kw> elements to be
578
+ explicit instead of allowing them to be inferred. </p></item>
579
+ </ulist>
580
+ </p></item>
581
+
582
+ <item><p>changes to <specref ref="contm"/>
583
+ <ulist>
584
+ <item><p>deprecated the use of <kw>reln</kw> and <kw>fn</kw> and
585
+ changed the use of <kw>apply</kw> accordingly</p></item>
586
+
587
+ <item><p>introduced <kw>csymbol</kw> and added a discussion about the
588
+ relation to the deprecated <kw>fn</kw> element</p></item>
589
+
590
+ <item><p>introduced new content elements
591
+ <kw>domain</kw>,
592
+ <kw>codomain</kw>,
593
+ <kw>image</kw>,
594
+ <kw>domainofapplication</kw>,
595
+ <kw>arg</kw>,
596
+ <kw>real</kw>,
597
+ <kw>imaginary</kw>,
598
+ <kw>lcm</kw>,
599
+ <kw>floor</kw>,
600
+ <kw>ceiling</kw>,
601
+ <kw>equivalent</kw>,
602
+ <kw>approx</kw>,
603
+ <kw>divergence</kw>,
604
+ <kw>grad</kw>,
605
+ <kw>curl</kw>,
606
+ <kw>laplacian</kw>,
607
+ <kw>card</kw>,
608
+ <kw>cartesianproduct</kw>,
609
+ <kw>momentabout</kw>,
610
+ <kw>vectorproduct</kw>,
611
+ <kw>scalarproduct</kw>,
612
+ <kw>outerproduct</kw>,
613
+ <kw>integers</kw>,
614
+ <kw>reals</kw>,
615
+ <kw>rationals</kw>,
616
+ <kw>naturalnumbers</kw>,
617
+ <kw>complexes</kw>,
618
+ <kw>primes</kw>,
619
+ <kw>exponentiale</kw>,
620
+ <kw>imaginaryi</kw>,
621
+ <kw>notanumber</kw>,
622
+ <kw>true</kw>,
623
+ <kw>false</kw>,
624
+ <kw>emptyset</kw>,
625
+ <kw>pi</kw>,
626
+ <kw>eulergamma</kw>,
627
+ <kw>infinity</kw>,
628
+ <kw>piecewise</kw>,
629
+ <kw>piece</kw> and
630
+ <kw>otherwise</kw>
631
+ </p></item>
632
+
633
+ <item><p>corrected examples and fixed typos</p></item>
634
+
635
+ <item><p>expanded the attribute <kw>definitionURL</kw> to allow a URL
636
+ or a URI as a value</p></item>
637
+
638
+ <item><p>clarified the use of presentation markup inside
639
+ <kw>cn</kw></p></item>
640
+
641
+ <item><p>made use of <kw>encoding</kw> attribute more
642
+ uniform</p></item>
643
+
644
+ <item><p>changed description of the use of <kw>bvar</kw> in
645
+ combination with <kw>min</kw> and <kw>max</kw></p></item>
646
+
647
+ </ulist>
648
+ </p></item>
649
+
650
+ <item><p>changes to <specref ref="mixing"/>
651
+ <ulist>
652
+ <item><p>added description of content-faithful transformation</p></item>
653
+ <item><p>updated examples to reflect MathML 2.0</p></item>
654
+ <item><p>define list of content that can appear in presentation</p></item>
655
+ <item><p>add attribute <kw>xref</kw> for cross-referencing purposes</p></item>
656
+ <item><p>added examples using XLink and namespaces</p></item>
657
+ <item><p>make use of <kw>encoding</kw> attribute more uniform</p></item>
658
+ <item><p>miscellaneous typographical corrections</p></item>
659
+ </ulist>
660
+ </p></item>
661
+
662
+ <item><p>changes to <specref ref="chars"/>
663
+ <ulist>
664
+ <item><p>added a new section describing the methods of using Unicode
665
+ data within MathML</p></item>
666
+
667
+ <item><p>added a new section describing the correspondence between
668
+ Math Alphabet characters and the <att>mathvariant</att>
669
+ attribute</p></item>
670
+
671
+ <item><p>completely revised and reformatted the MathML character
672
+ tables to reflect changes in Unicode since MathML 1.01</p></item>
673
+
674
+ </ulist>
675
+ </p></item>
676
+
677
+ <item><p>changes to <specref ref="interf"/>
678
+ <ulist>
679
+ <item><p>reworked the text in acknowledgement of the fact that the top-level and
680
+ interface elements for MathML are now in practice the same</p></item>
681
+
682
+ <item><p>rewrote the text about linking to reflect changes in XLink
683
+ since MathML 1.01</p></item>
684
+ <item><p>revised material about interactions with embedded renderers to
685
+ reflect the current state of DOM implementation</p></item>
686
+ <item><p>added a definition of deprecated features in MathML 2</p></item>
687
+ <item><p>updated the text to reflect the use of namespaces and the
688
+ introduction of XHTML.
689
+ 2.0</p></item>
690
+ <item><p>added a new section on the appropriate use of CSS and the
691
+ new mathematics style attributes in rendering environments with
692
+ support CSS</p></item>
693
+ </ulist>
694
+ </p></item>
695
+
696
+ <item><p>changes to <specref ref="dom-intro"/>
697
+ <ulist>
698
+ <item><p>this is a completely new chapter</p></item>
699
+ </ulist>
700
+ </p></item>
701
+
702
+ <item><p>changes to <specref ref="parsing"/>
703
+ <ulist>
704
+ <item><p>renamed attribute <kw>occurence</kw> to <kw>occurrence</kw></p></item>
705
+ <item><p>added global attribute <kw>xref</kw></p></item>
706
+ <item><p>add links to tables for each entity set</p></item>
707
+ </ulist>
708
+ </p></item>
709
+
710
+ <item><p>changes to <specref ref="cmvg"/>
711
+ <ulist>
712
+ <item><p>Updated to reflect MathML 2.0.</p></item>
713
+ </ulist>
714
+ </p></item>
715
+
716
+ <item><p>changes to <specref ref="cedef"/>
717
+ <ulist>
718
+ <item><p>completely rewritten to reflect changes in MathML 2.0</p></item>
719
+ </ulist>
720
+ </p></item>
721
+
722
+ <item><p>changes to <specref ref="oper-dict"/>
723
+ <ulist>
724
+ <item><p>entries in operator dictionary are parametrized</p></item>
725
+ <item><p>operator dictionary has become a non-normative part of the specification</p></item>
726
+ <item><p>new entries were added to operator dictionary</p></item>
727
+ </ulist>
728
+ </p></item>
729
+
730
+ <item><p>changes to <specref ref="mathml-dom"/>
731
+ <ulist>
732
+ <item><p>this is a completely new appendix, containing the IDL definitions
733
+ </p></item>
734
+ </ulist>
735
+ </p></item>
736
+
737
+ <item><p>changes to <specref ref="glossary"/>
738
+ <ulist>
739
+ <item><p>added entries for XSL, XSLT and XSL FO</p></item>
740
+ </ulist>
741
+ </p></item>
742
+
743
+ <item><p>changes to <specref ref="contributors"/>
744
+ <ulist>
745
+ <item><p>all members of first and second Math Working Group are listed</p></item>
746
+ </ulist>
747
+ </p></item>
748
+
749
+ <item><p>changes to <specref ref="changes"/>
750
+ <ulist>
751
+ <item><p>completely new appendix, based on the logs obtained from CVS</p></item>
752
+ </ulist>
753
+ </p></item>
754
+
755
+ <item><p>changes to <specref ref="references"/>
756
+ <ulist>
757
+ <item><p>added and updated many entries</p></item>
758
+ </ulist>
759
+ </p></item>
760
+
761
+ <item><p>general changes
762
+ <ulist>
763
+ <item><p>text of specification now in XML form, with HTML and XHTML rendering by
764
+ means of XSLT, and PDF rendering by means of XSLT and &TeX;</p></item>
765
+ <item><p>fixed errors in spelling and notation</p></item>
766
+ <item><p>normative examples of formulas are images, with a La&TeX; equivalent</p></item>
767
+ <item><p>non-normative examples of formulas are HTML constructions wherever possible</p></item>
768
+ <item><p>improved cross-referencing</p></item>
769
+ </ulist>
770
+ </p></item>
771
+ </ulist>
772
+ </div2>
773
+ </inform-div1>