这里分享两个Python Latex工具latexify和handcalcs。
latexify生成LaTeX 数学公式
import math
import latexify
@latexify.with_latex #调用latexify的装饰器
def solve(a, b, c):
return (-b + math.sqrt(b**2 - 4*a*c)) / (2*a)
solve
更多例子.......
这里分享两个Python Latex工具latexify和handcalcs。
import math
import latexify
@latexify.with_latex #调用latexify的装饰器
def solve(a, b, c):
return (-b + math.sqrt(b**2 - 4*a*c)) / (2*a)
solve
更多例子.......