There is no way for this
$\SI{-0,8}{\meter\per\square\second}$
to produce a , instead of a . and for there to be a \cdot between the units?
(I have no idea how to show rendered LaTeX text here.)
Thank you!
Yes, there is.
\documentclass{article}
\usepackage{siunitx}
\sisetup{%
output-decimal-marker = {,},
inter-unit-product = \ensuremath{{}\cdot{}}
}
\begin{document}
$\SI{-0,8}{\meter\per\square\second}$
\end{document}
will compile to
\cdotbetween the units? Do you mean when writing\SI{2}{\newton\metre}, you would get2 N·m(with the \cdot in betweenNandm? – Runar Jun 26 '16 at 08:50