Here I am, trying to display an equation that takes way too long for one line, so I called multline.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{amssymb,amsmath}
\usepackage{amsfonts}
\geometry{a4paper}
\begin{document}
\begin{multline}
S_E=\int \mathrm{d}t \left[\frac{(f'\dot{\xi})^2}{2} \int \mathrm{d}x(\phi_0+1)^2+\frac{f^2}{2}\int \mathrm{d}x \phi'^2\\
+ \int \mathrm{d}x (\psi^2-1)^2(\psi^2-\delta_1)
+ \frac{1}{\gamma+\psi^2}\left[\left(f^2(\phi_0^2+1)-2f(\phi_0+1)\right)^2-\frac{\delta_2{4}(f(\phi_0+1)-3)(f(\phi_0+1))^2\right]\right] \\
\label{actionrescale}
\end{multline}
\end{document}
However, if I called \begin{equation} and \end{equation} instead of \begin{multline} and \end{multline} the equation would show up just fine (or at least as much of it that could fit on the resulting pdf file). What exactly is wrong with this document?

\left[ ... \right]over multiple lines, use e.g.\biggl[and\biggr]instead. – Torbjørn T. Jul 04 '14 at 21:57