MathML Tutorial
MathML Symbols
MathML Useful Resources
Selected Reading
- 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 - Fencing
MathML - Fencing
<mfenced> tag is a convenient method to use fencing operators pke curly braces, brackets and parentheses instead of using <mo> tags for them.
Syntax
Here is the simple syntax to use this tag −
<mfenced> expression </mfenced>
Parameters
Here is the description of all the parameters of this tag −
expression − expression.
Attributes
Here is the description of all the attributes of this tag −
open − To specify the opening depmiter. Default is ( .
close − To specify the closing depmiter. Default is ) .
separators − To specify a sequence of zero or more separator characters, optionally separated by whitespace. Default is , .
Examples
Example 1: Without <mfenced> tag
<math xmlns = "http://www.w3.org/1998/Math/MathML"> <mrow> <mo>(</mo> <mi>x</mi> <mo>)</mo> </mrow> </math>
Output
Example 2: Using <mfenced> tag
<math xmlns = "http://www.w3.org/1998/Math/MathML"> <mfenced> <mi>x</mi> </mfenced> </math>
Output
Example 3: f(x,y)
<math xmlns = "http://www.w3.org/1998/Math/MathML"> <mrow> <mi> f </mi> <mo> </mo> <mfenced> <mi> x </mi> <mi> y </mi> </mfenced> </mrow> </math>
Output
Example 4: (a+b)
<math xmlns = "http://www.w3.org/1998/Math/MathML"> <mfenced> <mrow> <mi> a </mi> <mo> + </mo> <mi> b </mi> </mrow> </mfenced> </math>
Output
Example 5: [0,1)
<math xmlns = "http://www.w3.org/1998/Math/MathML"> <mfenced open="["> <mn> 0 </mn> <mn> 1 </mn> </mfenced> </math>