siunitx rounding in table with parentheses
The following appears to work:
\documentclass{article}
\usepackage{siunitx}
\sisetup{
detect-mode,
tight-spacing = true,
group-digits = false,
input-signs = ,
input-symbols = ,
input-open-uncertainty = ,
input-close-uncertainty = ,
table-align-text-pre = false,
round-mode = figures,
round-precision = 1,
table-space-text-pre = (,
table-space-text-post = ),
}
\begin{document}
\begin{tabular}{l*{2}{S}}
\hline
& \multicolumn{1}{c}{(1)} & \multicolumn{1}{c}{(2)} \\
\hline
X & 0.0131 & 0.00265*** \\
& (0.000731) & (0.000547) \\
\hline
\end{tabular}
\end{document}