I'm struggling with tables in latex. I would like to have the following "word" effect:
but with the code:
\usepackage{booktabs}
\usepackage{colortbl}
\usepackage{xcolor}
\begin{center}
\begin{tabular}{c c c}
\textbf{INGESTION (Hz)} & \textbf{3 STREAMS} & \textbf{6 STREAMS} \\ \toprule
\rowcolor{black!10}[0pt][0pt]50 & 1 & 1 \\
25 & 2 & 2 \\
\rowcolor{black!10}[0pt][0pt]15 & 3 & 3
\end{tabular}
\end{center}
I obtain this:
which is very ugly to me. Essentially I want to remove the space between the header and the first row, moreover I want remove the space between the cells of the rows (I used \arraystrech with terrible results). I'd like to add the extra header also.




