减少大括号或方括号

减少大括号或方括号

我正在使用\left[\right]围绕一个也具有的数学公式\underbrace

\begin{equation}
\sum\limits_{i=1}^{Nc}{\left[\frac{\partial \dot{m}_{i}}{\partial z}\hat{h}_{i} + \dot{m}_{i}\underbrace{\frac{\partial \hat{h}_{i}}{\partial T}}_{c_{p i}}\frac{\partial T}{\partial z} \right]}dz  
\end{equation}

括号中还包括我并不需要的下括号及其文字。

我怎样才能让它们变小?

我在用

\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}    
\usepackage{graphicx}
\usepackage{indentfirst}
\usepackage{url}
\usepackage{color}
\usepackage{cancel}
\usepackage{float}
\numberwithin{equation}{section}

答案1

正如 @egreg 所建议的,您可以强制分隔符的大小。我还建议使用\underbracket(from mathtools) 而不是\underbrace这里:在我看来,对于公式的小部分, \underbrace 看起来不太好。使用 \underbracket,您可以调整线粗细和括号高度:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{mathtools}

\numberwithin{equation}{section}

\begin{document}
\setcounter{section}{3}
\begin{equation}
\sum\limits_{i=1}^{Nc}{\biggl[\frac{\partial \dot{m}_{i}}{\partial z}\hat{h}_{i} + \dot{m}_{i}\underbracket[0.4pt][2pt]{\frac{\partial \hat{h}_{i}}{\partial T}}_{c_{p i}}\frac{\partial T}{\partial z} \biggr]}dz
\end{equation}

\end{document} 

在此处输入图片描述

相关内容