[Tex/LaTex] How to force “power of 10” notation with siunitx

siunitx

I want to force siunitx to display numbers in standard form (e.g., 1.23 x 103) unless the number is between 0 and 10. How can I do this?

Thanks for any help.

Edit: I'm actually formatting numbers from a csv file using csvsimple, so I'm using \num{\myvalue}, where I don't know what \myvalue will be.

Best Answer

Use \sisetup{scientific-notation = true}. See page 25 of the siunitx manual for more options.

Related Question