Создайте выражение с помощью MathML, как показано на рис. 1.
Рис. 1
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>MathML</title>
</head>
<body>
<p>Решите неравенство</p>
<math display="block">
<msub>
<mi>log</mi>
<mrow>
<mi>x</mi>
<mo>+</mo>
<mn>1</mn>
</mrow>
</msub>
<mfrac>
<mrow>
<mn>3</mn>
<mi>x</mi>
</mrow>
<mrow>
<mn>5</mn>
<mi>x</mi>
<mo>−</mo>
<mn>8</mn>
</mrow>
</mfrac>
<mo>></mo>
<mn>1</mn>
<mtext>.</mtext>
</math>
</body>
</html>