How to remove extra space between two tables in latex

latex

I wanted to remove extra space between the two tables.

\begin{table}[h]\small
\begin{tabular}{|c|c|c|c|c|}\hline
\end{tabular}
\end{table}

\begin{table}[h]\small
\begin{tabular}{|p{9.9cm}|p{2cm}|p{2.3cm}|p{2.3cm}|}
\end{tabular}
\end{table}

between these two tables I am getting too much spaces. I wont to reduce the space and start the 2table after first with space of say 2cm.

Thanks

Best Answer

You could use a \vspace{-2em} for example between your tables.

Related Topic