tags:

views:

129

answers:

2

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
+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