i try to convert a scientific numer, f.e. 100e3 to the belonging engineering notation 100k. With a unit works this proper with \SI{}{}, but when i try only a number with \num{} then i get only the exponential notation. Does anyone has an idea how \num{100e3} produces as output 100k.
Code: Select all
\documentclass[
12pt,
DIV=14,
final
]{scrreprt}
\usepackage[english]{babel}
\usepackage[binary-units=true, detect-all]{siunitx}[=v2]
% siunitx settings
\sisetup {
exponent-to-prefix = true, % convert exponents into belonging prefixes
round-mode = places,
scientific-notation = engineering, % try to use next engineering unit instead of '.'
per-mode = symbol,
per-symbol = /
}
% List used package version
\listfiles
% Start Document
\begin{document}
Try to get 100k with \textbackslash num{} \num{100e3}.
Try to get 100kA with \textbackslash SI{} \SI{100e3}{\ampere}.
\end{document}
Best Regards,
Andreas