Consider the result produced by:
\begin{align}
a & = b + c + d \\
& + e + f + g
\end{align}
I want a similar result when I put \left( and \right) such as:
\begin{align}
a & = \left( b + c + d \\
& + e + f + g \right)
\end{align}
where \left( starts on first line and its brother \right) is on a different line.
how to achieve that? LaTeX is unable to connect \left( and \right) when they are on multiple lines.
EDIT: I want this because my actual equation is really long and has \left ( on the first line and \right ) on a different line.
alignand similar display environments is equivalent (for this purpose) to an\mbox--\leftand the matching\rightmust both be in the same "box", like the opening and closing of a group. You have them separated by&, which is not permitted. See Using\left(&\right)aroundamsmath'saligndelimiter (“&”) – barbara beeton Mar 24 '20 at 02:02\left( ... \right. & \left. ... \right). But it's better to use a matching pair of the "big" modifiers, e.g.\bigl( ... & ... \bigr). This is pretty basic, so I recommend checking out some good basic documentation; see What are good learning resources for a LaTeX beginner? – barbara beeton Mar 24 '20 at 03:06