间距面临的问题

间距面临的问题

我在调整论文不同部分的空间时遇到了困难。

我有 3 个问题需要解决,我尝试在下面的一张图片中显示它们:

在此处输入图片描述

在第一个问题中,我需要在文本和文本后面的图形之间留出 18pt 的空间(表格也是如此)

在第二个问题中,图形的标题应位于图形下方 18pt

在第三种情况下,图形标题后应与图形后的文本/章节/小节等保持 18pt 的距离。

我附加了用于将图形插入到 tex 文件的示例代码,如下所示:

\begin{figure}[h]
\centering
\includegraphics[width=0.6\linewidth]{figures/dist_list_bim.pdf}
\caption[Change of prediction softmax score of MLP model]{Change of prediction softmax score of MLP model.}
\label{fig:dist_list_bim} \end{figure}

我也使用下面的命令来排列标题:

\captionsetup{labelsep=space, labelfont = normalfont, skip = 18pt, font = normalsize}

您能指导我如何处理这 3 个问题吗?

最好的祝愿,

答案1

看看这个答案:https://tex.stackexchange.com/a/23316/101651

设置\captionsetup{skip = 18pt}图形和其标题之间的空间。

\setlength{\intextsep}{18pt plus 2pt minus 2pt}
\setlength{\textfloatsep}{18pt plus 2pt minus 2pt}

您可以设置标题和文本之间的长度。

该部分之前还有一些其他空间,但我们需要有关您的文档的更多信息(一个简短但完整的示例)。

\documentclass{book}
\usepackage{graphicx}
\usepackage{caption}
\captionsetup{labelsep=space, labelfont = normalfont, skip = 18pt, font = normalsize}

\setlength{\intextsep}{18pt plus 2pt minus 2pt}
\setlength{\textfloatsep}{18pt plus 2pt minus 2pt}

\begin{document}
\listoffigures
\chapter{My chapter}
\section{My first section}
Some text for testing purpose only. 
Some text for testing purpose only.
Some text for testing purpose only. 
Some text for testing purpose only. 
\begin{figure}[h]\centering
\includegraphics[width=0.6\linewidth]{example-image-duck}
\caption[Change of prediction softmax score of MLP model]{Change of prediction softmax score of MLP model.}
\label{fig:dist_list_bim} 
\end{figure}
\section{My second section}
Some text for testing purpose only.
\end{document}

在此处输入图片描述

相关内容