我将Python字符串转换为具有以下症状的公式:
我使用mathml命令将公式转换为MathML格式。
from sympy import *
from sympy.printing.mathml import mathml
print(mathml(sympify("(2*x + 3*y + 1)*(4*x**2 - 6*x*y - 2*x + 9*y**2 - 3*y + 1)"),printer='presentation'))
结果,输出了以下代码。
<mrow><mrow><mrow><mn>2</mn><mo>⁢</mo><mi>x</mi></mrow><mo>+</mo><mrow><mn>3</mn><mo>⁢</mo><mi>y</mi></mrow><mo>+</mo><mn>1</mn></mrow><mo>⁢</mo><mrow><mrow><mn>4</mn><mo>⁢</mo><msup><mi>x</mi><mn>2</mn></msup></mrow><mo>-</mo><mrow><mn>6</mn><mo>⁢</mo><mi>x</mi><mo>⁢</mo><mi>y</mi></mrow><mo>-</mo><mrow><mn>2</mn><mo>⁢</mo><mi>x</mi></mrow><mo>+</mo><mrow><mn>9</mn><mo>⁢</mo><msup><mi>y</mi><mn>2</mn></msup></mrow><mo>-</mo><mrow><mn>3</mn><mo>⁢</mo><mi>y</mi></mrow><mo>+</mo><mn>1</mn></mrow></mrow>
我将代码嵌入HTML并按如下方式尝试。
test.html
<html>
<head>
<script async="" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML"></script>
</head>
<body>
<math>
<mrow><mrow><mrow><mn>2</mn><mo>⁢</mo><mi>x</mi></mrow><mo>+</mo><mrow><mn>3</mn><mo>⁢</mo><mi>y</mi></mrow><mo>+</mo><mn>1</mn></mrow><mo>⁢</mo><mrow><mrow><mn>4</mn><mo>⁢</mo><msup><mi>x</mi><mn>2</mn></msup></mrow><mo>-</mo><mrow><mn>6</mn><mo>⁢</mo><mi>x</mi><mo>⁢</mo><mi>y</mi></mrow><mo>-</mo><mrow><mn>2</mn><mo>⁢</mo><mi>x</mi></mrow><mo>+</mo><mrow><mn>9</mn><mo>⁢</mo><msup><mi>y</mi><mn>2</mn></msup></mrow><mo>-</mo><mrow><mn>3</mn><mo>⁢</mo><mi>y</mi></mrow><mo>+</mo><mn>1</mn></mrow></mrow>
</math>
</body>
</html>
但是,使用此代码,输出将缺少括号,如下图所示。
[![画像の说明をここに入力] [1]] [1]
我阅读了[sympy.printing.mathml的源代码] [2]。
所以我想知道_print_Interval
方法是做什么用的。
这与公式中缺少括号的问题有关吗?
此表达式是一个示例。 我想正确转换甚至更复杂的公式。
答案 0 :(得分:0)
在image_source
会话中:
isympy
答案 1 :(得分:0)
我在日语版本的stackoverflow中得到了答案。 https://ja.stackoverflow.com/q/55578/22541
修复[this] [1]可以解决问题。
[之前]
for term in terms:
x = self._print(term)
mrow.appendChild(x)
[之后]
for term in terms:
mrow.appendChild(self.parenthesize(term, PRECEDENCE['Mul']))