[Tex/LaTex] Showing plus or minus error in siunitx

math-modesiunitx

Using the notation we were taught, 0.0010 plus or minus 0.0001, for example, would be:

(1.0 +/- 0.1)*10^{-3}s

Is there a way to print this in LaTeX using the siunitx package?

Best Answer

\documentclass[a4paper]{memoir}
\usepackage{siunitx}
\begin{document}

%(1.0 +/- 0.1)*10^-3s
\[
\SI[separate-uncertainty = true]{1.0(1)e-3}{\second}
\]

\end{document}

See the manual for the various methods of inputting the uncertainty.

enter image description here

Related Question