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.
- checksums.yaml +4 -4
- data/.gitmodules +9 -0
- data/.rubocop.yml +4 -0
- data/.rubocop_todo.yml +83 -18
- data/Gemfile +0 -2
- data/README.adoc +176 -47
- data/Rakefile +16 -1
- data/lib/mml/base/common_attributes.rb +44 -0
- data/lib/mml/base/content/annotation.rb +28 -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 +22 -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 +47 -0
- data/lib/mml/base/menclose.rb +1 -1
- data/lib/mml/base/mfenced.rb +2 -2
- data/lib/mml/base/mglyph.rb +2 -2
- data/lib/mml/base/mi.rb +9 -6
- data/lib/mml/base/mlabeledtr.rb +2 -6
- data/lib/mml/base/mn.rb +3 -2
- data/lib/mml/base/mo.rb +3 -3
- data/lib/mml/base/mrow.rb +0 -2
- data/lib/mml/base/ms.rb +4 -6
- data/lib/mml/base/mscarries.rb +1 -1
- data/lib/mml/base/mspace.rb +0 -2
- data/lib/mml/base/mstyle.rb +4 -8
- 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 +46 -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 +11 -0
- data/lib/mml/common_elements.rb +336 -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 +4 -3
- 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 +17 -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/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
- data/schemas/mathml4/mathml4-content.rnc +382 -0
- data/schemas/mathml4/mathml4-core.rnc +361 -0
- data/schemas/mathml4/mathml4-presentation.rnc +358 -0
- data/schemas/mathml4/mathml4-strict-content.rnc +86 -0
- data/schemas/mathml4/mathml4.rnc +21 -0
- data/schemas/mathml4/mathml4.rnc.1 +21 -0
- data/schemas/mathml4/mathml4.rng +37 -0
- metadata +249 -2
|
@@ -0,0 +1,519 @@
|
|
|
1
|
+
<inform-div1 id="glossary" role="appendixh" ><head>Glossary</head>
|
|
2
|
+
<!-- $Id: glossary.xml,v 1.23 2002/11/29 10:47:43 davidc Exp $ -->
|
|
3
|
+
|
|
4
|
+
<p>Several of the following definitions of terms have been borrowed or
|
|
5
|
+
modified from similar definitions in documents originating from W3C or
|
|
6
|
+
standards organizations. See the individual definitions for more
|
|
7
|
+
information.</p>
|
|
8
|
+
|
|
9
|
+
<glist>
|
|
10
|
+
<gitem>
|
|
11
|
+
<label id="dt-argument">Argument</label>
|
|
12
|
+
<def><p>A child of a presentation layout schema. That is, <quote>A is an
|
|
13
|
+
argument of B</quote> means <quote>A is a child of B and B is a
|
|
14
|
+
presentation layout schema</quote>. Thus, token elements have no arguments,
|
|
15
|
+
even if they have children (which can only be
|
|
16
|
+
<el>malignmark</el>).</p></def>
|
|
17
|
+
</gitem>
|
|
18
|
+
|
|
19
|
+
<gitem>
|
|
20
|
+
<label id="dt-attribute">Attribute</label>
|
|
21
|
+
<def><p>A parameter used to specify some property of an SGML or XML element
|
|
22
|
+
type. It is defined in terms of an attribute name, attribute type, and a
|
|
23
|
+
default value. A value may be specified for it on a start-tag for that
|
|
24
|
+
element type.</p></def>
|
|
25
|
+
</gitem>
|
|
26
|
+
|
|
27
|
+
<gitem>
|
|
28
|
+
<label id="dt-axis">Axis</label>
|
|
29
|
+
<def><p>The axis is an imaginary alignment line upon which a fraction line
|
|
30
|
+
is centered. Often, operators as well as characters that can stretch, such
|
|
31
|
+
as parentheses, brackets, braces, summation signs etc., are centered on
|
|
32
|
+
the axis, and are symmetric with respect to it.</p></def>
|
|
33
|
+
</gitem>
|
|
34
|
+
|
|
35
|
+
<gitem>
|
|
36
|
+
<label id="dt-baseline">Baseline</label>
|
|
37
|
+
<def><p>The baseline is an imaginary alignment line upon which a glyph
|
|
38
|
+
without a descender rests. The baseline is an intrinsic property of the
|
|
39
|
+
glyph (namely a horizontal line). Often baselines are aligned (joined)
|
|
40
|
+
during typesetting.</p></def>
|
|
41
|
+
</gitem>
|
|
42
|
+
|
|
43
|
+
<gitem>
|
|
44
|
+
<label id="dt-blackbox">Black box</label>
|
|
45
|
+
<def><p>The bounding box of the actual size taken up by the viewable
|
|
46
|
+
portion (ink) of a glyph or expression.</p></def>
|
|
47
|
+
</gitem>
|
|
48
|
+
|
|
49
|
+
<gitem>
|
|
50
|
+
<label id="dt-boundingbox">Bounding box</label>
|
|
51
|
+
<def><p>The rectangular box of smallest size, taking into account the
|
|
52
|
+
constraints on boxes allowed in a particular context, which contains some
|
|
53
|
+
specific part of a rendered display.</p></def>
|
|
54
|
+
</gitem>
|
|
55
|
+
|
|
56
|
+
<gitem>
|
|
57
|
+
<label id="dt-box">Box</label>
|
|
58
|
+
<def><p>A rectangular plane area considered to contain a character or
|
|
59
|
+
further sub-boxes, used in discussions of rendering for display. It is
|
|
60
|
+
usually considered to have a baseline, height, depth and width.</p></def>
|
|
61
|
+
</gitem>
|
|
62
|
+
|
|
63
|
+
<gitem>
|
|
64
|
+
<label id="dt-css">Cascading Style Sheets (CSS)</label>
|
|
65
|
+
<def><p>A language that allows authors and readers to attach style
|
|
66
|
+
(e.g. fonts, colors and spacing) to HTML and XML documents.</p></def>
|
|
67
|
+
</gitem>
|
|
68
|
+
|
|
69
|
+
<gitem>
|
|
70
|
+
<label id="dt-character">Character</label>
|
|
71
|
+
<def><p>A member of a set of identifiers used for the organization, control
|
|
72
|
+
or representation of text. ISO/IEC Standard 10646-1:1993 uses the word
|
|
73
|
+
<quote>data</quote> here instead of <quote>text</quote>.</p></def>
|
|
74
|
+
</gitem>
|
|
75
|
+
|
|
76
|
+
<gitem>
|
|
77
|
+
<label id="dt-cdata">Character data (<kw>CDATA</kw>)</label>
|
|
78
|
+
<def><p>A data type in SGML and XML for raw data that does not include
|
|
79
|
+
markup or entity references. Attributes of type <kw>CDATA</kw> may contain
|
|
80
|
+
entity references. These are expanded by an XML processor before the
|
|
81
|
+
attribute value is processed as <kw>CDATA</kw>.</p></def>
|
|
82
|
+
</gitem>
|
|
83
|
+
|
|
84
|
+
<gitem>
|
|
85
|
+
<label id="dt-char-depth">Character or expression depth</label>
|
|
86
|
+
<def><p>Distance between the baseline and bottom edge of the character
|
|
87
|
+
glyph or expression. Also known as the descent.</p></def>
|
|
88
|
+
</gitem>
|
|
89
|
+
|
|
90
|
+
<gitem>
|
|
91
|
+
<label id="dt-char-height">Character or expression height</label>
|
|
92
|
+
<def><p>Distance between the baseline and top edge of the character glyph
|
|
93
|
+
or expression. Also known as the ascent.</p></def>
|
|
94
|
+
</gitem>
|
|
95
|
+
|
|
96
|
+
<gitem>
|
|
97
|
+
<label id="dt-char-width">Character or expression width</label>
|
|
98
|
+
<def><p>Horizontal distance taken by the character glyph as indicated in
|
|
99
|
+
the font metrics, or the total width of an expression.</p></def>
|
|
100
|
+
</gitem>
|
|
101
|
+
|
|
102
|
+
<gitem>
|
|
103
|
+
<label id="dt-condition">Condition</label>
|
|
104
|
+
<def><p>A MathML content element used to place a mathematical condition on
|
|
105
|
+
one or more variables.</p></def>
|
|
106
|
+
</gitem>
|
|
107
|
+
|
|
108
|
+
<gitem>
|
|
109
|
+
<label id="dt-contained">Contained (element A is contained in element B)</label>
|
|
110
|
+
<def><p>A is part of B's content.</p></def>
|
|
111
|
+
</gitem>
|
|
112
|
+
|
|
113
|
+
<gitem>
|
|
114
|
+
<label id="dt-container">Container (Constructor)</label>
|
|
115
|
+
<def><p>A non-empty MathML Content element that is used to construct a
|
|
116
|
+
mathematical object such as a number, set, or list.</p></def>
|
|
117
|
+
</gitem>
|
|
118
|
+
|
|
119
|
+
<gitem>
|
|
120
|
+
<label id="dt-content-elements">Content elements</label>
|
|
121
|
+
<def><p>MathML elements that explicitly specify the mathematical meaning
|
|
122
|
+
of a portion of a MathML expression (defined in <specref ref="contm"/>).</p></def>
|
|
123
|
+
</gitem>
|
|
124
|
+
|
|
125
|
+
<gitem>
|
|
126
|
+
<label id="dt-content-token-element">Content token element</label>
|
|
127
|
+
<def><p>Content element having only <kw>PCDATA</kw>, <el>sep</el>
|
|
128
|
+
and presentation expressions as content. Represents either an identifier
|
|
129
|
+
(<el>ci</el>) or a number (<el>cn</el>).</p></def>
|
|
130
|
+
</gitem>
|
|
131
|
+
|
|
132
|
+
<gitem>
|
|
133
|
+
<label id="dt-context">Context (of a given MathML expression)</label>
|
|
134
|
+
<def><p>Information provided during the rendering of some MathML data to
|
|
135
|
+
the rendering process for the given MathML expression; especially
|
|
136
|
+
information about the MathML markup surrounding the expression.</p></def>
|
|
137
|
+
</gitem>
|
|
138
|
+
|
|
139
|
+
<gitem>
|
|
140
|
+
<label id="dt-declaration">Declaration</label>
|
|
141
|
+
<def><p>An instance of the declare element.</p></def>
|
|
142
|
+
</gitem>
|
|
143
|
+
|
|
144
|
+
<gitem>
|
|
145
|
+
<label id="dt-depth">Depth</label>
|
|
146
|
+
<def><p>(of a box) The distance from the baseline of the box to the bottom
|
|
147
|
+
edge of the box.</p></def>
|
|
148
|
+
</gitem>
|
|
149
|
+
|
|
150
|
+
<gitem>
|
|
151
|
+
<label id="dt-direct-sub-expression">Direct sub-expression
|
|
152
|
+
(of a MathML expression <quote>E</quote>)</label>
|
|
153
|
+
<def><p>A sub-expression directly contained in E.</p></def>
|
|
154
|
+
</gitem>
|
|
155
|
+
|
|
156
|
+
<gitem>
|
|
157
|
+
<label id="dt-directly-contained">Directly contained
|
|
158
|
+
(element A in element B)</label>
|
|
159
|
+
<def><p>A is a child of B (as defined in XML), in other words
|
|
160
|
+
A is contained in B, but not in any element that is itself contained in
|
|
161
|
+
B.</p></def>
|
|
162
|
+
</gitem>
|
|
163
|
+
|
|
164
|
+
<gitem>
|
|
165
|
+
<label id="dt-dom">Document Object Model</label>
|
|
166
|
+
<def><p>A model in which the document or Web page is treated as an object
|
|
167
|
+
repository. This model is developed by the DOM Working Group (DOM) of the
|
|
168
|
+
W3C.</p></def>
|
|
169
|
+
</gitem>
|
|
170
|
+
|
|
171
|
+
<gitem>
|
|
172
|
+
<label id="dt-dsssl">Document Style Semantics and Specification Language (DSSSL)</label>
|
|
173
|
+
<def><p>A method of specifying the formatting and transformation of
|
|
174
|
+
SGML documents. ISO International Standard 10179:1996.</p></def>
|
|
175
|
+
</gitem>
|
|
176
|
+
|
|
177
|
+
<gitem>
|
|
178
|
+
<label id="dt-dtd">Document Type Definition (DTD)</label>
|
|
179
|
+
<def><p>In SGML or XML, a DTD is a formal definition of the elements and
|
|
180
|
+
the relationship among the data elements (the structure) for a particular
|
|
181
|
+
type of document.</p></def>
|
|
182
|
+
</gitem>
|
|
183
|
+
|
|
184
|
+
<gitem>
|
|
185
|
+
<label id="dt-em">Em</label>
|
|
186
|
+
<def><p>A font-relative measure encoded by the font. Before electronic
|
|
187
|
+
typesetting, an <attval>em</attval> was the width of an
|
|
188
|
+
<quote>M</quote> in the font. In modern usage, an <attval>em</attval>
|
|
189
|
+
is either specified by the designer of the font or is taken to be the
|
|
190
|
+
height (point size) of the font. Em's are typically used for font-relative
|
|
191
|
+
horizontal sizes.</p></def>
|
|
192
|
+
</gitem>
|
|
193
|
+
|
|
194
|
+
<gitem>
|
|
195
|
+
<label id="dt-ex">Ex</label>
|
|
196
|
+
<def><p>A font-relative measure that is the height of an <quote>x</quote>
|
|
197
|
+
in the font. <attval>ex</attval>s are typically used for
|
|
198
|
+
font-relative vertical sizes.</p></def>
|
|
199
|
+
</gitem>
|
|
200
|
+
|
|
201
|
+
<gitem>
|
|
202
|
+
<label id="dt-height">Height</label>
|
|
203
|
+
<def><p>(of a box) The distance from the baseline of the box to the top
|
|
204
|
+
edge of the box.</p></def>
|
|
205
|
+
</gitem>
|
|
206
|
+
|
|
207
|
+
<gitem>
|
|
208
|
+
<label id="dt-inferred-mrow">Inferred <el>mrow</el></label>
|
|
209
|
+
<def><p>An <el>mrow</el> element that is
|
|
210
|
+
<quote>inferred</quote> around the contents of certain layout schemata when
|
|
211
|
+
they have other than exactly one argument. Defined precisely in <specref
|
|
212
|
+
ref="presm_summary"/></p>
|
|
213
|
+
</def>
|
|
214
|
+
</gitem>
|
|
215
|
+
|
|
216
|
+
<gitem>
|
|
217
|
+
<label id="dt-embedded-object">Embedded object</label>
|
|
218
|
+
<def><p>Embedded objects such as Java applets, Microsoft Component Object
|
|
219
|
+
Model (COM) objects (e.g. ActiveX Controls and ActiveX Document
|
|
220
|
+
embeddings), and plug-ins that reside in an HTML document.</p></def>
|
|
221
|
+
</gitem>
|
|
222
|
+
|
|
223
|
+
<gitem>
|
|
224
|
+
<label id="dt-embellished-operator">Embellished operator</label>
|
|
225
|
+
<def><p>An operator, including any <quote>embellishment</quote> it may
|
|
226
|
+
have, such as superscripts or style information. The
|
|
227
|
+
<quote>embellishment</quote> is represented by a layout schema that
|
|
228
|
+
contains the operator itself.
|
|
229
|
+
Defined precisely in <specref ref="presm_mo"/>.</p></def>
|
|
230
|
+
</gitem>
|
|
231
|
+
|
|
232
|
+
<gitem>
|
|
233
|
+
<label id="dt-entity-reference">Entity reference</label>
|
|
234
|
+
<def><p>A sequence of ASCII characters of the form <kw
|
|
235
|
+
role="entity">name</kw> representing some other data, typically a
|
|
236
|
+
non-ASCII character, a sequence of characters, or an external source of
|
|
237
|
+
data, e.g. a file containing a set of standard entity definitions such as
|
|
238
|
+
ISO Latin 1.</p></def>
|
|
239
|
+
</gitem>
|
|
240
|
+
|
|
241
|
+
<gitem>
|
|
242
|
+
<label id="dt-xml">Extensible Markup Language (XML)</label>
|
|
243
|
+
<def><p>A simple dialect of SGML intended to enable generic SGML to be
|
|
244
|
+
served, received, and processed on the Web.</p></def>
|
|
245
|
+
</gitem>
|
|
246
|
+
|
|
247
|
+
<gitem>
|
|
248
|
+
<label id="dt-fences">Fences</label>
|
|
249
|
+
<def><p>In typesetting, bracketing tokens like parentheses, braces, and
|
|
250
|
+
brackets, which usually appear in matched pairs.</p></def>
|
|
251
|
+
</gitem>
|
|
252
|
+
|
|
253
|
+
<gitem>
|
|
254
|
+
<label id="dt-font">Font</label>
|
|
255
|
+
<def><p>A particular collection of glyphs of a typeface of a given size,
|
|
256
|
+
weight and style, for example <quote>Times Roman Bold 12 point</quote>.</p></def>
|
|
257
|
+
</gitem>
|
|
258
|
+
|
|
259
|
+
<gitem>
|
|
260
|
+
<label id="dt-glyph">Glyph</label>
|
|
261
|
+
<def><p>The actual shape (bit pattern, outline) of a character.
|
|
262
|
+
ISO/IEC Standard 9541-1:1991 defines a glyph as a recognizable abstract
|
|
263
|
+
graphic symbol that is independent of any specific design.</p></def>
|
|
264
|
+
</gitem>
|
|
265
|
+
|
|
266
|
+
<gitem>
|
|
267
|
+
<label id="dt-indirectly-contained">Indirectly contained</label>
|
|
268
|
+
<def><p>A is contained in B, but not directly contained in B.</p></def>
|
|
269
|
+
</gitem>
|
|
270
|
+
|
|
271
|
+
<gitem>
|
|
272
|
+
<label id="dt-mathml-instance">Instance of MathML</label>
|
|
273
|
+
<def><p>A single instance of the top level element of MathML, and/or a
|
|
274
|
+
single instance of embedded MathML in some other data format.</p></def>
|
|
275
|
+
</gitem>
|
|
276
|
+
|
|
277
|
+
<gitem>
|
|
278
|
+
<label id="dt-inverse-function">Inverse function</label>
|
|
279
|
+
<def><p>A mathematical function that, when composed with the original
|
|
280
|
+
function acts like an identity function.</p></def>
|
|
281
|
+
</gitem>
|
|
282
|
+
|
|
283
|
+
<gitem>
|
|
284
|
+
<label id="dt-lambda-exp">Lambda expression</label>
|
|
285
|
+
<def><p>A mathematical expression used to define a function in terms of
|
|
286
|
+
variables and an expression in those variables.</p></def>
|
|
287
|
+
</gitem>
|
|
288
|
+
|
|
289
|
+
<gitem>
|
|
290
|
+
<label id="dt-layout-schema">Layout schema (plural: schemata)</label>
|
|
291
|
+
<def><p>A presentation element defined in chapter 3, other than the token
|
|
292
|
+
elements and empty elements defined there (i.e. not the elements defined in
|
|
293
|
+
<specref ref="presm_tokel"/> and <specref ref="presm_malign"/>, or the
|
|
294
|
+
empty elements <el>none</el> and
|
|
295
|
+
<el>mprescripts</el> defined in <specref ref="presm_mmultiscripts"/>).
|
|
296
|
+
The layout schemata are never empty elements (though their content may
|
|
297
|
+
contain nothing in some cases), are always expressions, and all allow any
|
|
298
|
+
MathML expressions as arguments (except for requirements on argument count,
|
|
299
|
+
and the requirement for a certain empty element in <el>mmultiscripts</el>).</p></def>
|
|
300
|
+
</gitem>
|
|
301
|
+
|
|
302
|
+
<gitem>
|
|
303
|
+
<label id="dt-mathml">Mathematical Markup Language (MathML)</label>
|
|
304
|
+
<def><p>The markup language specified in this document for describing
|
|
305
|
+
the structure of mathematical expressions, together with a mathematical
|
|
306
|
+
context.</p></def>
|
|
307
|
+
</gitem>
|
|
308
|
+
|
|
309
|
+
<gitem>
|
|
310
|
+
<label id="dt-mathml-element">MathML element</label>
|
|
311
|
+
<def><p>An XML element that forms part of the logical structure of a
|
|
312
|
+
MathML document.</p></def>
|
|
313
|
+
</gitem>
|
|
314
|
+
|
|
315
|
+
<gitem>
|
|
316
|
+
<label id="dt-mathml-exp">MathML expression (within some valid MathML
|
|
317
|
+
data)</label>
|
|
318
|
+
<def><p>A single instance of a presentation element, except for the empty
|
|
319
|
+
elements <el>none</el> or
|
|
320
|
+
<el>mprescripts</el>, or an instance of <el>malignmark</el> within a token element (defined below);
|
|
321
|
+
or a single instance of certain of the content elements
|
|
322
|
+
(see <specref ref="contm"/> for a precise definition of which ones).</p></def>
|
|
323
|
+
</gitem>
|
|
324
|
+
|
|
325
|
+
<gitem>
|
|
326
|
+
<label id="dt-mime">Multi-purpose Internet Mail Extensions (MIME)</label>
|
|
327
|
+
<def><p>A set of specifications that offers a way to interchange text in
|
|
328
|
+
languages with different character sets, and multimedia content among many
|
|
329
|
+
different computer systems that use Internet mail standards.</p></def>
|
|
330
|
+
</gitem>
|
|
331
|
+
|
|
332
|
+
<gitem>
|
|
333
|
+
<label id="dt-operator-content">Operator, content element</label>
|
|
334
|
+
<def><p>A mathematical object that is applied to arguments using the
|
|
335
|
+
<el>apply</el> element.</p></def>
|
|
336
|
+
</gitem>
|
|
337
|
+
|
|
338
|
+
<gitem>
|
|
339
|
+
<label id="dt-operator">Operator, an <el>mo</el>
|
|
340
|
+
element</label>
|
|
341
|
+
<def><p>Used to represent ordinary operators, fences, separators in MathML
|
|
342
|
+
presentation. (The token element <el>mo</el> is defined in
|
|
343
|
+
<specref ref="presm_mo"/>).</p></def>
|
|
344
|
+
</gitem>
|
|
345
|
+
|
|
346
|
+
<gitem>
|
|
347
|
+
<label id="dt-openmath">OpenMath</label>
|
|
348
|
+
<def><p>A general representation language for communicating mathematical
|
|
349
|
+
objects between application programs.</p></def>
|
|
350
|
+
</gitem>
|
|
351
|
+
|
|
352
|
+
<gitem>
|
|
353
|
+
<label id="dt-pcdata">Parsed character data (<kw>PCDATA</kw>)</label>
|
|
354
|
+
<def><p>An SGML/XML data type for raw data occurring in a context where
|
|
355
|
+
text is parsed and markup (for instance entity references and element
|
|
356
|
+
start/end tags) is recognized.</p></def>
|
|
357
|
+
</gitem>
|
|
358
|
+
|
|
359
|
+
<gitem>
|
|
360
|
+
<label id="dt-pt">Point</label>
|
|
361
|
+
<def><p>Point is often abbreviated <quote>pt</quote>. The value of 1 pt
|
|
362
|
+
is approximately 1/72 inch. Points are typically used to specify
|
|
363
|
+
absolute sizes for font-related objects.</p></def>
|
|
364
|
+
</gitem>
|
|
365
|
+
|
|
366
|
+
<gitem>
|
|
367
|
+
<label id="dt-predef-fun">Pre-defined function</label>
|
|
368
|
+
<def><p>One of the empty elements defined in <specref
|
|
369
|
+
ref="contm_funopqual"/> and used with the <el>apply</el>
|
|
370
|
+
construct to build function applications.</p></def>
|
|
371
|
+
</gitem>
|
|
372
|
+
|
|
373
|
+
<gitem>
|
|
374
|
+
<label id="dt-pres-elements">Presentation elements</label>
|
|
375
|
+
<def><p>MathML tags and entities intended to express the syntactic
|
|
376
|
+
structure of mathematical notation (defined in <specref ref="presm"/>).</p></def>
|
|
377
|
+
</gitem>
|
|
378
|
+
|
|
379
|
+
<gitem>
|
|
380
|
+
<label id="dt-pres-layout-schema">Presentation layout schema</label>
|
|
381
|
+
<def><p>A presentation element that can have other MathML elements as
|
|
382
|
+
content.</p></def>
|
|
383
|
+
</gitem>
|
|
384
|
+
|
|
385
|
+
<gitem>
|
|
386
|
+
<label id="dt-pres-token-element">Presentation token element</label>
|
|
387
|
+
<def><p>A presentation element that can contain only parsed character data
|
|
388
|
+
or the <el>malignmark</el> element.</p></def>
|
|
389
|
+
</gitem>
|
|
390
|
+
|
|
391
|
+
<gitem>
|
|
392
|
+
<label id="dt-qualifier">Qualifier</label>
|
|
393
|
+
<def><p>A MathML content element that is used to specify the value of a
|
|
394
|
+
specific named parameter in the application of selected pre-defined
|
|
395
|
+
functions.</p></def>
|
|
396
|
+
</gitem>
|
|
397
|
+
|
|
398
|
+
<gitem>
|
|
399
|
+
<label id="dt-relation">Relation</label>
|
|
400
|
+
<def><p>A MathML content element used to construct expressions such as
|
|
401
|
+
<var>a</var> < <var>b</var>.</p></def>
|
|
402
|
+
</gitem>
|
|
403
|
+
|
|
404
|
+
<gitem>
|
|
405
|
+
<label id="dt-render">Render</label>
|
|
406
|
+
<def><p>Faithfully translate into application-specific form allowing native
|
|
407
|
+
application operations to be performed.</p></def>
|
|
408
|
+
</gitem>
|
|
409
|
+
|
|
410
|
+
<gitem>
|
|
411
|
+
<label id="dt-schema">Schema</label>
|
|
412
|
+
<def><p>Schema (plural: schemata or schemas). See <quote>presentation layout
|
|
413
|
+
schema</quote>.</p></def>
|
|
414
|
+
</gitem>
|
|
415
|
+
|
|
416
|
+
<gitem>
|
|
417
|
+
<label id="dt-declaration-scope">Scope of a declaration</label>
|
|
418
|
+
<def><p>The portion of a MathML document in which a particular
|
|
419
|
+
definition is active.</p></def>
|
|
420
|
+
</gitem>
|
|
421
|
+
|
|
422
|
+
<gitem>
|
|
423
|
+
<label id="dt-selected-sub-exp">Selected sub-expression
|
|
424
|
+
(of an <el>maction</el> element)</label>
|
|
425
|
+
<def><p>The argument of an <el>maction</el> element (a
|
|
426
|
+
layout schema defined in <specref ref="presm_enliven"/>) that is (at any
|
|
427
|
+
given time) <quote>selected</quote> within the viewing state of a MathML
|
|
428
|
+
renderer, or by the <att>selection</att> attribute when the
|
|
429
|
+
element exists only in MathML data. Defined precisely in the abovementioned
|
|
430
|
+
section.</p></def>
|
|
431
|
+
</gitem>
|
|
432
|
+
|
|
433
|
+
<gitem>
|
|
434
|
+
<label id="dt-spacelike">Space-like (MathML expression)</label>
|
|
435
|
+
<def><p>A MathML expression that is ignored by the suggested rendering
|
|
436
|
+
rules for MathML presentation elements when they determine operator forms
|
|
437
|
+
and effective operator rendering attributes based on operator positions in
|
|
438
|
+
<el>mrow</el> elements. Defined precisely in <specref
|
|
439
|
+
ref="presm_mspace"/>.</p></def>
|
|
440
|
+
</gitem>
|
|
441
|
+
|
|
442
|
+
<gitem>
|
|
443
|
+
<label id="dt-sgml">Standard Generalized Markup Language (SGML)</label>
|
|
444
|
+
<def><p>An ISO standard (ISO 8879:1986) that provides a formal
|
|
445
|
+
mechanism for the definition of document structure via DTDs (Document
|
|
446
|
+
Type Definitions), and a notation for the markup of document instances
|
|
447
|
+
conforming to a DTD.</p></def>
|
|
448
|
+
</gitem>
|
|
449
|
+
|
|
450
|
+
<gitem>
|
|
451
|
+
<label id="dt-sub-exp">Sub-expression (of a MathML expression
|
|
452
|
+
<quote>E</quote>)</label>
|
|
453
|
+
<def><p>A MathML expression contained (directly or indirectly) in the
|
|
454
|
+
content of E.</p></def>
|
|
455
|
+
</gitem>
|
|
456
|
+
|
|
457
|
+
<gitem>
|
|
458
|
+
<label id="dt-suggested-rendering-rules">Suggested rendering rules for
|
|
459
|
+
MathML presentation elements</label>
|
|
460
|
+
<def><p>Defined throughout <specref ref="presm"/>; the ones that use other
|
|
461
|
+
terms defined here occur mainly in <specref ref="presm_mo"/> and in
|
|
462
|
+
<specref ref="presm_enliven"/>.</p></def>
|
|
463
|
+
</gitem>
|
|
464
|
+
|
|
465
|
+
<gitem>
|
|
466
|
+
<label id="dt-tex">&TeX;</label>
|
|
467
|
+
|
|
468
|
+
<def><p>A software system developed by Professor Donald Knuth for
|
|
469
|
+
typesetting documents.</p></def>
|
|
470
|
+
</gitem>
|
|
471
|
+
|
|
472
|
+
<gitem>
|
|
473
|
+
<label id="dt-token-element">Token element</label>
|
|
474
|
+
<def><p>Presentation token element or a Content token element. (See
|
|
475
|
+
above.)</p></def>
|
|
476
|
+
</gitem>
|
|
477
|
+
|
|
478
|
+
<gitem>
|
|
479
|
+
<label id="dt-toplevel-element">Top-level element (of MathML)</label>
|
|
480
|
+
<def><p><el>math</el> (defined in <specref ref="interf"/>).</p></def>
|
|
481
|
+
</gitem>
|
|
482
|
+
|
|
483
|
+
<gitem>
|
|
484
|
+
<label id="dt-typeface">Typeface</label>
|
|
485
|
+
<def><p>A typeface is a specific design of a set of letters, numbers and
|
|
486
|
+
symbols, such as <quote>Times Roman</quote> or <quote>Chicago</quote>.</p></def>
|
|
487
|
+
</gitem>
|
|
488
|
+
|
|
489
|
+
<gitem>
|
|
490
|
+
<label id="dt-valid-mathml">Valid MathML data</label>
|
|
491
|
+
<def><p>MathML data that (1) conforms to the MathML DTD, (2) obeys the
|
|
492
|
+
additional rules defined in the MathML standard for the legal contents and
|
|
493
|
+
attribute values of each MathML element, and (3) satisfies the EBNF grammar
|
|
494
|
+
for content elements.</p></def>
|
|
495
|
+
</gitem>
|
|
496
|
+
|
|
497
|
+
<gitem>
|
|
498
|
+
<label id="dt-width">Width (of a box)</label>
|
|
499
|
+
<def><p>The distance from the left edge of the box to the right edge of the
|
|
500
|
+
box.</p></def>
|
|
501
|
+
</gitem>
|
|
502
|
+
|
|
503
|
+
<gitem>
|
|
504
|
+
<label id="dt-xsl">Extensible Style Language (XSL)</label>
|
|
505
|
+
<def><p>A style language for XML developed by W3C. See XSL FO and XSLT.</p></def>
|
|
506
|
+
</gitem>
|
|
507
|
+
|
|
508
|
+
<gitem>
|
|
509
|
+
<label id="dt-xslfo">XSL Formatting Objects (XSL FO)</label>
|
|
510
|
+
<def><p>An XML vocabulary to express formatting, which is a part of XSL.</p></def>
|
|
511
|
+
</gitem>
|
|
512
|
+
|
|
513
|
+
<gitem>
|
|
514
|
+
<label id="dt-xslt">XSL Transformation (XSLT)</label>
|
|
515
|
+
<def><p>A language to express the transformation of XML documents
|
|
516
|
+
into other XML documents.</p></def>
|
|
517
|
+
</gitem>
|
|
518
|
+
</glist>
|
|
519
|
+
</inform-div1>
|