答案1
我提名
\SI[parse-numbers=false]{3k2}{\ohm}
和
\textup{3k2}\,\si{\ohm}
作为对你问题的回答。\textup
指令保证数字将以直立模式排版,即使表达式出现在斜体文本。
话虽如此,我看不出这样写有什么问题
\SI{3.2}{\kilo\ohm}
最后,如果你真的想要一些引人注目的东西(尽管肯定也至少有点古怪),我可以建议
\SI{32}{\hecto\ohm}
\documentclass{article}
\usepackage{siunitx} % for \si and \SI macros
\begin{document}
\obeylines % just for this example
\SI[parse-numbers=false]{3k2}{\ohm}
\textup{3k2}\,\si{\ohm}
\SI{3.2}{\kilo\ohm}
\SI{32}{\hecto\ohm}
\end{document}