如何使用Python渲染Latex标记?
如何在python中显示一个简单的乳胶公式?也许numpy是正确的选择?
编辑:
我有像这样的python代码:
a = '\frac{a}{b}'
并希望以图形输出(例如matplotlib)进行打印。
回答:
如Andrew所言,使用matplotlib的工作很少。
import matplotlib.pyplot as plta = '\\frac{a}{b}' #notice escaped slash
plt.plot()
plt.text(0.5, 0.5,'$%s$'%a)
plt.show()
以上是 如何使用Python渲染Latex标记? 的全部内容, 来源链接: utcz.com/qa/397274.html