I am in the situation where I want delimiters that are bigger that \big, but smaller than \Big (see example).
\documentclass{article}
\usepackage{mathtools}
\usepackage[libertine]{newtxmath}
\begin{document}
\[\Bigl(\bigl(\text{some formula}\bigr)\Bigr)\]
\end{document}
With newtxmath, the outside delimiters are a lot bigger than the
\bigdelimters inside, but I want them only slightly bigger. scalebox from the graphicxpackage doesn't seem to be satisfactory.
newtxmathfor me. – Pete Sep 24 '18 at 15:51scalerelapproach takes the given glyph and either scales or stretches is, which is a different approach than the\bigg, etc. approach. But the scalerel macros also allow constraints (max width in case of scaling and min-aspect ration in the case of stretching). So for example, try this with SUPPLEMENT code:\newcommand\Comp[2][500]{\stretchleftright[#1]{\biggl(}{\addstackgap[.4pt]{#2}}{\biggr)}}, then,p\Comp{ q\Comp{ f\Comp{g\Comp{\displaystyle\frac{f}{f}} } } }as well asp\Comp{ q\Comp{ f\Comp{g\Comp{h(x)} } } }look good. – Steven B. Segletes Sep 24 '18 at 16:04