我怎样才能改变这个间距?

我怎样才能改变这个间距?

我如何更改文本和表格之间的间距?

间距

答案1

我的第一个答案!抱歉,我没有看到任何附件,也许你可以告诉我如何找到它。

对于这个问题,\vspace可以满足你的要求,我的代码是这样的:

\usepackage{tabularx}

\begin{table}[H]
\vspace{-0.5 cm}
\caption{This is caption}\label{table1}
\begin{center}
    \begin{tabular}{ccc}
        speed & 15000 & 20000\\
        speed & 28138 & 25463
    \end{tabular}
\end{center}
\end{table}

但是浮动格式也会影响段落之间的间距,请检查您的上下文。

相关内容