I find that I have unpleasant spacing between the equals sign and (e.g.) the exponential function in this particular case, while using the align environment. I have a long expression which has to be split up in multiple rows. The alignment character & appears to gobble up all space when it comes after the equals sign. How could I remedy this while still preserving the plus sign alignment below?
Ideally, I would like to have the second row from the first equation, and the first row from the second equation.

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align} % bad spacing at first row, but correctly placed second row
2 \cosh t =& e^t \\
&+ e^{-t}
\end{align}
\begin{align} % good spacing at first row, but incorrectly placed second row
2\cosh t &= e^t \\
&+ e^{-t}
\end{align}
\end{document}






=sign, one must write&=rather than=&. – Mico Nov 17 '14 at 13:50