We need to make clear that certain data is the same in several rows. An underbrace taken from math-mode does the job quite well, but is unfortunately way too prominent in the table, especially in contrast to booktab’s layout.

\documentclass{article}
\usepackage{tabularx}
\usepackage{booktabs}
\begin{document}
\begin{tabular}{lccc}
\toprule
& XXX & YYY & ZZZ \\
\midrule
aaa & 11111111111111 & 222222222222 & 333333333333 \\
bbb & 11111111111111 & 222222222222 & 333333333333 \\
ccc & 11111111111111 & 222222222222 & 333333333333 \\
& \multicolumn{3}{c}{{$\underbrace {\hspace{22em}}$}} \\
\\
ddd & & 0000 \\
\bottomrule
\end{tabular}
\end{document}
I've tried \resizebox to shrink the brace, but this looks what it is: squeezed.
It is also possible to use tikz to make something close to curly braces, but I am not too happy with the result of either; I'd like to retain the drawn, "swashy" quality of the math-mode.
Is there a possibility to get slimmer braces (i.e. like drawn with a narrower nib) in the same design as used in math-mode?


