[Tex/LaTex] phantom and parentheses in multiline equation

bracketsequations

When I have a multiline equation enclosed by parentheses, that I want to split, why is the brackets command inside the phantom one, not recognised by the right bracket command? For example, if I have

\begin{equation}
    \begin{split}
        A  = & \left( a + B + \right. \\
             & \phantom{\left(} + c + d \right)
    \end{split}
\end{equation}

I get an error, but if I just use left. instead of \phantom{left(}, everything is fine (I'm trying to make some space to simulate the parentheses)

Best Answer

There are \big, \Big, \bigg, and \Bigg:

\begin{equation}
    \begin{split}
        A  = {} & \Big( \frac{a}{3} + B + {} \\
               &  + c + d \Big)
    \end{split}
\end{equation}

enter image description here