[Tex/LaTex] Typesetting plus-minus uncertainties with different upper and lower bounds

math-operatorssymbolstables

I'm making a data table and need to include my error bars with my data. $\pm$ works great if the upper and lower bounds are the same, however, several of my data points has a different upper limit than lower. In papers I've read, I've seen plenty of uncertainties expressed as plus x minus y stacked on top of one another with the $\pm$ sign.
Could someone tell me how to typeset such a thing?

I'm using a journal-specific document type (aastex) and the deluxetable coding.

Best Answer

Do you mean something like

\documentclass{article}
\usepackage{amsmath}
\begin{document}
 $1.23\substack{+0.4 \\ -0.5}$\,pb
\end{document}

(I've been asked about this for siunitx, but have never really worked out what it actually means or a good interface for an 'automated' approach.)