Lads, when I'm generating this table with letters, it doesn't centralize objects as I would expect, meaning all objects should be as large as the largest one.
My code is:
\documentclass{article}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{siunitx}
\begin{document}
\begin{table}[h]
\centering
\captionsetup
{%
singlelinecheck = off,
justification = raggedright,
labelfont = bf,
}
\begin{minipage}[b]{1.0\linewidth}
\caption{name}
\begin{tabular}{@{}l SS }
\toprule
& \multicolumn{2}{l}{BBBBBBBB} \\
\cmidrule{2-3}
AAAA & {$b$} & {$c$} \\
\midrule
$1$ & Aaaaaaaaaaaaaaaa & b \\
\bottomrule
\end{tabular}
\end{minipage}
\end{table}
\end{document}
Currently I'm getting something like:

Whereas I'd like to get something like:

I could probably use tildes (~) as the invisible character, but I believe there's a better way. Isn't there?