<disp-formula-group>

Formula, Display Group

Container element for equations or other mathematical expressions.

Remarks

Best Practice: This element should be used for a group of equations or other mathematical expressions to be displayed together; it should not contain only a single equation or expression.
Equations within such groups may be given a single group number, numbered individually, or both.

Attributes

Content Model

<!ELEMENT  disp-formula-group
                        %disp-formula-group-model;                   >

Expanded Content Model

(label?, (caption)?, (abstract)*, (kwd-group)*, (alt-text | long-desc | email | ext-link | uri)*, (disp-formula | disp-formula-group)*)

Description

This element may be contained in:

Example

    ...
<sec>
<title>The Quadratic Formula Explained</title>
<p>...</p>
<disp-formula-group>
<disp-formula>
<label>(1)</label>
<mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML">
<mml:mrow>
<mml:mrow>
<mml:msup><mml:mi>x</mml:mi>
<mml:mn>2</mml:mn></mml:msup>
<mml:mo>&plus;</mml:mo>
<mml:mrow><mml:mn>8</mml:mn>
<mml:mo>&InvisibleTimes;</mml:mo>
<mml:mi>x</mml:mi></mml:mrow>
<mml:mo>&plus;</mml:mo>
<mml:mn>15</mml:mn>
</mml:mrow>
<mml:mo>&equals;</mml:mo>
<mml:mn>0</mml:mn>
</mml:mrow>
</mml:math>
</disp-formula>

<disp-formula>
<label>(2)</label>
<mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML">
<mml:mrow>
<mml:mrow>
<mml:msup><mml:mi>x</mml:mi>
<mml:mn>2</mml:mn></mml:msup>
<mml:mo>&plus;</mml:mo>
<mml:mrow><mml:mn>8</mml:mn>
<mml:mo>&InvisibleTimes;</mml:mo>
<mml:mi>x</mml:mi></mml:mrow>
<mml:mo>&plus;</mml:mo>
<mml:mn>15</mml:mn>
</mml:mrow>
<mml:mo>&equals;</mml:mo>
<mml:mrow>
<mml:mfenced>
<mml:mrow><mml:mi>x</mml:mi>
<mml:mo>&plus;</mml:mo>
<mml:mn>5</mml:mn></mml:mrow>
</mml:mfenced>
<mml:mo>&InvisibleTimes;</mml:mo>
<mml:mfenced>
<mml:mrow><mml:mi>x</mml:mi>
<mml:mo>&plus;</mml:mo>
<mml:mn>3</mml:mn></mml:mrow>
</mml:mfenced>
</mml:mrow>
<mml:mo>&equals;</mml:mo>
<mml:mn>0</mml:mn>
</mml:mrow>
</mml:math>
</disp-formula>

<disp-formula>
<label>(3)</label>
<mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML">
<mml:mrow>
<mml:mi>x</mml:mi>
<mml:mo>&equals;</mml:mo>
<mml:mfrac>
<mml:mrow>
<mml:mrow><mml:mo>&minus;</mml:mo>
<mml:mi>8</mml:mi></mml:mrow>
<mml:mo>&PlusMinus;</mml:mo>
<mml:msqrt>
<mml:mrow>
<mml:msup><mml:mi>8</mml:mi>
<mml:mn>2</mml:mn></mml:msup>
<mml:mo>&minus;</mml:mo>
<mml:mrow><mml:mn>4</mml:mn>
<mml:mo>&InvisibleTimes;</mml:mo>
<mml:mi>1</mml:mi>
<mml:mo>&InvisibleTimes;</mml:mo>
<mml:mi>15</mml:mi></mml:mrow>
</mml:mrow>
</mml:msqrt>
</mml:mrow>
<mml:mrow><mml:mn>2</mml:mn>
<mml:mo>&InvisibleTimes;</mml:mo>
<mml:mi>1</mml:mi></mml:mrow>
</mml:mfrac>
</mml:mrow>
</mml:math>
</disp-formula>
</disp-formula-group>
</sec>
...