Open In App

HTML5 MathML <mmultiscripts> Tag

The MathML <mmultiscripts> tag in HTML5 is used to create multi-dimensional matrices. The degree depends on the conditionality of a representative array. As a number/digit is a 0-dimensional array. 1st order Tensor and 2nd order tensor as a squire matrices will represent a 1-dimensional array.

Syntax:  



 <mmultiscripts> child elements </mmultiscripts>

Attributes: This tag accepts below mentioned attributes:  

Below example illustrates the concept of HTML5 MathML <mmultiscripts> tag:



Example:  




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 MathML mmultiscripts tag</title>
</head>
 
<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>
 
        <h3>HTML5 MathML mmultiscripts Tag</h3>
 
        <math>
            <mmultiscripts>
 
                <!-- base expression -->
                <mi>for</mi>
 
                <!-- postsubscript -->
                <none />
 
                <!-- postsuperscript -->
                <mi>Geeks</mi>
 
                <mprescripts />
 
                <!-- presubscript -->
                <mi>Geeks</mi>
 
                <!-- presuperscript -->
                <none />
 
            </mmultiscripts>
        </math>
    </center>
</body>
 
</html>

Output: 

Supported Browsers: The browsers are supported by HTML5 MathML <mmultiscripts> tag are listed below: 


Article Tags :