I want to use scientific notation with the siunitx package. However, when I try to do it I am getting an error:
The width of a human hair is \SI{1 \times 10^{-4}}{m}.
This has always given me a LaTeX Error" invalid character '10^{-4}' in numerical input
Is there a better way to do this while continuing to use siunitx?
Thanks!
\SI{1 \times 10^{-4}}{m}to work in the input or only to get1 \times 10^{-4}in the output. – Joseph Wright♦ Aug 25 '10 at 20:52siunitxprovides the\numcommand, e.g.\num{e-4}will print 10^{-4}. – Torbjørn T. Dec 7 '11 at 12:34