图形/表格环境的默认间距

图形/表格环境的默认间距

我可以在网上找到它。 pt 中文本和图片/表格之间的图形/表格环境的默认垂直间距是多少? 我在下图中寻找红色标记的空间:

在此处输入图片描述

答案1

我认为以下列表可以满足您的需求。

\floatsep        space between floats (default 12pt)
\textfloatsep    space between a top (bottom) float and suceeding (preceeding) text (default 20pt)  
\intextsep       space above/below an [h] float (default 12pt)
\dblfloatsep     like \floatsep for double column floats (default 12pt)
\dbltextfloatsep like \textfloatsep for double column floats (default 20pt)

您可以检查您的特定文档中的任意一项,从而\the\...sep将值打印在您的打印输出中。

\documentclass{...}
\begin{document}
The textfloatsep is \the\textfloatsep.
\end{document}

相关内容