Comment #4 on issue 3537 by [email protected]: %load_ext
sympy.interactive.ipythonprinting int and float representation
http://code.google.com/p/sympy/issues/detail?id=3537
Hi,
from sympy import init_printing
init_printing()
does exactly the same thing! (setting latex=True is the same too).
After digging into the code (sympy/interactive/printing.py) I assume that
line 133,134
for cls in [dict, int, long, float] + printable_containers:
png_formatter.for_type(cls, _print_png)
is what I was looking for.
It clearly renders ints, long, floats, dicts, and so on, as pngs (within
render_latex==True session). Btw. dicts are not rendered as pngs!
As already stated, I'm not aware of the desired behavior, but imho a png
representation is not be best choice! I would stick with mathjax rendered
latex (or plain text)
Jakob
--
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.