gpt4 book ai didi

python - 如何使用 Python 呈现 Latex 标记?

转载 作者:太空狗 更新时间:2023-10-29 18:26:59 25 4
gpt4 key购买 nike

如何在 python 中显示一个简单的 latex 公式?也许 numpy 是正确的选择?

我有这样的 python 代码:

a = '\frac{a}{b}'

并希望在图形输出(如 matplotlib)中打印它。

最佳答案

按照 Andrew little 的建议,使用 matplotlib 解决问题。

import matplotlib.pyplot as plt
a = '\\frac{a}{b}' #notice escaped slash
plt.plot()
plt.text(0.5, 0.5,'$%s$'%a)
plt.show()

关于python - 如何使用 Python 呈现 Latex 标记?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4028267/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com