段落在 \gather 完成之前结束错误消息

段落在 \gather 完成之前结束错误消息

此公式给出“段落在\gather完成之前结束”的错误。我该如何修复它?

\begin{gather}
\begin{split}
\frac{dVout}{dpH} & =\frac{214.4 I_{bias} L}{\lambda_p k' W \big(V_{S}- \frac{V_{Ref} -V_{chem}}{1+\frac{C WL}{A_{sen1}}}-V_{T}\big)^3 }+\\
&\frac{107.2 \big(V_{Ref} -V_{chem}\big)\big(V_{S} -\frac{V_{Ref} -V_{chem}}{1+\frac{C WL}{A_{sen2}}}-V_{T}\big)^2 \big(\frac{1}{1+\frac{C WL}{A_{sen1}}}-\frac{1}{1+\frac{C WL}{A_{sen2}}}\big) } {\lambda_p\big(V_{S} -\frac{V_{Ref} -V_{chem}}{1+\frac{C WL}{A_{sen1}}}-V_{T}\big)^3}
\end{split}
\end{gather}

答案1

一些建议:

  • 您不能split在 内部使用gather。请使用alignequation代替gather。更好的方法是使用单一multline环境。

  • 有些括号需要大于\big。使用\Big或甚至\bigg

  • 使用\mathit\mathrm来表示字母组合,例如“bias”和“chem”。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\begin{document}

\begin{multline}
\frac{d\mathit{Vout}}{d\mathit{pH}} 
=\frac{214.4 I_{\mathit{bias}} L}{\lambda_p k' W \Bigl(V_{S}- \frac{V_{\mathit{Ref}} -V_{\mathit{chem}}}{1+
\frac{\mathit{CWL}\mathstrut}{A_{\mathit{sen}1}}}-V_{T}\Bigr)^{\!3\mathstrut} }\\
+\frac{107.2 \bigl(V_{\mathit{Ref}} -V_{\mathit{chem}}\bigr)\Bigl(V_{S} -\frac{V_{\mathit{Ref}} 
-V_{\mathit{chem}}}{1+\frac{\mathit{CWL}\mathstrut}{A_{\mathit{sen}2}}}-V_{T}\Bigr)^{\!2} 
\Bigl(\frac{1}{1+\frac{\mathit{CWL}\mathstrut}{A_{\mathit{sen}1}}}
-\frac{1}{1+\frac{\mathit{CWL}\mathstrut}{A_{\mathit{sen}2}}}\Bigr) } 
{\lambda_p\Bigl(V_{S} -\frac{V_{\mathit{Ref}} -V_{\mathit{chem}}}
{1+\frac{\mathit{CWL}\mathstrut}{A_{\mathit{sen}1}}}-V_{T}\Bigr)^{\!3\mathstrut}}
\end{multline}

\end{document}

相关内容