mirror of https://github.com/inclusionAI/AReaL
13 lines
412 B
Python
13 lines
412 B
Python
import sys
|
|
|
|
from latex2sympy import process_sympy
|
|
|
|
sys.path.append("..")
|
|
|
|
# latex = "2\\begin{pmatrix}1&1&1\\\\0&1&1\\\\0&0&1\\end{pmatrix}\\begin{pmatrix}1&1&1\\\\0&1&1\\\\0&0&1\\end{pmatrix}"
|
|
latex = "\\frac{a^{2} \\left(3 \\pi - 4 \\sin{\\left(\\pi \\right)} + \\frac{\\sin{\\left(2 \\pi \\right)}}{2}\\right)}{2}"
|
|
math = process_sympy(latex)
|
|
|
|
print(type(math))
|
|
print("latex: %s to math: %s" % (latex, math))
|