I am attempting to align some equations using a align environment.
However it seems that when I try to make empty cells it fails to align properly
How do I properly have a empty cell in a align environment?
Here is a sample of what I am trying to do:
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\begin{equation*}
\begin{aligned}
(a,1)+(b,1) & &= (a+b,1) \\
((a,1)+(b,1)) &\cdot(1,c)&= (a+b,1)\cdot(1,c) \\
(a,1)\cdot(1,c)+(b,1)\cdot(1,c) & &= (a+b,c) \\
(a,c)+(b,c) & &= (a+b,c)
\end{aligned}
\end{equation*}
\end{document}



splitonly allows one alignment point. Perhaps you need some form ofaligned. – Steven B. Segletes Mar 28 '17 at 18:54alignedstill has a problem, albeit not a compilation error, so I have changed the question. – Sriotchilism O'Zaic Mar 28 '17 at 19:01alignandalignatenvironments – barbara beeton Mar 28 '17 at 21:10