修复上括号和下括号内容相对于大括号的间距

修复上括号和下括号内容相对于大括号的间距

考虑 MnWE 的代码:

\documentclass{article}
\usepackage{physics}
\usepackage{mathtools}
\usepackage{amsmath}


\begin{document}

    \begin{equation}
        \norm{f - L}_{\infty} = \overbrace{\abs{\frac{K_2}{2}}}^{\mathclap{\text{worst $f''(x)$ over all subintervals}}}\left(\underbrace{\frac{h}{2}}_{\mathclap{\text{worst (b - a)}}}\right)^2
    \end{equation}

\end{document}

输出结果如下:

在此处输入图片描述

解决文本冲突的正确方法是什么?

答案1

只需将所有左/右括号和指数移到下括号参数中即可:

\documentclass{article}
\usepackage{physics}
\usepackage{mathtools}
\usepackage{amsmath}


\begin{document}

    \begin{equation*}
        \norm{f - L}_{\infty} = \overbrace{\abs{\frac{K_2}{2}}}^{\mathclap{\text{worst $f''(x)$ over interval}}}\underbrace{\left(\frac{h}{2}\right)^2}_{\mathclap{\text{worst (b - a)}}}
    \end{equation*}

\end{document}

在此处输入图片描述

这也修复了左/右括号的奇怪尺寸。

相关内容