20 lines
730 B
Python
20 lines
730 B
Python
from latex2sympy import process_sympy
|
|
import sys
|
|
sys.path.append("..")
|
|
|
|
latex = "\\begin{pmatrix}1\\\\2\\\\3\\end{pmatrix}"
|
|
math = process_sympy(latex)
|
|
print("latex: %s to math: %s" % (latex, math))
|
|
|
|
latex = "\\begin{pmatrix}1\\\\2\\\\3\\end{pmatrix},\\begin{pmatrix}4\\\\3\\\\1\\end{pmatrix}"
|
|
math = process_sympy(latex)
|
|
print("latex: %s to math: %s" % (latex, math))
|
|
|
|
latex = "[\\begin{pmatrix}1\\\\2\\\\3\\end{pmatrix},\\begin{pmatrix}4\\\\3\\\\1\\end{pmatrix}]"
|
|
math = process_sympy(latex)
|
|
print("latex: %s to math: %s" % (latex, math))
|
|
|
|
latex = "\\left\\{\\begin{pmatrix}1\\\\2\\\\3\\end{pmatrix},\\begin{pmatrix}4\\\\3\\\\1\\end{pmatrix}\\right\\}"
|
|
math = process_sympy(latex)
|
|
print("latex: %s to math: %s" % (latex, math))
|