I want to get a larger space between the table captions and the bottom of the tables in my document. I used the package caption to do this.
Code: Select all
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage{caption}
\captionsetup[table]{belowskip=2pt}
\begin{document}
\begin{table}[!ht]
\caption{Composantes}
\label{Composantes}
\centering
\begin{tabular}{cc}\hline
Table Head & Table Head \\ \hline
Some Values & Some Values \\
Some Values & Some Values \\
Some Values & Some Values \\ \hline
\end{tabularx}
\end{table}
\end{document}
Code: Select all
Undefined control sequence \captionsetup