I have the following long equations:
\documentclass[]{article}
\usepackage{amsmath}
\begin{document}
\begin{displaymath}
\begin{aligned}
(\chi_1|\chi_1)
&=\frac{1}{24}\left(\left(\chi_1(1)\right)^2+\left(\chi_1(b^2)\right)^2+2.\left(\chi_1(a)\right)^2+2.\left(\chi_1(a^3)\right)^2+2.\left(\chi_1(a^5)\right)^2+2.\left(\chi_1(a^2)\right)^2+2.\left(\chi_1(a^2b^2)\right)^2+6.\left(\chi_1(b)\right)^2+6.\left(\chi_1(ab)\right)^2\right)\\
&=\frac{1}{24}\left(\left(Sp(I_2)\right)^2+\left(Sp(B^2)\right)^2+2.\left(Sp(A_1)\right)^2+2.\left(Sp({A_1}^3)\right)^2+2.\left(Sp({A_1}^5)\right)^2+2.\left(Sp({A_1}^2)\right)^2+2.\left(Sp({A_1}^2B^2)\right)^2+6.\left(Sp(B)\right)^2+6.\left(Sp(A_1B)\right)^2\right)\\
\end{aligned}
\end{displaymath}
\end{document}
I'd like to break the equations and keep the "=" aligned.
I tried this:
\documentclass[]{article}
\usepackage{amsmath}
\begin{document}
\begin{displaymath}
\begin{aligned}
(\chi_1|\chi_1)
&=\frac{1}{24}\left(\left(\chi_1(1)\right)^2+\left(\chi_1(b^2)\right)^2+2.\left(\chi_1(a)\right)^2+2.\left(\chi_1(a^3)\right)^2+2.\left(\chi_1(a^5)\right)^2+2.\left(\chi_1(a^2)\right)^2\\
& +2.\left(\chi_1(a^2b^2)\right)^2+6.\left(\chi_1(b)\right)^2+6.\left(\chi_1(ab)\right)^2\right)\\
&=\frac{1}{24}\left(\left(Sp(I_2)\right)^2+\left(Sp(B^2)\right)^2+2.\left(Sp(A_1)\right)^2+2.\left(Sp({A_1}^3)\right)^2+2.\left(Sp({A_1}^5)\right)^2+\\
& 2.\left(Sp({A_1}^2)\right)^2+2.\left(Sp({A_1}^2B^2)\right)^2+6.\left(Sp(B)\right)^2+6.\left(Sp(A_1B)\right)^2\right)\\
\end{aligned}
\end{displaymath}
\end{document}
But that ruins my bracket structure. In the end, I'd like to have something like this (of course the brackets don't have the correct height in the image):

Mind that the second part of the equation has to start from the first big bracket.
How can I do this?



\left,\rightpairs of delimiter work over multiple lines? Though in your case, I’d just use[and]in their natural case, no need for\leftand\rightreally. – Qrrbrbirlbel Nov 01 '13 at 15:43equation(orequation*) with thesplitenvironment. – Qrrbrbirlbel Nov 01 '13 at 15:53