Below I wrote a code using the grid package showing:
- When the fontsize is 20 the height of the parenthesis is 20 points, which is what we expect.
- When the fontsize is 40 the height of the parenthesis is around 35 points, less than what we expect.
- When the fontsize is 60 the height of the parenthesis is around 35 points, much less than we expect.
So I observe a fontsize saturation meaning the actual font size remains unchanged after we put fontsize greater than 40 points. Is this a valid observation? If yes, how we make fontsize as large as 60 points?
\documentclass{book}
\fboxrule=0.1pt
\fboxsep=-\fboxrule
\usepackage{xcolor}
\renewcommand\fbox{\fcolorbox{red}{white}}
\usepackage[grid,
gridcolor=blue!60!white,
subgridcolor=green!40!white,
gridunit=pt]{eso-pic}
\newcommand{\myfont}{\usefont{T1}{cmr}{m}{n}\fontsize{20}{20} \selectfont}
\newcommand{\bigfont}{\usefont{T1}{cmr}{m}{n}\fontsize{40}{40} \selectfont}
\newcommand{\biggerfont}{\usefont{T1}{cmr}{m}{n}\fontsize{60}{60} \selectfont}
\begin{document}
\myfont \fbox{(}\fbox{a}
\bigfont \fbox{(}\fbox{a}
\biggerfont \fbox{(}\fbox{a}
\end{document}

.log. Substitutions are made for the40ptand60ptrequests, defaulting to35.83pt. That's why you see the same output in both for(a. Add\usepackage{anyfontsize}to your preamble to see the difference. – Werner Jan 27 '21 at 05:40OT1/cmss/m/n' in size <4> not available” and “Size substitutions with differences” inbeamer`?](https://tex.stackexchange.com/q/58087/5764) – Werner Jan 27 '21 at 06:49