错误:分割方程中多余 },或忘记了 \right

错误:分割方程中多余 },或忘记了 \right

这个等式有误。末尾缺少一个 ]。

\documentclass[5p,preprint,authoryear]{elsarticle}
\setcitestyle{square}
\usepackage{times}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{circuitikz}

\begin{document}


\begin{equation}
\begin{split}
\left
|B_{\mathrm{d}}\right|&=\frac{B_{\mathrm{r}}}{\pi}\left[\tan ^{-1}\left(\frac{l w}{2 d \sqrt{4 d^{2}+l^{2}+w^{2}}}\right)
\right.
\\
\left.&-\tan ^{-1}\left(\frac{l w}{2\left(t_{\mathrm{m}}+d\right) \sqrt{4\left(t_{\mathrm{m}}+d\right)^{2}+l^{2}+w^{2}}}\right)
\right] 
\end{split}
\end{equation}



\end{document}

\endinput

答案1

我已经删除了旧包times

\usepackage{times}

并且我已经用 进行了更改。在我习惯之后,当公式有拆分时,newtxtext不会出现编译错误。\Biggl\Biggr

在此处输入图片描述

\documentclass[5p,preprint,authoryear]{elsarticle}
\setcitestyle{square}
\usepackage{newtxtext}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{circuitikz}

\begin{document}


\begin{equation}
\begin{split}
\bigl|B_{\mathrm{d}}\bigr|&=\frac{B_{\mathrm{r}}}{\pi}\Biggl[\tan^{-1}\left(\frac{l w}{2 d \sqrt{4 d^{2}+l^{2}+w^{2}}}\right)\\
&-\tan ^{-1}\Biggl(\frac{l w}{2\left(t_{\mathrm{m}}+d\right)\sqrt{4\left(t_{\mathrm{m}}+d\right)^{2}+l^{2}+w^{2}}}\Biggr)
\Biggr]
\end{split}
\end{equation}

\end{document}

相关内容