Создайте выражение с помощью MathML, как показано на рис. 1.
Рис. 1
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>MathML</title>
</head>
<body>
<p>Матрица вращения вокруг оси <var>x</var>:</p>
<math display="block">
<msub>
<mi>M</mi>
<mi>x</mi>
</msub>
<mo fence="true" form="prefix" stretchy="false">(</mo>
<mi>𝛼</mi>
<mo fence="true" form="postfix" stretchy="false">)</mo>
<mo>=</mo>
<mrow>
<mo fence="true" form="prefix">(</mo>
<mtable>
<mtr>
<mtd>
<mi>cos</mi>
<mi>𝛼</mi>
</mtd>
<mtd>
<mo>−</mo>
<mi>sin</mi>
<mi>𝛼</mi>
</mtd>
</mtr>
<mtr>
<mtd>
<mi>sin</mi>
<mi>𝛼</mi>
</mtd>
<mtd>
<mi>cos</mi>
<mi>𝛼</mi>
</mtd>
</mtr>
</mtable>
<mo fence="true" form="postfix">)</mo>
</mrow>
<mtext>.</mtext>
</math>
</body>
</html>