im currently working on my Master's Thesis and i need siunitx for my SI units. The problem hereby is, that somehow my code doesnt generate the normally installed spaces between the number and the unit. Here is my code
\documentclass[11pt,a4paper,oneside,titlepage]{scrbook}
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{3}
%Codierung
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage[locale = DE, quantity-product = {,},exponent-product = \cdot]{siunitx}
\sisetup{locale = DE, per-mode=reciprocal-positive-first}
\begin{document}
Example for SI unit: \SI{0.15}{\cubic\meter\per\gram}
\end{document}
The resulting sentence would be: 0.15m^3 g^-1
The space between the m^3 and g^-1 works somehow, but the one between the count and unit doesnt..It would be great, if someone could help me with this problem.
Thank you in advance.

