I would like to do the closest thing there is to opening an align* environment inside another align* environment. In other words: it would be great if there were an environment, call it Align, that allows you to use to symbols to align equations in math mode using a specified number of aligning symbols &1, &2, ..., &n. For example something that works like this:
\begin{Align*}[2] &1 1=1 \\ &1 4 &2= 2+2 \\ &2 = 1+1+1+1 \\ &1 7 = 7 \end{Align*}
which I would want to look like
1 = 1
4 = 2+2 =
= 1+1+1+1
7=7
Does there exist such an environment?
I tried looking in this guide but I couldn't find anything, and I'm just a beginner... thanks for any help!

alignat. – Ian Thompson May 03 '12 at 19:49\begin{alignat*}{3} 1 &= 1 \4 &= 2+2 &&=\ &= 1+1+1+1 &&=4\7 &=7 \end{alignat*}yield what you are looking for? – Peter Grill May 03 '12 at 20:12texdoc amsmathin a terminal to get theamsmathdocumentation. Following the link that Ian Thompson provided in his comment, you will also find (at the bottom of the page) links to theamsmath's documentation in several languages. – Gonzalo Medina May 03 '12 at 20:23