General ⇒ space between table and his caption
space between table and his caption
When I insert a table with caption, this caption stay attacked to a table above.
How can I fill much more space between table and caption?
Thanks!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
space between table and his caption
Code: Select all
\documentclass{article}
\usepackage[font=small,labelfont=bf,aboveskip=10pt]{caption}
\begin{document}
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
\begin{table}[!ht]
\centering
\caption{Test table}
\label{tab:test}
\begin{tabular}{cc}
a & b \\
c & d
\end{tabular}
\end{table}
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
\end{document}