如何使用换行符固定多行方程中第三个括号的大小?

如何使用换行符固定多行方程中第三个括号的大小?

方程:

\documentclass[12pt]{article}
\usepackage{mathtools}
\begin{document}
    \begin{eqnarray}
    \langle\pi_n|\hat{H}^{ab}|\pi_m\rangle & =& \Delta_{nm} g\int d^3x|\Psi_p(x-r_m)|^2\left\{|\phi_0(x)|^2+
    \sum_{q=1}^{N}\left[\hat{b}_q\left(a\phi_0^*(x)-a\phi_0(x)\right)\right.\right.\\
    & & +\left.\left. \phi*a*a*a-\phi^*_0(x)v^*_q(x)\right]\right\}
    \end{eqnarray}
\end{document}

等式末尾的第三个括号与第一行中使用的括号的大小不同。

答案1

解决方案是遵循 daleif 给出的建议并使用\Big构造函数。我在下面给出了一个例子,避免使用可怕的eqnarray

\documentclass[12pt]{article}
\usepackage{mathtools}
\begin{document}
    \begin{equation}
    \begin{aligned}
   \langle \pi \dots \rangle  ={} &\Delta_{nm} g \dots \Biggl\{ \phi \dots \Bigl( \phi \\ 
  & + \phi \Bigr) \phi \Biggr\}
    \end{aligned}
    \end{equation}
\end{document}

分隔符位于不同的行上,但大小相同。

在此处输入图片描述

相关内容