用PySide渲染latex / mathml

时间:2011-03-05 13:10:15

标签: python latex mathml pyside sympy

我有一个小程序,可以使用SymPy的“漂亮打印”工具动态渲染一个类型方程式。这很好,但看起来不太专业。由于SymPy将生产乳胶或mml,我想知道这些是否可以使用PySide小部件以图形方式呈现?我显然需要更改'QTextBrowser()',但是我不确定。我知道诺基亚提供QtMmlWidget,但我不确定PySide是否可以使用它。

非常感谢和祝福。

from __future__ import division
import sys
import sympy

from PySide.QtGui import *
from PySide.QtCore import *
from PySide.QtXml import *

class Form(QDialog):
    def __init__(self, parent=None):
        super(Form, self).__init__(parent)
        self.browser = QTextBrowser()
        self.browser.setCurrentFont(QFont("Courier New",10,QFont.Bold))
        self.lineedit = QLineEdit("please type an expression")
        self.lineedit.selectAll()
        layout = QVBoxLayout()
        layout.addWidget(self.browser)
        layout.addWidget(self.lineedit)
        self.setLayout(layout)
        self.lineedit.setFocus()
        self.connect(self.lineedit, SIGNAL("textChanged (const QString&)"),self.updateUi)

    def updateUi(self):
        text = unicode(self.lineedit.text())
        for z in range(0,9):
            text = text.replace('x'+str(z),'x^'+str(z))
            text = text.replace(')'+str(z),')^'+str(z))
            text = text.replace(str(z)+'x',str(z)+'*x')
            text = text.replace(str(z)+'(',str(z)+'*(')

        try:
            self.browser.append(sympy.printing.pretty(sympy.sympify(text)))
            self.browser.clear()
            self.browser.append(sympy.printing.pretty(sympy.sympify(text)))
        except Exception:
            if text=='': self.browser.clear()

app = QApplication(sys.argv)
form = Form()
form.show()
app.exec_()

1 个答案:

答案 0 :(得分:0)

一种hacky方式是使用类似MathJax

的内容在QWebiew中显示它

或者,inspired by this question您可以使用SVGMath module将MathML格式转换为SVG,然后可以在QSvgWidget

中显示