পৃষ্ঠাসমূহ

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 - Style

<mstyle> tag is used to make style changes that affect the rendering of its contents.

Syntax

Here is the simple syntax to use this tag −
<mstyle> expression </mstyle>

Parameters

Here is the description of all the parameters of this tag -
  • expression - inferred mrow elements.

Attributes

Here is the description of all the attributes of this tag -
  • scriptlevel - To specify the scriptlevel for the children. Without a sign, it sets scriptlevel to the specified value; With a sign it increments ("+") or decrements ("-") the current value.
  • displaystyle - To specify the displaystyle.
  • scriptsizemultiplier - To specify the multiplier to be used to adjust font size due to changes in scriptlevel.
  • scriptminsize - To specify the minimum font size allowed due to changes in scriptlevel.
  • infixlinebreakstyle - To specify he default linebreakstyle to use for infix operators.
  • decimalpoint - To specify the character used to determine the alignment point within <mstack> and <mtable> columns when the "decimalpoint" value is used to specify the alignment. Default is '.'.

Examples

1. Without <mstyle> tag
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
   <mo maxsize="100%"> ( </mo>
   <mfrac> 
      <mi> a </mi> 
      <mi> b </mi> 
   </mfrac>
   <mo maxsize="100%"> ) </mo>
</mrow>
</math>

Output

(ab)
2. Using <mstyle> tag
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mstyle maxsize="100%">
   <mrow>
      <mo> ( </mo>
      <mfrac> 
         <mi> a </mi> 
         <mi> b </mi> 
      </mfrac>
      <mo> ) </mo>
   </mrow>
</mstyle>
</math>

Output

(ab)

No comments:

Post a Comment