I can't seem to get consistent behavior with the proof environment and QED symbol in the latest SIAM document class, in particular with the eqnarray and equation environments. My MWE requires some interactivity, so please read it. My question is only partially answered by this post.
\documentclass[]{siamart1116}
\begin{document}
I would really love a QED symbol to show up at the end, without having to abandon the proof environment or do something annoying by hand every time.
\begin{proof}
\begin{eqnarray*}
A
& = & B \\
& = & C \\
& = & D. \mbox{ end of proof!}
\end{eqnarray*}
\end{proof}
Some words and thoughts on that earth-shattering result. Oops, but as a clueless reader who skipped the proof, I have no idea where the post-proof discussion begins! \\
The equation environment seems ok, but sometimes the QED symbol shows, and sometimes it doesn't. Right now it seems to show.
\begin{proof}
Since $A = B = C = D$, then it's probably also true that
\begin{equation}
A = E.
\end{equation}
\end{proof}
Now comment out the middle proof, and just run with this one. We're back to weirdness.
\begin{proof}
Hell, I bet
\begin{equation}
E = F = G = H...
\end{equation}
i.e., that the whole flippin' alphabet is equal.
\end{proof}
\end{document}



eqnarrayshould never be used. – egreg Dec 17 '17 at 21:09