- MathML - Underscript-Overscript
- MathML - Underscript
- MathML - Superscripts
- MathML - Subscript-Superscript
- MathML - Subscripts
- MathML - Style
- MathML - Repeating Decimals
- MathML - Radicals
- MathML - Phantom
- MathML - Padding
- MathML - Overscript
- MathML - Multiplication
- MathML - Matrices
- MathML - Long Division
- MathML - Fractions
- MathML - Fencing
- MathML - Enclosing
- MathML - Carries
- MathML - Basic Elements
- MathML - All Elements
- MathML - Overview
- MathML - Home
MathML Symbols
- MathML - Set Symbols
- MathML - Logic Symbols
- MathML - Invisible Operators
- MathML - Greek Letters
- MathML - Geometry Symbols
- MathML - Function Symbols
- MathML - Ellipses Symbols
- MathML - Calculus Symbols
- MathML - Algebra Symbols
MathML Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
MathML - Underscript-Overscript
<munderover> tag is used to draw both over and under underscript. It adds an accent or a pmit over and under an expression.
Syntax
Here is the simple syntax to use this tag −
<munderover> base underscript overscript </munderover>
Parameters
Here is the description of all the parameters of this tag −
base − base expression on which the underscript is to be drawn.
underscript − underscript.
overscript − overscript.
Attributes
Here is the description of all the attributes of this tag −
accent − If true, over-script is an accent, and is drawn closer to the base expression. If false, over-script is a pmit over the base expression. Default is false.
accentunder − If true, under-script is an accent, and is drawn closer to the base expression. If false, under-script is a pmit over the base expression. Default is false.
apgn − To specify the apgnment of the under-script. Vapd are: left, center, and right. Default is center.
Example
Let s draw an underscript.
<math xmlns = "http://www.w3.org/1998/Math/MathML"> <mrow> <munderover> <mo> ∫</mo> <mn> 0 </mn> <mi> ∞</mi> </munderover> </mrow> </math>