此公式给出“段落在\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
。请使用align
或equation
代替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}