LaTeX preview
commit8271153ec2756ef7fd2981334835103115cb4c5a
authorMateusz Paprocki <mattpap@gmail.com>
Thu, 27 Dec 2007 22:43:14 +0000 (27 23:43 +0100)
committerMateusz Paprocki <mattpap@gmail.com>
Thu, 27 Dec 2007 22:43:14 +0000 (27 23:43 +0100)
tree330e0d79a07433b64460a19f3e7a781b1aa4299c
parentd11f053d0b5b4c8506fb19acb8ad0c70e6b74c1f
LaTeX preview

Improved 'preview' function it self and its documentation.
Added also several wrappers (like pngview). This version
is integrated with new LaTeX printer ('inline' keyword).

I have rewriten LaTeX code generation almost from
scratch. Now it supports:

 - almost all functions (zeta missing)
 - multivariable derivatives
 - proper fractions
 - additional symbols
 - proper brackets
 - square roots

  and so on.

I also added the 'inline' key word to both LatexPrinter
and latex(). If it is set to True, the printer will
generate inline code $ $. Otherwise enclose the
expression in 'equation*' environment.

Added support for typestting lists, tuples, dicts
and matrices (using math-mode for all).

Swiched from as_numer_denom() to fraction() to avoid
putting expressions like 1/(1+1/x) together.
setup.py
sympy/__init__.py
sympy/printing/__init__.py
sympy/printing/latex.py
sympy/printing/preview.py [new file with mode: 0644]
sympy/printing/printer.py
sympy/printing/pygame_.py [deleted file]
sympy/printing/tests/test_latex.py