[Tex/LaTex] Phantom width of binary operator

math-modemath-operators

Using beamer. Let's say I want to write A+B but with the plus invisible in one slide and visible in the next one. I think I read somewhere that more space is left normally around the + for being a binary operator. It seems to be that A\phantom{+}B leaves only the space of the sign +. How can I get all the space I need.

Best Answer

Need to add additional {} which emulate a binary operator as TeX thinks there is something on either side of the +:

$A\phantom{{}+{}}B$
Related Question