python转LaTeX

这篇博客介绍了如何将Python表达式转换为LaTeX数学公式,例如解决二次方程的表达式。(operatorname{solve}(a, b, c))定义为(frac{-b + sqrt{b^{2} - 4ac}}{2a})。" 80139265,7648302,VS2017+MFC+OpenCV3.4.1调用Caffe模型环境配置指南,"['C++', '计算机视觉', '深度学习', 'MFC', 'Visual Studio']
摘要由CSDN通过智能技术生成
!rm -rf latexify_py
!git clone https://github.com/odashi/latexify_py -b develop
!pip install -e latexify_py
# Before running following cells, restart the runtime so that the installed
# module is activated.
import math
import latexify
@latexify.with_latex
def solve(a, b, c):
    return (-b + math.sqrt(b**2 - 4*a*c)) / (2*a)

print(solve(1, 4, 3))
print(solve)
print()
solve
-1.0
\operatorname{solve}(a, b, c) \triangleq \frac{-b + \sqrt{b^{2} - 4ac}}{2a}

\(\operatorname{solve}(a, b, c) \triangleq \frac{-b + \sqrt{b^{2} - 4ac}}{2a}\)

@latexify.with_latex
def sinc(x):
    if x == 0:
  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值