I have just discovered the siunitx package and want to use it in a German language document. Unfortunately, I can't get the German word 'bis' instead of 'to' with the \SIrange command:
\listfiles
\documentclass{beamer}
\usepackage[ngerman]{babel}
\usepackage{siunitx}
\begin{document}
\begin{frame}
$\dot{V}=\SIrange{0}{650}{\litre\per\hour}$
\end{frame}
\end{document}
What's wrong?
\,,\;,~, etc. in the range-phrase, because they can cause range commands to not line break/word wrap and go beyond the right margin. It's better to use just blanks (e.g.range-phrase={ bis }instead ofrange-phrase={\,bis\,}). – user2328903 Feb 11 '14 at 19:14