The problem
I have found that when I add a phantom{{}+{}} in an aligned environment, if this is followed by a summation symbol, the horizontal spacing is not the same as if I had actually used +.
Examples
If I vertically raise the lower symbol we can see that they are not vertically aligned.

However, they are aligned if I omit the + and the phantom

Why bother?
Because when I have a series of multi-line inequalities I don't like it when authors have the < symbols in line with multiple terms, but think it looks better when the first line is slightly indented (not required if a leading - is used). e.g.
MWE
\documentclass{extarticle}
\usepackage{amsmath,amssymb,physics}
\begin{document}
\begin{align*}
\mu(x, y) = & \phantom{{}+{}} \sum_{k=1}^{2K} \\ % \\[-3.55em]
& + \sum_{k=1}^{2K}
\end{align*}
\end{document}




phantomrel{=}. In the above example if I have several lines then this only requires a singlephantom. – oliversm Sep 19 '18 at 15:49{}at the start of the left aligned columns, and point (3). Also the shameless plug was well deserved, and I'll change my=&usage to&.... – oliversm Sep 20 '18 at 08:48{}just for clarity? (i.e. can they be removed?) – oliversm Sep 20 '18 at 08:53{}cannot be removed. This is because& = +creates an “impossible” combination: There is “no way” for a binary operator to follow a relation operator (again, by TeX’s rules), and thus this binary plus will be converted into an ordinary object, hence a unary positive. So& = +is equivalent to{} mathrel mathord. By adding an explicit{}, now we have& = {} +becoming{} mathrel {} mathbin. See my other answer. – Ruixi Zhang Sep 20 '18 at 14:13... &= & & \phantombin{+} \sum...for the first line; and& & & + \sum...for the second line). Basically,alignat*inserts an implicit{}in every second column of a right-/left-aligned pair. – Ruixi Zhang Sep 20 '18 at 14:22{}they were correctly lined up, but on comparing them to the case with the{}I can see that without them they are slightly closer to the left, as can now be expected (being treated asmathord). – oliversm Sep 20 '18 at 14:56