The amsmath package changes the \dots command to have different vertical alignment depending on context (I'm not sure if it does anything else to it). The ellipsis package changes the \dots command to ensure correct spacing in certain textual contexts. However, it seems to undo the changes made by amsmath. Is there a way to make the features work simultaneously?
The following is an mwe:
\documentclass[a4paper]{book}
\usepackage{amsmath}
\usepackage{ellipsis}
\begin{document}
a \dots{} b
a\dots{}b
\[a + \dots + b\]
\end{document}
If the ellipsis package is used, the ellipsis in math is not vertically centered. If it is not used, there is an extra (thin?) space after the ellipsis in the text. The order of \usepackage's do not seem to matter.


\dots{}in math mode anyway, because it confuses the macros ofamsmath. – egreg Jul 09 '14 at 09:41\dotswith and withoutamsmath. – Ian Thompson Jul 09 '14 at 09:44{}after\dots, you must let them decide the spacinga + \dots + b. By the way, this may interest you: http://tex.stackexchange.com/q/168383/21930 and http://tex.stackexchange.com/q/179336/21930. – Manuel Jul 09 '14 at 09:55\dotsin math? or were you just referring to the{}after\dots? theamsmathdocumentation specifically recommends using\dotsunless a final reading shows that some of them have gotten misaligned. (the{}is almost always wrong though.) – barbara beeton Jul 09 '14 at 12:39{}shouldn't be used after\dotsin math mode. – egreg Jul 09 '14 at 12:49{}after\dotsin math mode was accidental when typing out the mwe. Since in this case it doesn't affect the output (at least noticably) and hence the question, I edited it out. – ronno Jul 09 '14 at 17:39a + \dots{} + bdoes not give you vertically shifted dots, which is what, at first time, you asked for. – Manuel Jul 09 '14 at 17:42