In using the align* environment, how can I get specific numbers to align with each other?
In the following example, I want each term of the top sum and the bottom sum to be aligned with each other:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
2S &= 1 &+ 2 &+ 3 &+ \ldots &+ (N-2) &+ (N-1) &+ N \\
&= N &+ (N-1) &+ (N-2) &+ \ldots &+ 3 &+ 2 &+ 1
\end{align*}
\end{document}
Currently, this looks ugly:




