পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Saturday, March 4, 2017

MathML - Fencing

<mfenced> tag is a convenient method to use fencing operators like 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 delimiter. Default is '('.
  • close - To specify the closing delimiter. Default is ')'.
  • separators - To specify a sequence of zero or more separator characters, optionally separated by whitespace. Default is ','.

Examples

1. Without <mfenced> tag
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
   <mo>(</mo>
   <mi>x</mi>
   <mo>)</mo>
</mrow>
</math>

Output

(x)
2. Using <mfenced> tag
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mfenced>
   <mi>x</mi>
</mfenced>
</math>

Output

(x)
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

f(x,y)
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

(a+b)
5. [0,1)
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mfenced open="[">
   <mn> 0 </mn>
   <mn> 1 </mn>
</mfenced>
</math>

Output

[0,1)

No comments:

Post a Comment