I want to change the sizes of sub- and superscripts of formulas as their font size is already set to \scriptsize. Is there a way to decrease the font size of all formulas written in \scriptsize by predefining the size in the preamble?
Thanks!
I want to change the sizes of sub- and superscripts of formulas as their font size is already set to \scriptsize. Is there a way to decrease the font size of all formulas written in \scriptsize by predefining the size in the preamble?
Thanks!
\let\scriptsize\tiny??? But the size of\scriptsizeis small already – May 06 '17 at 15:35\DeclareMathSizes, but \scriptsize is already very small, and I doubt that smaller subscripts are readable -- I at least wouldn't be able to do it. – Ulrike Fischer May 06 '17 at 15:49\def\defaultscriptratio{.7}withinlatex.ltx. You can redefine it and use\calculate@math@sizesafterwards, but if there's no font supporting that size you're out of luck – May 06 '17 at 15:50\makeatletter \renewcommand{\defaultscriptratio}{.5} \renewcommand{\defaultscriptscriptratio}{.3} \calculate@math@sizes \makeatother-- but I don't recommend it at all – May 06 '17 at 15:54