While I was trying to improve my latest document with respect to its \qed symbols at the end of amsthm's proof environment i came across an interesting point. Assume the proof ends with some formula, that is finally representing the form the lemma/theorem proposes.
Something like
\documentclass{scrartcl}
\usepackage[fleqn]{amsmath}
\usepackage{amsthm,amstext,amsfonts,bm,amssymb}
\begin{document}
\begin{proof}
...
\begin{equation}
\begin{split}
A&= B \\
&= C\\
&= D&\qedhere
\end{split}
\end{equation}
\end{proof}
\end{document}
While using \qedhere just in equation or align would put the symbol below any number (or at least to that side for euqation*), here the symbol is placed far to the left, even with using the additional column with &. Putting it after \end{split} would center it vertically with respect to the three columns, so my question is
How can I get the \qed symbol to the bottom right (text border) of an (equation-)split environment?
Where I would prefer a global solution for all splits where I mention \qedhere at the end.


asmthmtag, just to be sure. – daleif Mar 11 '13 at 13:14amstextandamsfontsare not needed in your package list, they are automatically loaded byamsmathandamssymb. – daleif Mar 11 '13 at 13:14bmis also not neccessary, i noticed already :) – Ronny Mar 11 '13 at 13:15