<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

Base Attributes

Models and Context
May be contained in
Description
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 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>
...
Related Resources