特殊对齐

特殊对齐

在此处输入图片描述

有人能告诉我如何才能有效地进行这种对齐吗?我在数组中尝试了几种方法,但没有找到方法。

答案1

要么multline(但我会避免) 要么split

\documentclass{article}
\usepackage[tbtags]{amsmath}

\begin{document}

The multline version
\begin{multline}
II^2\le
  \int_{2\theta(j-5)r^{}_{\!B}}^{\infty}
  \int_X
  \bigl|\bigl(
    t^{2(M+1)}L^{M+1}e^{-t^2L}b
  \bigr)(y)\bigr|^{2}
  \,d\mu(y)\frac{dt}{t^{4M+1}}
\\
\le
  C(2^{\theta j}r^{}_{\!B})^{-4M}
  \lVert b\rVert_{L^{2}(X)}^{2}
\le
  C\cdot 2^{-j(4\theta M-n_{0})}\cdot 2^{-jn_{0}}V(B)^{-1}
\\
\le
  C\cdot 2^{-j(4\theta M-n_{0})}V(2^{j}B)^{-1}
\end{multline}
and the split version
\begin{equation}
\begin{split}
II^2&\le
  \int_{2\theta(j-5)r^{}_{\!B}}^{\infty}
  \int_X
  \bigl|\bigl(
    t^{2(M+1)}L^{M+1}e^{-t^2L}b
  \bigr)(y)\bigr|^{2}
  \,d\mu(y)\frac{dt}{t^{4M+1}}
\\[.5ex]
&\le
  C(2^{\theta j}r^{}_{\!B})^{-4M}
  \lVert b\rVert_{L^{2}(X)}^{2}
\\[1ex]
&\le
  C\cdot 2^{-j(4\theta M-n_{0})}\cdot 2^{-jn_{0}}V(B)^{-1}
\\[1ex]
&\le
  C\cdot 2^{-j(4\theta M-n_{0})}V(2^{j}B)^{-1}
\end{split}
\end{equation}
\end{document}

注意我所做的一些改进:没有\left\right一些调整r下标。

在此处输入图片描述

相关内容