\begin{equation}
\eta_{TEG}=\frac{P_{elec}}{\dot{\mathrm{m}} C_{p ex}\left(T_{in}-T_{out})\right}
\label{eq:tege}
\end{equation}
答案1
你写
\left(...)\right
但正确的语法是
\left(...\right)
然而,在您的特定情况下,这种括号的重新缩放是完全没有必要的。
\documentclass{article}
\begin{document}
\begin{equation}
\eta_{\mathrm{TEG}}=\frac{P_{\mathrm{elec}}}{\dot{\mathrm{m}} C_{p\,\mathrm{ex}}\left(T_{\mathrm{in}}-T_{\mathrm{out}}\right)}
=\frac{P_{\mathrm{elec}}}{\dot{\mathrm{m}} C_{p\,\mathrm{ex}}(T_{\mathrm{in}}-T_{\mathrm{out}})}
\label{eq:tege}
\end{equation}
\end{document}
顺便说一句,我已将大部分下标设为\mathrm
,但没有足够的上下文来判断 是否适合C_{p ex}
。如果此下标中确实有空格,那么您可能也希望\,
在 之前留一个细空格C
。