VPhantom 在 overleaf 中不起作用

VPhantom 在 overleaf 中不起作用

我尝试使用vphantom{...}并且 overleaf 不接受breaqn包,所以我仍然有疑问:

我有以下公式,但出现无法修复的错误。这到底是什么问题?

 \begin{equation}
 \begin{split}
     \psi(x)=\sum_{j=1}^l\sum_{v=0}^{m_j-1}U_v(x,\mu)V_{m_j-1-v}(\psi,\mu)\left|_{\mu=\mu_j}\\
     +\int_{-\infty}^{\infty}\frac{\sqrt{\mu}}{\pi\alpha(\sqrt{\mu})\alpha(-\sqrt{\mu})}\left\{e^+(x,\sqrt{\mu})e^+(\psi,-\sqrt{\mu})\\+e^-(x,\sqrt{\mu})e^-(\psi,\sqrt{-\mu})\right\}d\mu
  \end{split}
 \end{equation}

序言如下:

\documentclass{article}
\usepackage{hyperref}
\usepackage{amssymb}
\usepackage{MnSymbol}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\newcommand{\norm}[1]{\left\lVert#1\right\rVert}
\newcommand{\R}{\mathbb{R}}
\newcommand{\C}{\mathbb{C}}
\newcommand\Setst[3][big]{\csname #1l\endcsname\{ #2 : 
  \begin{array}[t]{@{}l@{}}#3\csname #1r\endcsname \}\end{array}}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{mathtools}
\usepackage[mathscr]{euscript}
\usepackage{mathrsfs}
\usepackage{yfonts}
\usepackage{setspace}
    \doublespacing
\usepackage{imakeidx}
\makeindex[columns=1, title=Alphabetical Index]


\newcommand{\footremember}[2]{%
    \footnote{#2}
    \newcounter{#1}
    \setcounter{#1}{\value{footnote}}%
}
\newcommand{\footrecall}[1]{%
    \footnotemark[\value{#1}]%

背面的评论是:

 Extra }, or forgotten \right.
    Missing \right. inserted.
    Missing } inserted.
    Extra \right.
    Missing { inserted.
    Thanks

方程式

答案1

请始终发布完整的文档。正如您之前的问题评论中所述,您不能在对齐的单元格中使用\leftand ;而应使用and 。\right\Bigl\Bigr

此外,由于您正在使用split环境,请插入&对齐点(每行一个)。如果您不提供对齐点,则所有行都将排版为右对齐 - 这可能不是您想要的。

这确实是重复的,但我回答是因为您没有关注以前的重复引用。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath} % for "split" environment
\begin{document}
\begin{equation}
  \begin{split}
     \psi(x) &=\sum_{j=1}^l \sum_{v=0}^{m_j-1} U_v(x,\mu) 
       V_{m_j-1-v}(\psi,\mu) \biggr|_{\mu=\mu_j}\\
     &\quad +\int_{-\infty}^{\infty}
       \frac{\sqrt{\mu}}{\pi\alpha(\sqrt{\mu})\alpha(-\sqrt{\mu})}
       \Bigl\{  e^+(x,\sqrt{\mu})e^+(\psi,-\sqrt{\mu})\\
     &\qquad +e^-(x,\sqrt{\mu})e^-(\psi, \sqrt{-\mu}) 
       \Bigr\} d\mu
  \end{split}
\end{equation}
\end{document}

相关内容