Variable: font-latex-fontify-script-max-level
font-latex-fontify-script-max-level is a customizable variable defined
in font-latex.el.
Value
3
Documentation
Maximum scriptification level for which script faces are applied.
The faces font-latex-superscript-face and
font-latex-subscript-face define custom :height values < 1.0.
Therefore, scripts are displayed with a slightly smaller font
than normal math text. If font-latex-fontify-script is
multi-level or invisible, the font size becomes too small to
be readable after a few levels. This option allows to specify
the maximum level after which the size of the script text won't
be shrunken anymore.
For example, see this expression:
\( x^{y^{z^a_b}} \)
x has scriptification level 0, y has level 1, z has level 2, and both a and b have scriptification level 3.
If font-latex-fontify-script-max-level was 2, then z, a, and b
would have the same font size. If it was 3 or more, then a and b
were smaller than z just in the same way as z is smaller than y
and y is smaller than x.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/font-latex.el
(defcustom font-latex-fontify-script-max-level 3
"Maximum scriptification level for which script faces are applied.
The faces `font-latex-superscript-face' and
`font-latex-subscript-face' define custom :height values < 1.0.
Therefore, scripts are displayed with a slightly smaller font
than normal math text. If `font-latex-fontify-script' is
`multi-level' or `invisible', the font size becomes too small to
be readable after a few levels. This option allows to specify
the maximum level after which the size of the script text won't
be shrunken anymore.
For example, see this expression:
\\( x^{y^{z^a_b}} \\)
x has scriptification level 0, y has level 1, z has level 2, and
both a and b have scriptification level 3.
If `font-latex-fontify-script-max-level' was 2, then z, a, and b
would have the same font size. If it was 3 or more, then a and b
were smaller than z just in the same way as z is smaller than y
and y is smaller than x."
:group 'font-latex
:type 'integer)