I want to put some limit equations in a table but all I get are errors such as "! Missing $ inserted." and "! You can't use `\eqno' in math mode.". Am I doing something wrong or is there another way to do this. This is what I have:
\begin{tabular}{| l |} \hline
Text is here\\
\begin{equation}
\lim_{n\to \infty} (x_n + y_n) = a + b
\end{equation}\\
Text is here\\ \hline
Text is here\\
\begin{equation}
\lim_{n\to \infty} (x_n \cdot y_n) = a \cdot b
\end{equation}\\ \hline
\end{tabular}



\parbox, take a look atmdframed, e.g. http://tex.stackexchange.com/questions/36524/how-to-put-a-framed-box-around-text-math-enviroment/36528#36528 for a solution that allows page breaks. – Torbjørn T. Jan 04 '14 at 15:22