编译时此代码块出现错误。
\begin{equation}
\begin{aligned}
MSE\left(\mu_r\right)={} &\bar{Y}^2\left[\ {f_1}\left\lbrace C_Y^2+\frac{C_X}{\theta}_X{a_h^2}(1)+2\rho_{XY}C_XC_Ya_h(1)\right\rbrace\\
&+\theta\left\lbrace\frac{C_{Y(2)}^2}{\theta}_{Y(2)}+\frac{C_{X(2)}^2}{\theta}_{X(2)}a_h^{*2}(1)+2\rho_{XY(2)}C_{X(2)}C_{Y(2)}a^*_{h(1)}\right\rbrace\right]
\end{aligned}
\end{equation}
请帮我找出这个问题。
答案1
主要问题是 TeX 和 LaTeX 不允许\left[
/\right]
对跨越换行符。请使用\biggl[
and\biggr]
代替。并且,为了确保花括号与方括号大小相同,请在两行中使用\biggl\lbrace
and 。\biggr\rbrace
我还想建议您使用multline
环境而不是equation
/aligned
对。这将确保第二行的内容适合文本块。
\documentclass{article}
\usepackage{amsmath} % for 'multline' environment
\begin{document}
\begin{multline}
\mathrm{MSE}(\mu_r)
=\bar{Y}^2\biggl[ f_1 \biggl\lbrace
C_Y^2+ \frac{C_X}{\theta}_X a_h^2(1)
+2\rho_{XY} C_X C_Y a_h(1)
\biggr\rbrace \\[1ex]
+\theta \biggl\lbrace
\frac{C_{Y(2)}^2}{\theta}_{Y(2)}
+\frac{C_{X(2)}^2}{\theta}_{X(2)} a_h^{*2}(1)
+2\rho_{XY(2)}C_{X(2)}C_{Y(2)}a^*_{h(1)}
\biggr\rbrace \biggr]
\end{multline}
\end{document}