This error is not caused by split but by
\left<delim> ... \right<delim>
. They cannot be split over lines! I'd suggest using combinations of
\bigl<delim> ... \bigr<delim>
and similar commands. Although the don't scale automatically they
can be used across line breaks. Alternatively you could use the invisible delimiter
.
going something like
\left( <formula> \right. \\ \left. <formula>\right)
but in this case in can happen that you end up with differently scaled brackets.
Just as an information: there is also the
{multline}
environment which probably is the better choice here:
Code: Select all
\documentclass[twocolumn]{article}
\usepackage{amsmath}
\usepackage{lipsum}% dummy text
\begin{document}
\lipsum[1]
\begin{equation}
\begin{split}
R' =
\frac
{1}{n}
\Biggl[
\sum_{i=1}^n b_i
+s
\biggl(
s\sum_{i=1}^n a_i^2
-2
\sum_{i=1}^n a_i b_i
-s\sum_{i=1}^n \cdot a_i \\
+2
o
\sum_{i=1}^n a_i
\biggr)
+
o
\biggl(
no
-2\sum_{i=1}^n b_i
\biggr)
\Biggr]
\end{split}
\end{equation}
\lipsum[1-2]
\begin{multline}
R' =
\frac
{1}{n}
\Biggl[
\sum_{i=1}^n b_i
+s
\biggl(
s\sum_{i=1}^n a_i^2
-2
\sum_{i=1}^n a_i b_i
-s\sum_{i=1}^n \cdot a_i \\
+2
o
\sum_{i=1}^n a_i
\biggr)
+
o
\biggl(
no
-2\sum_{i=1}^n b_i
\biggr)
\Biggr]
\end{multline}
\lipsum[3-4]
\end{document}
Regards