I am using ipython qtconsole (today it is called jupyter console). When printing latex (with sympy or any other way), the resulting output in a nice latex in black.
Is there a way to change the color to white because if the background of the terminal is not white (like what happens if you run qtconsole --style monokai), the output is unreadable.
Example:
>>> from sympy import *
>>> init_printing()
>>> k = symbols('k')
>>> Sum(k**2,(k,1,100))
So now it is unreadable. Is there any way to turn it white
_repr_latex_()
– Homeric_repr_latex_
it wouldn't fix @tal's problem. – Euhemerism