Is there a way to make very long equation multiline so it doesn't stretch the table very long?
+1
A:
You can break the equation with the split
environment:
\begin{equation}
\begin{split}
x &= a + b \\
\quad + c + d \\
&= x \cdot y \cdot z
\end{split}
\end{equation}
Joey
2009-12-02 07:33:31
+1
A:
Use a p{<length>}
type column to wrap the cell contents into a paragraph. Or used aligned
, etc., from amsmath to create a boxed multiline math expression.
Will Robertson
2009-12-04 04:09:39