is there a way to set automaticly comma-decimal separator in latex in the "environment" $$ ? I mean having a 1,23 instead 1.23 by typing $1.23$. I tried to set by my own without any success, by inserting
\sisetup{output-decimal-marker={,}}.
But it didn't work. Any ideas? Thank you
$\num{1.23}$instead of$1.23$that would happen with the setting you have, but I assume that is not really an option for you? – moewe Jun 19 '18 at 18:25\mathcode`\.="8000 {\catcode`\.=13 \expandafter }\expandafter \newcommand\noexpand.{{,}}or\mathcode`\.="8000 \begingroup \catcode`\.=13 \gdef.{{,}} \endgroup– moewe Jun 19 '18 at 18:35siunitxmanual about Localisation? – naphaneal Jun 19 '18 at 18:47