圖形/表格-環境的預設間距

圖形/表格-環境的預設間距

我可以在網上找到它。文字和圖片/表格之間的圖形/表格環境是否有預設的垂直間距(以 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}

相關內容