I use the set spacing package, to avoid that tables are condensed I also use the etoolbox package to define the tabular environment. However, in one specific table the 1.5 spacing is too much and I would like to reduce it. I tried groups and array stretch but cannot really figure out how to overwrite the spacing for a single table? Any suggestion is appreciated.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{setspace}
\usepackage{etoolbox}
\AtBeginEnvironment{tabular}{\onehalfspacing}
\begin{document}
\section{Introduction}
\begin{table}[h]
\begin{tabular}{c|c}
aa & bb \
cc & dd
\end{tabular}
\end{table}
\end{document}
