I am writing my PhD thesis in LaTeX (MiKTeX) and wish to reduce the excessive white space typically produced below figures.
I found a great solution for this by using
Code: Select all
\setlength{\belowcaptionskip}{-12pt}
However, the problem is that for Tables, I have placed the caption above the Table. So when using the above code, my tables are dragged into the table caption.
Is there a way to avoid the above code having the effect on my table captions?
My table captions are defined using
Code: Select all
\captionof{table}{...bla...bla}
Code: Select all
\caption{...blabla...}


Thanks!