打破冗长的数学等式,保持其美感

打破冗长的数学等式,保持其美感

我想复制以下等式 在此处输入图片描述

不幸的是,以下 MWE 似乎不起作用,因为:(i)我无法在数学模式下写出括号 ({}) 符号;(ii)因为我不知道如何打破等式并保持其美感。

 \documentclass[]{article}
\usepackage{amsmath}
\begin{document}
\section{Equations}
\begin{equation}
PMV=0.303e^{-0.036M}+0.028\Bigg[(W-M)-3.05.10^{-3}[5733-6.99(M-W)-p_{a}]-0.42[(M-W)-58.15]
-1.7.10^{-5}M(5867-p_{a})-0.0014M(34-t_{a}) 
-3.96.10^{-8}.f_{cl}[(t_{cl}+273)^{4}-(\overline{t_{r}}+273)^4]-f_{cl}.h_{c}(t_{cl}-t_{a})
\Bigg]
\end{equation}
\end{document}

我怎样才能复制上述等式?

答案1

我在括号中的术语中稍微压缩了运算符间距

在此处输入图片描述

我认为这符合您的要求,尽管布局对我来说似乎有点令人困惑,但如果我正确理解它的含义,那么不要使用大括号并让术语在外层包裹几行会更清楚。

 \documentclass[]{article}
\usepackage{amsmath}
\begin{document}
\section{Equations}
\begin{multline}
\mathit{PMV}=0.303e^{-0.036M}+0.028\\
\Biggl[\medmuskip=2mu
\begin{gathered}
(W-M)-3.05.10^{-3}[5733-6.99(M-W)-p_{a}]-0.42[(M-W)-58.15]\\
-1.7.10^{-5}M(5867-p_{a})-0.0014M(34-t_{a})\\
-3.96.10^{-8}.f_{cl}[(t_{cl}+273)^{4}-(\overline{t_{r}}+273)^4]-f_{cl}.h_{c}(t_{cl}-t_{a})
\end{gathered}
\Biggr]
\end{multline}
\end{document}

答案2

我提出了另一种解决方案,使用Bmatrix环境`mathtools 和各种小的改进:

\documentclass[]{article}
 \usepackage{amsmath,mathtools, nccmath}
\usepackage{siunitx}


\begin{document}

\section{Equations}

\begin{fleqn}\sisetup{exponent-product =\,}
\begin{equation}
\begin{aligned}
 & PMV =0.303\,e^{-0.036M}+0.028 \times{}\\
 &\mathrlap{\begin{Bmatrix}(W-M)-\num{3.05 e-3}[5733-6.99(M-W)-p_{a}] \\
\mkern-5mu -0.42[(M-W)-58.15]-\num{1.7 e-5}M(5867-p_{a})-\num{1.4e-4} M(34-t_{a})\!\! \\
-\num{3.96 e-8}.f_{cl}[(t_{cl}+273)^{4}-(\overline{t_{r}}+273)⁴]-f_{cl}.h_{c}(t_{cl}-t_{a})
\end{Bmatrix}}
\end{aligned}
\end{equation}
\end{fleqn}

\end{document} 

在此处输入图片描述

相关内容