I'm trying to control the size of the printed output of an evaluation. I was hoping that the keyword argument 'fontsize' in function 'init_printing()' would do the job. But it does not seem to do so for me. At least trying two different types of IDEs, i.e. spyder and a jupyter notebook and starting up like this
from sympy import * from __future__ import division from sympy.abc import x,y,z init_printing(use_latex=True,fontsize='12pt') I am stuck with a single fixed font size for the result of 1+1 I can change the 12pt to whatever I like, the displayed font size remains the same. i) should fontsize in the preceding be of relevance to the displayed font size at all? ii) if yes, would you have any idea what could be wrong iii) if no, then how to change the font size -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/ffba6c3c-fc65-4a12-8d03-5cc0a30d5c78%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
