Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove extra space between two tables in latex

Tags:

People also ask

How do I reduce the space between tables in LaTeX?

You could use a \vspace{-2em} for example between your tables. This does not always work and it could potentially cause problems when table floats: words may lay on each other.


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