答案1
在这种情况下,没有任何希望能够\adjustlimits
成功。
问题有两个方面:“sup”有下降部,“inf”没有;“b”有上升部,“a”没有。
所以我给出了两个解决方案:第一个解决方案中,我使用了一个特殊的“inf”和一个人造的下降符;第二个解决方案中,我使用了一个特殊的“sup”和一个破碎的“p”。
\documentclass{article}
\usepackage{amsmath}
\makeatletter
\DeclareMathOperator*{\infd}{inf\vphantom{\operator@font p}} % inf with descender
\DeclareMathOperator*{\supx}{su\smash{\operator@font p}} % sup without descender
\makeatother
\begin{document}
\[
\sup_{a\vphantom{b}}\bigl\{\infd_{b} f(a,b)\bigr\}
\]
\[
\supx_{a\vphantom{b}}\bigl\{\inf_{b} f(a,b)\bigr\}
\]
\end{document}