I noticed some strange behavior in the align* (or just align) environment. The code
\begin{proof}
\begin{align*}
C=1 \qedhere
\end{align*}
\end{proof}`
puts overlaps the tombstone with the equation, whereas
\begin{proof}
\begin{align*}
C &=1 \qedhere
\end{align*}
\end{proof}`
properly puts the tombstone to the right.
What is causing this strange behavior? What exactly is the ampersand doing here?
alignenvironment without an&is useless; there'sgatherfor centering equations. – egreg Oct 19 '11 at 16:07align*without an&and only one equation as if it were equivalent to thedisplaymathenvironment. (This is how I noticed the strange behavior I'm asking about.) Is it somehow or incorrect or bad to usealign*asdisplaymath? – Quinn Culver Oct 19 '11 at 16:10equation*, for more non aligned equations there'sgather*;align*is for aligned equations (say at a relation symbol). Yes, it's bad to usealign*asdisplaymath. – egreg Oct 19 '11 at 16:13align*asdisplaymath). Is there a technical difference? – Quinn Culver Oct 19 '11 at 16:26align*without&doesn't work with\qedhere. :) – egreg Oct 19 '11 at 19:42