Status: Valid
Owner: ----
Labels: Type-Defect Priority-Medium IPython Printing

New issue 3604 by [email protected]: init_printing() does not disable latex printing in the qtconsole
http://code.google.com/p/sympy/issues/detail?id=3604

As reported at https://groups.google.com/d/msg/sympy/n6szTThYGO0/iaNQcWCRDl4J.

In the IPython qtconsole (with matplotlib installed):

In [1]: from sympy import *
In [2]: from sympy.abc import *
In [3]: pi*x**2
shows non-pretty print output, ok.

But after using "init_printing()" on IPython Notebook or Qt console, it
is locked to LaTeX output, discarding any "pretty_print=None",
"use_latex=None" options :
In [4]: init_printing()
In [5]: pi*x**2
In [6]: init_printing(pretty_print=False)
In [7]: pi*x**2
gives again pretty print (LaTeX) output !


--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sympy-issues?hl=en.

Reply via email to