I want to typeset short equations (variable = value) saving space.
Is there a global parameter which allows to reduce the space between operators and operands in math mode?
I found out, that there is a negative space \!which could be used, but I would have to type it in each single equation, which is inefficient.
\documentclass[11pt, a4paper]{scrbook}
\usepackage[ngerman]{babel}
\begin{document}
$a_0\!\!=\!\!12{,}459$
\end{document}
\!inefficient: you shouldn't use it around binary operations or relations since it can lead to very bad spacing; see e.g. this answer. – Hendrik Vogt Jun 25 '12 at 07:57