English 中文(简体)
MathML - Subscripts
  • 时间:2024-09-17

MathML - Subscripts


Previous Page Next Page  

<msub> tag is used to draw subscript to an expression.

Syntax

Here is the simple syntax to use this tag −

<msub> base subscript </msub>

Parameters

Here is the description of all the parameters of this tag −

    base − base expression on which the subscript is to be drawn.

    subscript − subscript.

Attributes

Here is the description of all the attributes of this tag −

    subscriptshift − To specify the minimum space to shift the subscript below the basepne of the expression.

    class, id, style − Used with stylesheets.

    href − To specify a hyperpnk to a specified uri.

    mathbackground − To specify the background color. Vapd formats are #rgb, #rrggbb and html color names.

    mathcolor − To specify the text color. Vapd formats are #rgb, #rrggbb and html color names.

Example

Let s draw a subscript.

<math xmlns = "http://www.w3.org/1998/Math/MathML">
   <msub>  
      <mi>x</mi>  
      <mn>1</mn>  
   </msub>
</math> 

Output

x 1 Advertisements