PDA

View Full Version : Multi-line Equation in Latex


S_David
May27-09, 08:46 AM
Hello,
In a multi-line equation in latex, how to open a bracket at a line and end it at another line?
Regards

minger
May27-09, 08:49 AM
You use periods after braces to indicate a "false" starting or ending. You would do something like this:

\begin{equation}
\begin{split}
x =& \left( here is some equation \right. \\
& \left. here is the rest \right)
\end{split}
\end{equation}

S_David
May28-09, 05:38 AM
You use periods after braces to indicate a "false" starting or ending. You would do something like this:

\begin{equation}
\begin{split}
x =& \left( here is some equation \right. \\
& \left. here is the rest \right)
\end{split}
\end{equation}


It does work. Thank you very much minger.
Regards