I am using ipton qtconsole (today it is called the jupyter console). When printing latex (with sympathy or in any other way) the resulting output in beautiful latex in black.
Is there a way to change the color to white, because if the terminal's background is not white (for example, 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 not readable. Is there any way to turn it into white
source share