如何防止括号过度拉伸?

如何防止括号过度拉伸?

对于如下的长方程,使用简单的()会给出太小的括号,而使用\left(\right)会给出大得离谱的括号:

在此处输入图片描述

a+b\left(\underbrace{\sum_{i=1}^{n}f_i(x)}_{h(x)} +g(x)\right )

我需要以某种方式拉伸括号,以考虑到我的方程式可能不会均匀分布在垂直空间中 - 例如上述情况非常底部沉重。

如何实现这一点?

答案1

尝试 \big、\Big、\bigg、\Bigg 变体:

\big(\underbrace{\sum_{i=1}^{n}f_i(x)}_{h(x)} +g(x)\big)

答案2

如果不依赖amsmath包,请使用nath

\documentclass[margin=5mm]{standalone}
\usepackage{nath}

\begin{document}
\begin{equation*}
a+b\left(\underbrace{\sum_{i=1}^{n}f_i(x)}_{h(x)} +g(x)\right )
\end{equation*}

\end{document}

在此处输入图片描述

相关内容