python - Control LaTeX expression color in ipython qtconsole -
i'm using dark background ipython. have sympy expressions pretty-printed latex. problem current latex font black. how can change latex font colors in ipython terminal?
you can set forecolor , backcolor options in sympy.init_printing.  example, print equations in blue, use
in [1]: init_printing(forecolor="blue")      
Comments
Post a Comment