Referencia completa de HTML5 MathML

MathML viene en HTML5, la versión actual de MathML es 3, se introdujo en el año 2015. MathML significa Lenguaje de marcado matemático. Se utiliza para representar la ecuación o expresión matemática en los navegadores web como otros elementos HTML. El MathML se usa para describir las matemáticas como base para la comunicación de máquina a máquina, está destinado a ser manejado por herramientas de creación especializadas, como editores de ecuaciones, y también es significativo para otras aplicaciones.

Ejemplo:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML5 MathML</title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green"> 
        GeeksforGeeks 
    </h1> 
  
    <h3>HTML5 MathML</h3> 
  
    <!--start tag of the whole representation-->
    <math> 
          
        <!-- Creating Matrix -->
        <mrow> 
            <mi>A</mi> 
            <mo>=</mo> 
  
            <mfenced open="[" close="]"> 
  
                <mtable> 
                    <mtr> 
                        <mtd> 
                            <mi>a</mi> 
                        </mtd> 
                        <mtd> 
                            <mi>b</mi> 
                        </mtd> 
                    </mtr> 
  
                    <mtr> 
                        <mtd> 
                            <mi>x</mi> 
                        </mtd> 
                        <mtd> 
                            <mi>y</mi> 
                        </mtd> 
                    </mtr> 
  
                </mtable> 
  
            </mfenced> 
        </mrow> 
          
        <!-- Creating equation -->
        <br><br> 
        <msub> 
            <mi>Geeks</mi> 
            <mn>4</mn> 
        </msub> 
        <mo>+</mo> 
        <mn>Geeks</mn> 
        <mo>=</mo> 
        <msub> 
            <mi>G</mi> 
        </msub> 
        <mo>→</mo> 
        <msub> 
            <mi>e</mi> 
            <mn>2</mn> 
        </msub> 
        <mo>→</mo> 
        <mi>k</mi> 
        <mi>s</mi> 
        <mn>4 
        </mn> 
        <msub> 
            <mi>G</mi> 
        </msub> 
        <mo>→</mo> 
        <msub> 
            <mi>e</mi> 
            <mn>2</mn> 
        </msub> 
        <mo>→</mo> 
        <mi>k</mi> 
        <mi>s</mi> 
    </math> 
</body> 
  
</html> 

Producción:

Referencia completa:

Publicación traducida automáticamente

Artículo escrito por Vishal_Khoda y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *