I want to have some numbers in my table bold. But get some troubles with the decimal points of the numbers. Here is my code for it:
\begin{document}
\begin{table}[htbp]
\centering
\caption{}
\begin{tabular}{r|SSS|SSS|S}
\toprule
\multicolumn{1}{r}{\multirow{2}[2]{*}{$r$}} & \multicolumn{1}{r}{\multirow{2}[2]{*}{$IC_{1}$}} & \multicolumn{1}{r}{\multirow{2}[2]{*}{$IC_{2}$}} & \multicolumn{1}{r}{\multirow{2}[2]{*}{$IC_{3}$}} & \multicolumn{1}{r}{\multirow{2}[2]{*}{$IC_{1}$}} & \multicolumn{1}{r}{\multirow{2}[2]{*}{$IC_{2}$}} & \multicolumn{1}{r}{\multirow{2}[2]{*}{$IC_{3}$}} & \multicolumn{1}{c}{\multirow{2}[2]{*}{$\mu_{i}$}} \\
\multicolumn{1}{r}{} & & & \multicolumn{1}{r}{} & & & \multicolumn{1}{r}{} & \\
\midrule
1 & 0.60 & 0.65 & 0.65 & 0.61 & 0.66 & $\mathbf{0.79}$ & 0.40 \\
2 & 0.45 & 0.55 & 0.55 & 0.46 & 0.56 & 0.84 & 0.15 \\
3 & 0.35 & 0.49 & 0.50 & 0.37 & 0.52 & 0.93 & 0.10 \\
4 & 0.26 & 0.45 & 0.45 & 0.28 & 0.48 & 1.02 & 0.10 \\
\toprule
\end{tabular}%
\label{tab:addlabel}%
\end{table}%
end{document}
Is there some general solutions, which can be used for other tables as well? Thank you!

