mml 2.3.0 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitmodules +9 -0
- data/.rubocop.yml +4 -0
- data/.rubocop_todo.yml +30 -21
- data/Gemfile +0 -2
- data/README.adoc +176 -47
- data/Rakefile +16 -1
- data/lib/mml/base/content/annotation.rb +30 -0
- data/lib/mml/base/content/annotation_xml.rb +31 -0
- data/lib/mml/base/content/apply.rb +27 -0
- data/lib/mml/base/content/arith.rb +243 -0
- data/lib/mml/base/content/bind.rb +27 -0
- data/lib/mml/base/content/bvar.rb +20 -0
- data/lib/mml/base/content/calculus.rb +103 -0
- data/lib/mml/base/content/cbytes.rb +24 -0
- data/lib/mml/base/content/cerror.rb +24 -0
- data/lib/mml/base/content/ci.rb +77 -0
- data/lib/mml/base/content/cn.rb +33 -0
- data/lib/mml/base/content/condition.rb +20 -0
- data/lib/mml/base/content/constants.rb +173 -0
- data/lib/mml/base/content/cs.rb +22 -0
- data/lib/mml/base/content/csymbol.rb +79 -0
- data/lib/mml/base/content/declare.rb +34 -0
- data/lib/mml/base/content/degree.rb +20 -0
- data/lib/mml/base/content/elementary_functions.rb +309 -0
- data/lib/mml/base/content/fn.rb +25 -0
- data/lib/mml/base/content/functions.rb +85 -0
- data/lib/mml/base/content/interval.rb +24 -0
- data/lib/mml/base/content/inverse.rb +25 -0
- data/lib/mml/base/content/lambda.rb +20 -0
- data/lib/mml/base/content/linear_algebra.rb +122 -0
- data/lib/mml/base/content/logic.rb +93 -0
- data/lib/mml/base/content/otherwise.rb +20 -0
- data/lib/mml/base/content/piece.rb +20 -0
- data/lib/mml/base/content/piecewise.rb +20 -0
- data/lib/mml/base/content/relations.rb +113 -0
- data/lib/mml/base/content/reln.rb +19 -0
- data/lib/mml/base/content/semantics.rb +27 -0
- data/lib/mml/base/content/sep.rb +19 -0
- data/lib/mml/base/content/sets.rb +163 -0
- data/lib/mml/base/content/share.rb +24 -0
- data/lib/mml/base/content/statistics.rb +95 -0
- data/lib/mml/base/content/vector_calculus.rb +63 -0
- data/lib/mml/base/content_loader.rb +195 -0
- data/lib/mml/base/maction.rb +1 -0
- data/lib/mml/base/math.rb +41 -0
- data/lib/mml/base/menclose.rb +1 -1
- data/lib/mml/base/mfenced.rb +2 -2
- data/lib/mml/base/mfrac.rb +2 -0
- data/lib/mml/base/mglyph.rb +2 -0
- data/lib/mml/base/mi.rb +7 -2
- data/lib/mml/base/mlabeledtr.rb +0 -4
- data/lib/mml/base/mn.rb +5 -2
- data/lib/mml/base/mo.rb +0 -2
- data/lib/mml/base/mrow.rb +0 -2
- data/lib/mml/base/ms.rb +2 -4
- data/lib/mml/base/mscarries.rb +1 -1
- data/lib/mml/base/mstyle.rb +2 -6
- data/lib/mml/base/mtable.rb +8 -0
- data/lib/mml/base/mtd.rb +6 -0
- data/lib/mml/base/mtext.rb +0 -2
- data/lib/mml/base/semantics.rb +4 -2
- data/lib/mml/base/universal_presentation_attributes.rb +42 -0
- data/lib/mml/base/v3_common.rb +16 -0
- data/lib/mml/base/v3_presentation_attributes.rb +15 -0
- data/lib/mml/base/v4_attributes.rb +4 -18
- data/lib/mml/base.rb +10 -0
- data/lib/mml/common_elements.rb +334 -0
- data/lib/mml/context_configuration.rb +29 -0
- data/lib/mml/v2/annotation.rb +9 -0
- data/lib/mml/v2/annotation_xml.rb +9 -0
- data/lib/mml/v2/apply.rb +9 -0
- data/lib/mml/v2/arith.rb +93 -0
- data/lib/mml/v2/bind.rb +9 -0
- data/lib/mml/v2/bvar.rb +9 -0
- data/lib/mml/v2/calculus.rb +33 -0
- data/lib/mml/v2/ci.rb +9 -0
- data/lib/mml/v2/cn.rb +9 -0
- data/lib/mml/v2/common_elements.rb +34 -0
- data/lib/mml/v2/condition.rb +9 -0
- data/lib/mml/v2/configuration.rb +13 -0
- data/lib/mml/v2/constants.rb +65 -0
- data/lib/mml/v2/csymbol.rb +9 -0
- data/lib/mml/v2/degree.rb +9 -0
- data/lib/mml/v2/elementary_functions.rb +121 -0
- data/lib/mml/v2/fn.rb +9 -0
- data/lib/mml/v2/functions.rb +29 -0
- data/lib/mml/v2/interval.rb +9 -0
- data/lib/mml/v2/inverse.rb +9 -0
- data/lib/mml/v2/lambda.rb +9 -0
- data/lib/mml/v2/linear_algebra.rb +41 -0
- data/lib/mml/v2/logic.rb +33 -0
- data/lib/mml/v2/maction.rb +9 -0
- data/lib/mml/v2/maligngroup.rb +9 -0
- data/lib/mml/v2/malignmark.rb +9 -0
- data/lib/mml/v2/math.rb +11 -0
- data/lib/mml/v2/menclose.rb +9 -0
- data/lib/mml/v2/merror.rb +9 -0
- data/lib/mml/v2/mfenced.rb +9 -0
- data/lib/mml/v2/mfrac.rb +9 -0
- data/lib/mml/v2/mfraction.rb +9 -0
- data/lib/mml/v2/mglyph.rb +9 -0
- data/lib/mml/v2/mi.rb +9 -0
- data/lib/mml/v2/mlabeledtr.rb +9 -0
- data/lib/mml/v2/mlongdiv.rb +9 -0
- data/lib/mml/v2/mmultiscripts.rb +9 -0
- data/lib/mml/v2/mn.rb +9 -0
- data/lib/mml/v2/mo.rb +10 -0
- data/lib/mml/v2/mover.rb +9 -0
- data/lib/mml/v2/mpadded.rb +9 -0
- data/lib/mml/v2/mphantom.rb +9 -0
- data/lib/mml/v2/mprescripts.rb +9 -0
- data/lib/mml/v2/mroot.rb +9 -0
- data/lib/mml/v2/mrow.rb +9 -0
- data/lib/mml/v2/ms.rb +9 -0
- data/lib/mml/v2/mscarries.rb +9 -0
- data/lib/mml/v2/mscarry.rb +9 -0
- data/lib/mml/v2/msgroup.rb +9 -0
- data/lib/mml/v2/msline.rb +9 -0
- data/lib/mml/v2/mspace.rb +9 -0
- data/lib/mml/v2/msqrt.rb +9 -0
- data/lib/mml/v2/msrow.rb +9 -0
- data/lib/mml/v2/mstack.rb +9 -0
- data/lib/mml/v2/mstyle.rb +10 -0
- data/lib/mml/v2/msub.rb +9 -0
- data/lib/mml/v2/msubsup.rb +9 -0
- data/lib/mml/v2/msup.rb +9 -0
- data/lib/mml/v2/mtable.rb +9 -0
- data/lib/mml/v2/mtd.rb +9 -0
- data/lib/mml/v2/mtext.rb +9 -0
- data/lib/mml/v2/mtr.rb +9 -0
- data/lib/mml/v2/munder.rb +9 -0
- data/lib/mml/v2/munderover.rb +9 -0
- data/lib/mml/v2/namespace.rb +7 -0
- data/lib/mml/v2/none.rb +9 -0
- data/lib/mml/v2/otherwise.rb +9 -0
- data/lib/mml/v2/piece.rb +9 -0
- data/lib/mml/v2/piecewise.rb +9 -0
- data/lib/mml/v2/relations.rb +41 -0
- data/lib/mml/v2/reln.rb +13 -0
- data/lib/mml/v2/semantics.rb +9 -0
- data/lib/mml/v2/sep.rb +9 -0
- data/lib/mml/v2/sets.rb +57 -0
- data/lib/mml/v2/statistics.rb +33 -0
- data/lib/mml/v2/vector_calculus.rb +21 -0
- data/lib/mml/v2.rb +311 -0
- data/lib/mml/v3/annotation.rb +10 -0
- data/lib/mml/v3/annotation_xml.rb +10 -0
- data/lib/mml/v3/apply.rb +10 -0
- data/lib/mml/v3/arith.rb +115 -0
- data/lib/mml/v3/bind.rb +10 -0
- data/lib/mml/v3/calculus.rb +40 -0
- data/lib/mml/v3/cbytes.rb +10 -0
- data/lib/mml/v3/cerror.rb +10 -0
- data/lib/mml/v3/ci.rb +10 -0
- data/lib/mml/v3/cn.rb +10 -0
- data/lib/mml/v3/common_elements.rb +34 -0
- data/lib/mml/v3/constants.rb +80 -0
- data/lib/mml/v3/constructs.rb +55 -0
- data/lib/mml/v3/cs.rb +10 -0
- data/lib/mml/v3/csymbol.rb +10 -0
- data/lib/mml/v3/deprecated_content.rb +29 -0
- data/lib/mml/v3/elementary_functions.rb +145 -0
- data/lib/mml/v3/functions.rb +35 -0
- data/lib/mml/v3/linear_algebra.rb +50 -0
- data/lib/mml/v3/logic.rb +40 -0
- data/lib/mml/v3/maction.rb +1 -1
- data/lib/mml/v3/math.rb +7 -1
- data/lib/mml/v3/mi.rb +1 -0
- data/lib/mml/v3/mn.rb +1 -0
- data/lib/mml/v3/mo.rb +1 -0
- data/lib/mml/v3/mrow.rb +1 -0
- data/lib/mml/v3/ms.rb +1 -0
- data/lib/mml/v3/mstyle.rb +1 -0
- data/lib/mml/v3/mtext.rb +1 -0
- data/lib/mml/v3/relations.rb +50 -0
- data/lib/mml/v3/sets.rb +70 -0
- data/lib/mml/v3/statistics.rb +40 -0
- data/lib/mml/v3/vector_calculus.rb +25 -0
- data/lib/mml/v3.rb +25 -0
- data/lib/mml/v4/a.rb +0 -1
- data/lib/mml/v4/annotation.rb +10 -0
- data/lib/mml/v4/annotation_xml.rb +14 -0
- data/lib/mml/v4/apply.rb +9 -0
- data/lib/mml/v4/arith.rb +93 -0
- data/lib/mml/v4/calculus.rb +25 -0
- data/lib/mml/v4/cbytes.rb +9 -0
- data/lib/mml/v4/cerror.rb +9 -0
- data/lib/mml/v4/ci.rb +9 -0
- data/lib/mml/v4/cn.rb +9 -0
- data/lib/mml/v4/common_elements.rb +33 -0
- data/lib/mml/v4/constants.rb +65 -0
- data/lib/mml/v4/constructs.rb +49 -0
- data/lib/mml/v4/cs.rb +9 -0
- data/lib/mml/v4/csymbol.rb +9 -0
- data/lib/mml/v4/deprecated_content.rb +25 -0
- data/lib/mml/v4/elementary_functions.rb +118 -0
- data/lib/mml/v4/factorof.rb +9 -0
- data/lib/mml/v4/functions.rb +30 -0
- data/lib/mml/v4/limit.rb +9 -0
- data/lib/mml/v4/linear_algebra.rb +41 -0
- data/lib/mml/v4/logic.rb +33 -0
- data/lib/mml/v4/maction.rb +1 -2
- data/lib/mml/v4/maligngroup.rb +0 -1
- data/lib/mml/v4/malignmark.rb +0 -1
- data/lib/mml/v4/math.rb +1 -1
- data/lib/mml/v4/menclose.rb +0 -1
- data/lib/mml/v4/merror.rb +0 -1
- data/lib/mml/v4/mfenced.rb +0 -1
- data/lib/mml/v4/mfrac.rb +0 -1
- data/lib/mml/v4/mfraction.rb +0 -1
- data/lib/mml/v4/mglyph.rb +0 -1
- data/lib/mml/v4/mi.rb +1 -1
- data/lib/mml/v4/mlabeledtr.rb +0 -1
- data/lib/mml/v4/mlongdiv.rb +0 -1
- data/lib/mml/v4/mmultiscripts.rb +0 -1
- data/lib/mml/v4/mn.rb +1 -1
- data/lib/mml/v4/mo.rb +1 -1
- data/lib/mml/v4/mover.rb +0 -1
- data/lib/mml/v4/mpadded.rb +0 -1
- data/lib/mml/v4/mphantom.rb +0 -1
- data/lib/mml/v4/mprescripts.rb +0 -1
- data/lib/mml/v4/mroot.rb +0 -1
- data/lib/mml/v4/mrow.rb +1 -1
- data/lib/mml/v4/ms.rb +1 -1
- data/lib/mml/v4/mscarries.rb +0 -1
- data/lib/mml/v4/mscarry.rb +0 -1
- data/lib/mml/v4/msgroup.rb +0 -1
- data/lib/mml/v4/msline.rb +0 -1
- data/lib/mml/v4/mspace.rb +0 -1
- data/lib/mml/v4/msqrt.rb +0 -1
- data/lib/mml/v4/msrow.rb +0 -1
- data/lib/mml/v4/mstack.rb +0 -1
- data/lib/mml/v4/mstyle.rb +1 -1
- data/lib/mml/v4/msub.rb +0 -1
- data/lib/mml/v4/msubsup.rb +0 -1
- data/lib/mml/v4/msup.rb +0 -1
- data/lib/mml/v4/mtable.rb +0 -1
- data/lib/mml/v4/mtd.rb +0 -1
- data/lib/mml/v4/mtext.rb +1 -1
- data/lib/mml/v4/mtr.rb +0 -1
- data/lib/mml/v4/munder.rb +0 -1
- data/lib/mml/v4/munderover.rb +0 -1
- data/lib/mml/v4/none.rb +0 -1
- data/lib/mml/v4/relations.rb +37 -0
- data/lib/mml/v4/semantics.rb +0 -1
- data/lib/mml/v4/sets.rb +57 -0
- data/lib/mml/v4/statistics.rb +33 -0
- data/lib/mml/v4/tendsto.rb +9 -0
- data/lib/mml/v4/vector_calculus.rb +21 -0
- data/lib/mml/v4.rb +421 -44
- data/lib/mml/version.rb +1 -1
- data/lib/mml/versioned_parser.rb +1 -1
- data/lib/mml.rb +3 -1
- data/reference-docs/mathml-source/pubtext/mathmlspec.dtd +150 -0
- data/reference-docs/mathml-source/pubtext/xmlspec.dtd +2649 -0
- data/reference-docs/mathml-source/readme.txt +40 -0
- data/reference-docs/mathml-source/run +296 -0
- data/reference-docs/mathml-source/style/html/html2xhtml.xsl +216 -0
- data/reference-docs/mathml-source/style/html/images.xsl +98 -0
- data/reference-docs/mathml-source/style/html/mml6.xsl +1156 -0
- data/reference-docs/mathml-source/style/html/mmldiff.xsl +566 -0
- data/reference-docs/mathml-source/style/html/mmlspec.xsl +2531 -0
- data/reference-docs/mathml-source/style/html/slices-common.xsl +312 -0
- data/reference-docs/mathml-source/style/html/slices.xsl +48 -0
- data/reference-docs/mathml-source/style/html/xmlspec.xsl +2542 -0
- data/reference-docs/mathml-source/style/pdf/mathmlspec.xsl +2510 -0
- data/reference-docs/mathml-source/xml/changes.xml +773 -0
- data/reference-docs/mathml-source/xml/character-set.xml +1011 -0
- data/reference-docs/mathml-source/xml/content-element-def.xml +6143 -0
- data/reference-docs/mathml-source/xml/content-markup.xml +8178 -0
- data/reference-docs/mathml-source/xml/contributors.xml +425 -0
- data/reference-docs/mathml-source/xml/dom-bindings.xml +20 -0
- data/reference-docs/mathml-source/xml/dom-intro.xml +114 -0
- data/reference-docs/mathml-source/xml/fundamentals.xml +1646 -0
- data/reference-docs/mathml-source/xml/glossary.xml +519 -0
- data/reference-docs/mathml-source/xml/interface.xml +1096 -0
- data/reference-docs/mathml-source/xml/introduction.xml +724 -0
- data/reference-docs/mathml-source/xml/mathml-css-sample.xml +304 -0
- data/reference-docs/mathml-source/xml/mathml-dom.xml +3813 -0
- data/reference-docs/mathml-source/xml/mathml-spec.xml +356 -0
- data/reference-docs/mathml-source/xml/mixing.xml +982 -0
- data/reference-docs/mathml-source/xml/operator-dict.xml +551 -0
- data/reference-docs/mathml-source/xml/parsing.xml +2565 -0
- data/reference-docs/mathml-source/xml/presentation-markup.xml +6834 -0
- data/reference-docs/mathml-source/xml/references.xml +323 -0
- data/reference-docs/mathml-source/xml/validation-grammar.xml +877 -0
- data/schemas/README.adoc +15 -0
- data/schemas/mathml2/CVS/Entries +4 -0
- data/schemas/mathml2/CVS/Repository +1 -0
- data/schemas/mathml2/CVS/Root +1 -0
- data/schemas/mathml2/common/CVS/Entries +4 -0
- data/schemas/mathml2/common/CVS/Repository +1 -0
- data/schemas/mathml2/common/CVS/Root +1 -0
- data/schemas/mathml2/common/common-attribs.xsd +41 -0
- data/schemas/mathml2/common/math.xsd +126 -0
- data/schemas/mathml2/common/xlink-href.xsd +20 -0
- data/schemas/mathml2/content/CVS/Entries +16 -0
- data/schemas/mathml2/content/CVS/Repository +1 -0
- data/schemas/mathml2/content/CVS/Root +1 -0
- data/schemas/mathml2/content/arith.xsd +90 -0
- data/schemas/mathml2/content/calculus.xsd +146 -0
- data/schemas/mathml2/content/common-attrib.xsd +30 -0
- data/schemas/mathml2/content/constants.xsd +83 -0
- data/schemas/mathml2/content/constructs.xsd +260 -0
- data/schemas/mathml2/content/elementary-functions.xsd +117 -0
- data/schemas/mathml2/content/functions.xsd +73 -0
- data/schemas/mathml2/content/linear-algebra.xsd +173 -0
- data/schemas/mathml2/content/logic.xsd +53 -0
- data/schemas/mathml2/content/relations.xsd +55 -0
- data/schemas/mathml2/content/semantics.xsd +85 -0
- data/schemas/mathml2/content/sets.xsd +236 -0
- data/schemas/mathml2/content/statistics.xsd +136 -0
- data/schemas/mathml2/content/tokens.xsd +120 -0
- data/schemas/mathml2/content/tokens.xsd.~1.3.~ +119 -0
- data/schemas/mathml2/content/vector-calculus.xsd +88 -0
- data/schemas/mathml2/mathml2.xsd +59 -0
- data/schemas/mathml2/presentation/CVS/Entries +12 -0
- data/schemas/mathml2/presentation/CVS/Repository +1 -0
- data/schemas/mathml2/presentation/CVS/Root +1 -0
- data/schemas/mathml2/presentation/action.xsd +44 -0
- data/schemas/mathml2/presentation/characters.xsd +37 -0
- data/schemas/mathml2/presentation/common-attribs.xsd +113 -0
- data/schemas/mathml2/presentation/common-types.xsd +103 -0
- data/schemas/mathml2/presentation/error.xsd +40 -0
- data/schemas/mathml2/presentation/layout.xsd +195 -0
- data/schemas/mathml2/presentation/scripts.xsd +186 -0
- data/schemas/mathml2/presentation/space.xsd +52 -0
- data/schemas/mathml2/presentation/style.xsd +69 -0
- data/schemas/mathml2/presentation/table.xsd +216 -0
- data/schemas/mathml2/presentation/tokens.xsd +124 -0
- data/schemas/mathml3/mathml3-common.xsd +99 -0
- data/schemas/mathml3/mathml3-content.xsd +684 -0
- data/schemas/mathml3/mathml3-presentation.xsd +2151 -0
- data/schemas/mathml3/mathml3-strict-content.xsd +186 -0
- data/schemas/mathml3/mathml3.xsd +9 -0
- metadata +250 -2
|
@@ -0,0 +1,323 @@
|
|
|
1
|
+
<inform-div1 id="references" role="appendixk"><head>References</head>
|
|
2
|
+
<!-- $Id: references.xml,v 1.54 2003/10/18 10:48:47 davidc Exp $ -->
|
|
3
|
+
|
|
4
|
+
<blist>
|
|
5
|
+
<bibl id="Abramowitz1997">Abramowitz, Milton, Irene A. Stegun (editors);
|
|
6
|
+
<emph>Mathematical Fuctions: With Formulas, Graphs, and Mathematical Tables</emph>.
|
|
7
|
+
Dover Publications Inc., December 1977, ISBN: 0-4866-1272-4.
|
|
8
|
+
</bibl>
|
|
9
|
+
|
|
10
|
+
<bibl id="AAP-math">ANSI/NISO Z39.59-1998;
|
|
11
|
+
<emph>AAP Math DTD</emph>,
|
|
12
|
+
Standard for Electronic Manuscript Preparation and MarkUp.
|
|
13
|
+
(Association of American Publishers, Inc., Washington, DC)
|
|
14
|
+
Bethesda, MD, 1988.
|
|
15
|
+
</bibl>
|
|
16
|
+
|
|
17
|
+
<bibl id="Buswell1996">Buswell, S., Healey, E.R. Pike, and
|
|
18
|
+
M. Pike; <emph>SGML and the Semantic Representation of Mathematics</emph>.
|
|
19
|
+
UIUC Digital Library Initiative SGML Mathematics Workshop, May 1996
|
|
20
|
+
and SGML Europe 96 Conference, Munich 1996.
|
|
21
|
+
</bibl>
|
|
22
|
+
|
|
23
|
+
<bibl id="Cajori1928">Cajori, Florian; <emph>A History of Mathematical
|
|
24
|
+
Notations</emph>, vol. I & II. Open Court Publishing Co., La Salle
|
|
25
|
+
Illinois, 1928 & 1929 republished Dover Publications Inc., New
|
|
26
|
+
York, 1993, xxviii+820 pp. ISBN 0-486-67766-4 (paperback).
|
|
27
|
+
</bibl>
|
|
28
|
+
|
|
29
|
+
<bibl id="MathML1" diff="add">Patrick Ion, Robert Miner,
|
|
30
|
+
<emph><loc href="http://www.w3.org/TR/REC-MathML">Mathematical Markup Language (MathML) 1.01 Specification</loc></emph>
|
|
31
|
+
W3C Recommendation, revision of 7 July 1999
|
|
32
|
+
(<loc href="http://www.w3.org/TR/REC-MathML">http://www.w3.org/TR/REC-MathML</loc>)
|
|
33
|
+
</bibl>
|
|
34
|
+
|
|
35
|
+
<bibl id="MathML2" diff="add">David Carlisle, Patrick Ion, Robert Miner, Nico Poppelier,
|
|
36
|
+
<emph><loc href="http://www.w3.org/TR/2001/REC-MathML2-20010221/">Mathematical Markup Language (MathML) Version 2.0</loc></emph>
|
|
37
|
+
W3C Recommendation 21 February 2001
|
|
38
|
+
(<loc href="http://www.w3.org/TR/2001/REC-MathML2-20010221/">http://www.w3.org/TR/2001/REC-MathML2-20010221/</loc>)
|
|
39
|
+
</bibl>
|
|
40
|
+
|
|
41
|
+
<bibl id="Carroll1871">Carroll, Lewis [Rev. C.L. Dodgson];
|
|
42
|
+
<emph>Through the Looking Glass and What Alice Found There</emph>.
|
|
43
|
+
Macmillian & Co., 1871.
|
|
44
|
+
</bibl>
|
|
45
|
+
|
|
46
|
+
<bibl id="Chaundy1954">Chaundy, T.W., P.R. Barrett, and C. Batey;
|
|
47
|
+
<emph>The Printing of Mathematics. Aids for authors and editors and rules
|
|
48
|
+
for compositors and readers at the University Press, Oxford</emph>.
|
|
49
|
+
Oxford University Press, London, 1954, ix+105 pp.
|
|
50
|
+
</bibl>
|
|
51
|
+
|
|
52
|
+
<bibl id="Higham1993">Higham, Nicholas J.;
|
|
53
|
+
<emph>Handbook of writing for the mathematical sciences</emph>.
|
|
54
|
+
Society for Industrial and Applied Mathematics
|
|
55
|
+
(SIAM), Philadelphia, PA, 1993. xii+241 pp. ISBN: 0-89871-314-5.
|
|
56
|
+
</bibl>
|
|
57
|
+
|
|
58
|
+
<bibl id="ISOIEC10646-1">ISO/IEC JTC1/SC2/WG2;
|
|
59
|
+
<emph>ISO/IEC 10646-1: 2000</emph>, Information technology -- Universal-Octet Coded Character Set (UCS) -- Part 1: Architecture and Basic Multilingual Plane.
|
|
60
|
+
International Standards Organization, Geneva, Switzerland, 2000. Also published on CD-ROM.
|
|
61
|
+
(<loc href="http://anubis.dkuug.dk/JTC1/SC2/WG2/docs/projects#10646-1">http://anubis.dkuug.dk/JTC1/SC2/WG2/docs/projects#10646-1</loc>)
|
|
62
|
+
</bibl>
|
|
63
|
+
|
|
64
|
+
<bibl id="ISO-12083">ISO 12083:1993;
|
|
65
|
+
<emph>ISO 12083 DTD</emph>
|
|
66
|
+
Information and Documentation - Electronic Manuscript Preparation and Markup.
|
|
67
|
+
International Standards Organization, Geneva, Switzerland, 1993.
|
|
68
|
+
</bibl>
|
|
69
|
+
|
|
70
|
+
<bibl id="Knuth1986">Knuth, Donald E.;
|
|
71
|
+
<emph>The &TeX;book</emph>.
|
|
72
|
+
American Mathematical Society, Providence, RI and Addison-Wesley Publ. Co.,
|
|
73
|
+
Reading, MA, 1986, ix+483 pp. ISBN: 0-201-13448-9.
|
|
74
|
+
</bibl>
|
|
75
|
+
|
|
76
|
+
<bibl id="CSS1">Lie, Håkon Wium and Bert Bos;
|
|
77
|
+
<emph><loc diff="chg"
|
|
78
|
+
href="http://www.w3.org/TR/1999/REC-CSS1-19990111">Cascading Style Sheets, level 1</loc></emph>, W3C Recommendation, 17 December
|
|
79
|
+
1996. (<loc diff="chg"
|
|
80
|
+
href="http://www.w3.org/TR/1999/REC-CSS1-19990111">http://www.w3.org/TR/1999/REC-CSS1-19990111</loc>)
|
|
81
|
+
</bibl>
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
<bibl id="CSS2">Bert Bos, Håkon Wium Lie, Chris Lilley, and Ian
|
|
85
|
+
Jacobs (editors);
|
|
86
|
+
<emph><loc diff="chg"
|
|
87
|
+
href="http://www.w3.org/TR/1998/REC-CSS2-19980512/">Cascading Style Sheets, level 2 CSS2 Specification</loc></emph>, W3C Recommendation, 12 May 1998.
|
|
88
|
+
(<loc diff="chg"
|
|
89
|
+
href="http://www.w3.org/TR/1998/REC-CSS2-19980512/">http://www.w3.org/TR/1998/REC-CSS2-19980512</loc>)
|
|
90
|
+
</bibl>
|
|
91
|
+
|
|
92
|
+
<bibl id="OpenMath2000">O. Caprotti, D. P. Carlisle, A. M. Cohen (editors);
|
|
93
|
+
<emph><loc href="http://www.openmath.org/standard/">The OpenMath Standard</loc></emph>, February 2000.
|
|
94
|
+
(<loc href="http://www.openmath.org/standard/">http://www.openmath.org/standard</loc>)
|
|
95
|
+
</bibl>
|
|
96
|
+
|
|
97
|
+
<bibl id="Pierce1961">Pierce, John R.;
|
|
98
|
+
<emph>An Introduction to Information Theory.
|
|
99
|
+
Symbols, Signals and Noise.</emph>.
|
|
100
|
+
Revised edition of
|
|
101
|
+
<emph>Symbols, Signals and Noise:
|
|
102
|
+
the Nature and Process of Communication</emph>
|
|
103
|
+
(1961). Dover Publications Inc., New York, 1980, xii+305
|
|
104
|
+
pp. ISBN 0-486-24061-4.
|
|
105
|
+
</bibl>
|
|
106
|
+
|
|
107
|
+
<bibl id="Poppelier1992">Poppelier, N.A.F.M., E. van Herwijnen,
|
|
108
|
+
and C.A. Rowley; <emph>Standard DTD's and Scientific Publishing</emph>,
|
|
109
|
+
EPSIG News 5 (1992) #3, September 1992, 10-19.
|
|
110
|
+
</bibl>
|
|
111
|
+
|
|
112
|
+
<bibl id="HTML4">Raggett, Dave, Arnaud Le Hors
|
|
113
|
+
and Ian Jacobs (editors); <emph><loc diff="chg"
|
|
114
|
+
href="http://www.w3.org/TR/1999/REC-html401-19991224">HTML 4.01 Specification</loc></emph>, 24
|
|
115
|
+
December 1999. (<loc diff="chg"
|
|
116
|
+
href="http://www.w3.org/TR/1999/REC-html401-19991224">http://www.w3.org/TR/1999/REC-html401-19991224</loc>);
|
|
117
|
+
section on data types.
|
|
118
|
+
</bibl>
|
|
119
|
+
|
|
120
|
+
<bibl id="RodWatt2000">Igor Rodionov, Stephen Watt;
|
|
121
|
+
<emph>Content-Faithful Stylesheets for MathML</emph>.
|
|
122
|
+
Technical Report TR-00-23, Ontario Research Center for Computer Algebra,
|
|
123
|
+
December 2000. (<loc href=
|
|
124
|
+
"http://www.orcca.on.ca/TechReports/2000/TR-00-24.html"
|
|
125
|
+
>http://www.orcca.on.ca/TechReports/2000/TR-00-24.html</loc>)
|
|
126
|
+
</bibl>
|
|
127
|
+
|
|
128
|
+
<bibl id="Spivak1986">Spivak, M. D.;
|
|
129
|
+
<emph>The Joy of &TeX;
|
|
130
|
+
A gourmet guide to typesetting with the AMS-&TeX; macro package</emph>.
|
|
131
|
+
American Mathematical Society, Providence, RI, MA 1986, xviii+290 pp. ISBN:
|
|
132
|
+
0-8218-2999-8.
|
|
133
|
+
</bibl>
|
|
134
|
+
|
|
135
|
+
<bibl id="Swanson1979">Swanson, Ellen;
|
|
136
|
+
<emph>Mathematics into type:
|
|
137
|
+
Copy editing and proofreading of mathematics for editorial assistants and
|
|
138
|
+
authors</emph>.
|
|
139
|
+
Revised edition. American Mathematical Society, Providence,
|
|
140
|
+
R.I., 1979. x+90 pp. ISBN: 0-8218-0053-1.
|
|
141
|
+
</bibl>
|
|
142
|
+
|
|
143
|
+
<bibl id="Swanson1999">Swanson, Ellen;
|
|
144
|
+
<emph>Mathematics into type: Updated Edition</emph>.
|
|
145
|
+
American Mathematical Society, Providence,
|
|
146
|
+
R.I., 1999. 102 pp. ISBN: 0-8218-1961-5.
|
|
147
|
+
</bibl>
|
|
148
|
+
|
|
149
|
+
<bibl id="XML">Tim Bray, Jean Paoli, C.M. Sperberg-McQueen and Eve
|
|
150
|
+
Maler (editors);
|
|
151
|
+
<emph><loc diff="chg"
|
|
152
|
+
href="http://www.w3.org/TR/2000/REC-xml-20001006">Extensible Markup Language (XML) 1.0 (Second Edition)</loc></emph>,
|
|
153
|
+
6 October 2000. (<loc diff="chg"
|
|
154
|
+
href="http://www.w3.org/TR/2000/REC-xml-20001006">http://www.w3.org/TR/2000/REC-xml-20001006</loc>)
|
|
155
|
+
</bibl>
|
|
156
|
+
|
|
157
|
+
<bibl id="XLink" diff="chg"> Steve DeRose, Eve Maler, David Orchard (editors);
|
|
158
|
+
<emph><loc href="http://www.w3.org/TR/2001/REC-xlink-20010627/">XML Linking Language (XLink) Version 1.0</loc></emph>,
|
|
159
|
+
World Wide Web Consortium Recommendation, 27 June 2001.
|
|
160
|
+
(<loc href="http://www.w3.org/TR/2001/REC-xlink-20010627/">http://www.w3.org/TR/2001/REC-xlink-20010627/</loc>)
|
|
161
|
+
</bibl>
|
|
162
|
+
|
|
163
|
+
<bibl id="XPath" diff="add"> James Clark, Steve DeRose(editors);
|
|
164
|
+
<emph><loc href="http://www.w3.org/TR/1999/REC-xpath-19991116">XML Path Language Version 1.0</loc></emph>,
|
|
165
|
+
World Wide Web Consortium Recommendation, 16. November 1999.
|
|
166
|
+
(<loc href="http://www.w3.org/TR/1999/REC-xpath-19991116">http://www.w3.org/TR/1999/REC-xpath-19991116</loc>)
|
|
167
|
+
</bibl>
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
<bibl id="XPointer" diff="chg">Paul Grosso, Eve Maler, Jonathan Marsh,
|
|
171
|
+
Norman Walsh (editors);
|
|
172
|
+
<emph><loc href="http://www.w3.org/TR/2003/REC-xptr-framework-20030325/">XML Pointer Framework</loc></emph>,
|
|
173
|
+
World Wide Web Consortium Recommendation, 25 March 2003.
|
|
174
|
+
(<loc href="http://www.w3.org/TR/2003/REC-xptr-framework-20030325/">http://www.w3.org/TR/2003/REC-xptr-framework-20030325/</loc>)
|
|
175
|
+
</bibl>
|
|
176
|
+
|
|
177
|
+
<bibl id="XSLT">James Clark (editor);
|
|
178
|
+
<emph><loc diff="chg" href="http://www.w3.org/TR/1999/REC-xslt-19991116">XSL Transformations (XSLT) Version 1.0</loc></emph>,
|
|
179
|
+
World Wide Web Consortium Recommendation, 16 November 1999.
|
|
180
|
+
(<loc diff="chg" href="http://www.w3.org/TR/1999/REC-xslt-19991116">http://www.w3.org/TR/1999/REC-xslt-19991116</loc>)
|
|
181
|
+
</bibl>
|
|
182
|
+
|
|
183
|
+
<bibl id="Namespaces">Tim Bray, Dave Hollander, Andrew Layman (editors);
|
|
184
|
+
<emph><loc diff="chg" href="http://www.w3.org/TR/1999/REC-xml-names-19990114">Namespaces in XML</loc></emph>,
|
|
185
|
+
World Wide Web Consortium Recommendation, 14 January 1999.
|
|
186
|
+
(<loc diff="chg" href="http://www.w3.org/TR/1999/REC-xml-names-19990114">http://www.w3.org/TR/1999/REC-xml-names-19990114</loc>)
|
|
187
|
+
</bibl>
|
|
188
|
+
|
|
189
|
+
<bibl id="Behaviors">Vidur Apparao, Daniel Glazman, and Chris Wilson (editors)
|
|
190
|
+
<emph><loc diff="chg" href="http://www.w3.org/TR/1999/WD-becss-19990804">Behavioral Extensions to CSS</loc></emph>
|
|
191
|
+
World Wide Web Consortium Working Draft, 4 August 1999.
|
|
192
|
+
(<loc diff="chg" href="http://www.w3.org/TR/1999/WD-becss-19990804">http://www.w3.org/TR/1999/WD-becss-19990804</loc>)
|
|
193
|
+
</bibl>
|
|
194
|
+
|
|
195
|
+
<bibl id="DOM">
|
|
196
|
+
Arnaud Le Hors, Philippe Le Hégaret, Lauren Wood, Gavin Nicol, Jonathan Robie, Mike Champion, and Steve Byrne (editors);
|
|
197
|
+
<emph><loc diff="chg"
|
|
198
|
+
href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113">Document Object Model (DOM) Level 2 Core Specification</loc></emph>
|
|
199
|
+
World Wide Web Consortium Recommendation, 13 November, 2000.
|
|
200
|
+
(<loc diff="chg"
|
|
201
|
+
href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113">http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113</loc>)
|
|
202
|
+
</bibl>
|
|
203
|
+
|
|
204
|
+
<bibl id="XHTML">Steve Pemberton, Murray Altheim, et al.;
|
|
205
|
+
<emph><loc diff="chg"
|
|
206
|
+
href="http://www.w3.org/TR/2000/REC-xhtml1-20000126">XHTML[tm] 1.0: The Extensible HyperText Markup Language</loc></emph>
|
|
207
|
+
World Wide Web Consortium Recommendation, 26 January 2000.
|
|
208
|
+
(<loc diff="chg"
|
|
209
|
+
href="http://www.w3.org/TR/2000/REC-xhtml1-20000126">http://www.w3.org/TR/2000/REC-xhtml1-20000126</loc>)
|
|
210
|
+
</bibl>
|
|
211
|
+
|
|
212
|
+
<bibl id="Modularization">
|
|
213
|
+
Robert Adams, Murray Altheim, Frank Boumphrey, Sam Dooley,
|
|
214
|
+
Shane McCarron, Sebastian Schnitzenbaumer, Ted Wugofski (editors);
|
|
215
|
+
<emph><loc diff="chg"
|
|
216
|
+
href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410">Modularization of XHTML[tm]</loc></emph>,
|
|
217
|
+
World Wide Web Consortium Recommendation, 10 April 2001.
|
|
218
|
+
(<loc diff="chg"
|
|
219
|
+
href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410">http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410</loc>)
|
|
220
|
+
</bibl>
|
|
221
|
+
|
|
222
|
+
<bibl id="XMLSchemas">David C. Fallside, editor;
|
|
223
|
+
<emph><loc diff="chg"
|
|
224
|
+
href="http://www.w3.org/TR/2001/REC-xmlschema-0-20010502/">XML Schema Part 0: Primer</loc></emph>,
|
|
225
|
+
World Wide Web Consortium Recommendation, 2 May 2001.
|
|
226
|
+
(<loc diff="chg"
|
|
227
|
+
href="http://www.w3.org/TR/2001/REC-xmlschema-0-20010502/">http://www.w3.org/TR/2001/REC-xmlschema-0-20010502/</loc>)
|
|
228
|
+
</bibl>
|
|
229
|
+
|
|
230
|
+
<bibl diff="add" id="sgml-xml">J. Clark; <emph><loc
|
|
231
|
+
href="http://www.w3.org/TR/NOTE-sgml-xml-971215.html">Comparison of SGML and
|
|
232
|
+
XML</loc></emph>, W3C Note, December 1997. (<loc
|
|
233
|
+
href="http://www.w3.org/TR/NOTE-sgml-xml-971215.html">http://www.w3.org/TR/NOTE-sgml-xml-971215.html</loc>)</bibl>
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
<bibl id="RFC2045" diff="chg">N. Freed and N. Borenstein;
|
|
237
|
+
<emph><loc
|
|
238
|
+
href="http://www.ietf.org/rfc/rfc2045.txt">Multipurpose Internet Mail Extensions (MIME) Part One: Format of
|
|
239
|
+
Internet Message Bodies</loc></emph>,
|
|
240
|
+
RFC 2045, November 1996.
|
|
241
|
+
(<loc
|
|
242
|
+
href="http://www.ietf.org/rfc/rfc2045.txt">http://www.ietf.org/rfc/rfc2045.txt</loc>)
|
|
243
|
+
</bibl>
|
|
244
|
+
|
|
245
|
+
<bibl id="RFC2046" diff="chg">N. Freed and N. Borenstein;
|
|
246
|
+
<emph><loc
|
|
247
|
+
href="http://www.ietf.org/rfc/rfc2046.txt">Multipurpose Internet Mail
|
|
248
|
+
Extensions (MIME) Part Two: Media Types</loc></emph>,
|
|
249
|
+
RFC 2045, November 1996.
|
|
250
|
+
(<loc
|
|
251
|
+
href="http://www.ietf.org/rfc/rfc2046.txt">http://www.ietf.org/rfc/rfc2046.txt</loc>)
|
|
252
|
+
</bibl>
|
|
253
|
+
|
|
254
|
+
<bibl id="RFC3023">M. Murata, S. St.Laurent and D. Kohn;
|
|
255
|
+
<emph><loc
|
|
256
|
+
href="http://www.ietf.org/rfc/rfc3023.txt">XML Media Types</loc></emph>,
|
|
257
|
+
RFC 3023, January 2001.
|
|
258
|
+
(<loc
|
|
259
|
+
href="http://www.ietf.org/rfc/rfc3023.txt">http://www.ietf.org/rfc/rfc3023.txt</loc>)
|
|
260
|
+
</bibl>
|
|
261
|
+
|
|
262
|
+
<bibl id="Bidi">Mark Davis;
|
|
263
|
+
<emph><loc
|
|
264
|
+
href="http://www.unicode.org/unicode/reports/tr9/">The Bidirectional Algorithm</loc></emph>,
|
|
265
|
+
Unicode Standard Annex #9, August 2000.
|
|
266
|
+
(<loc
|
|
267
|
+
href="http://www.unicode.org/unicode/reports/tr9/">http://www.unicode.org/unicode/reports/tr9/</loc>)
|
|
268
|
+
</bibl>
|
|
269
|
+
|
|
270
|
+
<bibl diff="add" id="UAX15">Unicode Standard Annex 15, Version 4.0.0;
|
|
271
|
+
<emph><loc
|
|
272
|
+
href="http://www.unicode.org/reports/tr15/tr15-23.html">Unicode Normalization Forms</loc></emph>,
|
|
273
|
+
The Unicode Consortium, 2003-04-17.
|
|
274
|
+
(<loc
|
|
275
|
+
href="http://www.unicode.org/reports/tr15/tr15-23.html">http://www.unicode.org/reports/tr15/tr15-23.html</loc>)
|
|
276
|
+
</bibl>
|
|
277
|
+
|
|
278
|
+
<bibl id="Unicode">The Unicode Consortium;
|
|
279
|
+
<emph>The Unicode Standard, Version 3.0</emph>,
|
|
280
|
+
Addison-Wesley Longman, Inc., Reading MA, 2000, XXX + 1040.
|
|
281
|
+
ISBN 0-201-61633-5.
|
|
282
|
+
(<loc
|
|
283
|
+
href="http://www.unicode.org/unicode/standard/standard.html">http://www.unicode.org/unicode/standard/standard.html</loc>)
|
|
284
|
+
</bibl>
|
|
285
|
+
|
|
286
|
+
<bibl id="Unicode3.2">The Unicode Consortium;
|
|
287
|
+
<emph>The Unicode Standard, Version 3.2</emph>,
|
|
288
|
+
Addison-Wesley Longman, Inc., Reading MA, 2000, XXX + 1040.
|
|
289
|
+
ISBN 0-201-61633-5.
|
|
290
|
+
(<loc
|
|
291
|
+
href="http://www.unicode.org/unicode/standard/standard.html">http://www.unicode.org/unicode/standard/standard.html</loc>)
|
|
292
|
+
</bibl>
|
|
293
|
+
|
|
294
|
+
<bibl id="Thieme1983">Thieme, Romeo;
|
|
295
|
+
<emph>Satz und bedeutung mathematischer Formeln [Typesetting
|
|
296
|
+
and meaning of mathematical formulas]</emph>.
|
|
297
|
+
Reprint of the 1934 original. Edited by Karl Billmann, Helmut
|
|
298
|
+
Bodden
|
|
299
|
+
and Horst Nacke. Werner-Verlag Gmbh, Dusseldorf, 1983, viii +
|
|
300
|
+
92 pp. ISBN 3-8041-3549-8.
|
|
301
|
+
</bibl>
|
|
302
|
+
|
|
303
|
+
<bibl id="Zwillinger1988">Daniel Zwillinger (editor);
|
|
304
|
+
<emph>Standard Mathematical Tables and
|
|
305
|
+
Formulae (30th Edition)</emph>.
|
|
306
|
+
CRC Press LLC, January 1996, ISBN: 0-8493-2479-3.
|
|
307
|
+
</bibl>
|
|
308
|
+
|
|
309
|
+
<bibl diff="add" id="XHTML-MathML-SVG"> Masayasu Ishikawa, ed.,
|
|
310
|
+
<emph><loc href="http://www.w3.org/TR/2002/WD-XHTMLplusMathMLplusSVG-20020809/">An HTML + MathML + SVG Profile</loc></emph>
|
|
311
|
+
W3C Working Draft, 9 August 2002.
|
|
312
|
+
(<loc href="http://www.w3.org/TR/2002/WD-XHTMLplusMathMLplusSVG-20020809/">http://www.w3.org/TR/2002/WD-XHTMLplusMathMLplusSVG-20020809/</loc>)
|
|
313
|
+
</bibl>
|
|
314
|
+
|
|
315
|
+
<bibl diff="add" id="SVG1.1">
|
|
316
|
+
Dean Jackson, Jon Ferraiolo, Jun Fujisawa, eds.
|
|
317
|
+
<emph><loc href="http://www.w3.org/TR/2003/REC-SVG11-20030114/">Scalable Vector Graphics (SVG) 1.1 Specification</loc></emph>
|
|
318
|
+
W3C Recommendation, 14 January 2003
|
|
319
|
+
(<loc href="http://www.w3.org/TR/2003/REC-SVG11-20030114/">http://www.w3.org/TR/2003/REC-SVG11-20030114/</loc>)
|
|
320
|
+
</bibl>
|
|
321
|
+
|
|
322
|
+
</blist>
|
|
323
|
+
</inform-div1>
|