Table, Text | Reduce white space below table

When having a table with the caption above the table, it seems that there are too many white spaces created after the table (or below the table). I wanted to reduce/remove some of the white spaces manually, only for some tables. I could not find the solution after searching on Google while the solution is so simple! I wasted my time on the search engine. 😦

Solution: put a negative \vspace{} before you end the table! That’s it 🙂

This is very important, because when placing the negative “\vspace{}” after “\end{table}” and you have a float with [h], it will only reduce the white space of the text, so this could be somewhere else in your document. Place it before the table ends!

Example:

\begin{table}[h] 
\captionsetup{width=0.8\linewidth} 
\caption[]{}\label{tab:X}% 
\centering 
\input{} 
\vspace{-4mm}%Put here to reduce too much white space after your table 
\end{table}

..Blank_vsmall

 

11 thoughts on “Table, Text | Reduce white space below table

Add yours

    1. Wow, I’m amazed my site got added to your google reader. Didn’t realize that it would help for many when I started this website. Thank you so much for your great comment, Adelina! All the best!

      Like

Leave a comment

Blog at WordPress.com.

Up ↑