How can I put the dots in the middle of the last line? The following doesn't work.
\documentclass{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{amsmath,mathtools}
\begin{document}
\begin{align*}
a&=a+a+a+a+a\\
a&=a+a+a+a+a+a+a+a+a+a\\
\vdotswithin{a=a+a+a+a+a+a+a+a+a+a}
\end{align*}
\end{document}
Thank you!


\ldotsshould do the trick on its own line. – Sean Roberson Sep 14 '16 at 16:23&\vdotswithin{=}.\vdotswithinjust aligns the dots in the middle of the witdth of the argument, that way, after the alignment point&you are aligning the dots to the middle of the equal sign width. – Manuel Sep 14 '16 at 16:24\sbox0{$a$} \kern-\wd0before your\vdotshwithin{..}. – Manuel Sep 14 '16 at 16:26