- #1
- 1,367
- 61
Hello,
In a multi-line equation in latex, how to open a bracket at a line and end it at another line?
Regards
In a multi-line equation in latex, how to open a bracket at a line and end it at another line?
Regards
\begin{equation}
\begin{split}
x =& \left( here is some equation \right. \\
& \left. here is the rest \right)
\end{split}
\end{equation}
You use periods after braces to indicate a "false" starting or ending. You would do something like this:
Code:\begin{equation} \begin{split} x =& \left( here is some equation \right. \\ & \left. here is the rest \right) \end{split} \end{equation}