◇◆
<disp-formula-group> Formula, Display Group
Container element for equations or other mathematical expressions.
Usage/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
Multi-lang Attributes
Models and Context
May be contained in
<abstract>, <ack>, <answer>, <app>, <app-group>, <bio>, <body>, <boxed-text>, <disp-formula-group>, <disp-quote>, <explanation>, <fig>, <glossary>, <license-p>, <named-content>, <notes>, <option>, <p>, <question>, <question-preamble>, <ref-list>, <sec>, <see>, <see-also>, <styled-content>, <supplementary-material>, <td>, <term>, <th>, <trans-abstract>
Description
The following, in order:
- <object-id> Object Identifier, zero or more
- <label> Label (of an Equation, Figure, Reference, etc.), zero or one
- <caption> Caption of a Figure, Table, etc., zero or more
- <legend> Legend, zero or more
- <abstract> Abstract, zero or more
- <kwd-group> Keyword Group, zero or more
- <subj-group> Subject Group, zero or more
- Any combination of:
- Accessibility Elements
- Linking Elements
- Any combination of:
Content Model
<!ELEMENT disp-formula-group %disp-formula-group-model; >
Expanded Content Model
((object-id)*, label?, (caption)*, (legend)*, (abstract)*, (kwd-group)*, (subj-group)*, (alt-text | long-desc | email | ext-link | uri)*, (disp-formula | disp-formula-group)*)
Tagged Sample
Three equation group
...
<sec>
<title>The Quadratic Formula</title>
<p>...</p>
<disp-formula-group>
<disp-formula id="formula-qf-1">
<label>(1)</label>
<mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML">
<mml:mrow>...</mml:mrow>
</mml:math>
</disp-formula>
<disp-formula id="formula-qf-2">
<label>(2)</label>
<mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML">
<mml:mrow>...</mml:mrow>
</mml:math>
</disp-formula>
<disp-formula id="formula-qf-3">
<label>(3)</label>
<mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML">
<mml:mrow>...</mml:mrow>
</mml:math>
</disp-formula>
</disp-formula-group>
</sec>
...