Problem/question
It seems that the ellipsis package does not work with sans-serif fonts. Is it a known problem or maybe not a problem at all? This question follows this one, about "how to change the appearance of \dots"?
Thank you.
MWE (minimal working example)
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{ellipsis}
\setlength{\ellipsisgap}{0.05em}
\begin{document}
{\sffamily So\dots{} let's see\dots{}}
So\dots{} let's see\dots{}
\end{document}

edit
Based on David's answer, here is my code
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{ellipsis}
\setlength{\ellipsisgap}{0.05em}
{\sffamily\setlength{\ellipsisgap}{0.05em}}
{\bfseries\setlength{\ellipsisgap}{0.05em}}
\begin{document}
{\normalfont So\dots{} let's see\dots{}}
{\sffamily So\dots{} let's see\dots{}}
{\bfseries So\dots{} let's see\dots{}}
So\dots{} let's see\dots{}
\end{document}

\sffamily's\dotsis not what he wants (0.05em). – Manuel May 21 '14 at 13:12emrelative to the type size? – dbmag9 May 21 '14 at 13:13…(U+2026), (using UTF8 input encoding, of course)? If you're using a french layout keyboard, there are free drivers that allow you do that easily (and much more). You can take a look here: http://accentuez.mon.nom.free.fr/Clavier-Galeron.htm – Bernard May 21 '14 at 14:48\ellipsisgapis not length, nevertheless your\setlengthdo not raise errors, quite the contrary they even work globally not obeying the scope limitations due to the braces!! but I do not recommend to do this because it permanently alters font parameters. Besides replace0.05emby1cmand you will see the side effects. – May 22 '14 at 16:29\ellipsisgap.\renewcommand{\ellipsisgap}{\dimexpr-0.05em\relax}– May 22 '14 at 17:11