I\'m using a dark background for ipython. I would like to have sympy expressions pretty-printed with LaTeX. Problem is the current LaTeX font is black. How can I change LaTeX fo
You can set the forecolor and backcolor options in sympy.init_printing. For example, to print the equations in blue, use
forecolor
backcolor
sympy.init_printing
In [1]: init_printing(forecolor="Blue")