latexexpr

Module for easy LaTeX typesetting of algebraic expressions in symbolic form with automatic substitution and result computation.


License
LGPL-3.0
Install
pip install latexexpr==0.4.1

Documentation

LaTeX Expression

The LaTex Expression is a python module for easy LaTeX typesetting of algebraic expressions in symbolic form with automatic substitution and result computation.

It was originally written by Jan Stransky from Czech Technical University, Faculty of Civil Engineering, Department of Structural Mechanics, but the latest update was done in 2015.

Usage

Install using pip

pip install latexexpr

Enjoy

import latexexpr
v1 = latexexpr.Variable('H_{ello}',3.25,'m')
print(f'$$ {v1} $$')
v2 = latexexpr.Variable('W^{orld}',5.63,'m')
print(f'$$ {v2} $$')
e1 = latexexpr.Expression('E_{xample}',v1+v2,'m')
print(f'$$ {e1} $$')

Links

License

The project is released under LGPL v3