I wish to get larger parens than \Biggl(\Biggr) with NewTX fonts. However, following https://tex.stackexchange.com/a/387592 and feeding pdflatex with
\documentclass{standalone}
\usepackage{newtxtext}
\usepackage[slantedGreek,subscriptcorrection]{newtxmath}
\makeatletter
\newcommand{\biggg}{\bBigg@\thr@@}
\newcommand{\Biggg}{\bBigg@{3.5}}
\def\bigggl{\mathopen\biggg}
\def\bigggm{\mathrel\biggg}
\def\bigggr{\mathclose\biggg}
\def\Bigggl{\mathopen\Biggg}
\def\Bigggm{\mathrel\Biggg}
\def\Bigggr{\mathclose\Biggg}
\makeatother
\begin{document}
\(\bigggl(\Biggl(\biggl(\Bigl(\bigl(()\bigr)\Bigr)\biggr)\Biggr)\bigggr)\)
\end{document}
we get
As you see, there is no difference between \bigggl( and \Biggl(, and there is no difference between \Biggr) and \bigggr). The parens do not get larger. Why? What to do?


{3.5}instead ofthr@@and{4}instead of{3.5}. – hair-splitter Jul 07 '22 at 06:27