A subscript is small letter or number placed slightly lower than the normal text that identifies a variable. Sometimes a variable may stand for a specific property, for example pressure, but say at different locations. Then the letter P could represent pressure and P1, P2, and P3 could be variables that represent specific values at different locations.
A superscript (also called an "exponent" or "power") is small letter or number placed slightly higher than the normal text. Placed just to the right of an expression, it defines how many times to use the value of that expression in a multiplication.
msub Use this element to attach a subscript to a base. Example:
<math>
<msub>
<mi>x</mi>
<mi>i</mi>
</msub>
</math>
msup Use this element to attach a superscript to a base. Example:
<math>
<msup>
<mi>x</mi>
<mi>j</mi>
</msup>
</math>
msubsup Use this element to attach both a subscript and a superscript to a base. Example:
<math> <msubsup> <mi>x</mi> <mi>i</mi> <mi>j</mi> </msubsup> </math>
Note that for all the above elements, the base is the first child element.
<math>
<mfrac>
<msup>
<mi>x</mi>
<mi>3</mi>
</msup>
<mi>y</mi>
</mfrac>
</math>
Shown above, a variable with a superscript, or exponent, is used in the numerator of a fraction.
<math>
<mfrac>
<mi>y</mi>
<mrow>
<mn>6</mn>
<mo>(</mo>
<mi>x</mi>
<mo>+</mo>
<msup>
<mi>y</mi>
<mn>2</mn>
</msup>
<mo>)</mo>
</mrow>
</mfrac>
</math>
Shown above is a variable with an exponent used in the denominator of a fraction. The variable with the exponent is part of a complex expression. The complex expression is created by using the mrow element to specify which elements go in the numerator and which go in the denominator.
<math>
<mroot>
<mrow>
<mn>6</mn>
<mo>(</mo>
<mi>x</mi>
<mo>+</mo>
<msup>
<mi>y</mi>
<mn>2</mn>
</msup>
<mo>)</mo>
</mrow>
<mn>3</mn>
</mroot>
</math>
Similarly, shown above is a variable with an exponent used in the base of a radical. The variable with the exponent is part of a complex expression. The complex expression is created by using the mrow element to specify which elements go in the base and which go in the index.
More Graphics Design Tips:
• Inkscape Exercise: Draw Photorealistic Sphere
• Getting Started with Krita
• MathML mtext Element to Display Plain Text
• Draw Bezier SVG Drawing Application
• Anti-Aliasing
• Introduction to Draw SVG Free Online SVG Drawing Application
• SVG Basic Shapes Tutorials
• MathML Element to Display a Fraction
• Pencil Free Open Source Cartoon Animation Drawing Program
• SVG Code for Outlined Letters Text
