控制 \paragraph 下图形的位置

控制 \paragraph 下图形的位置

我正在尝试控制图形的位置。我想将其放置在段落标题的正下方,但这样做不行。

当我在 \paragraph 正下方添加文本时,图形会按照我的意愿移动到标题下方。因此,我尝试了一些想法,例如 \phantom、\vspace 等,以创建不可见的间距。但这样做没有奏效。

你能帮我修复这个问题吗?

PS,我还想让文本从下一行开始,而不是从段落的同一行开始。换行功能不起作用。

在此处输入图片描述

 \paragraph{[2] xxx}
 \begin{figure}[h!]
 \centering
 \includegraphics[width=0.9\textwidth]{P2.png}
 \caption{\label{fig:frog}This is a figure caption.}
 \end{figure}

答案1

我使用子段落使文本从下一行开始,而不是与段落从同一行开始。

我使用了以下软件包并缩小了图片的尺寸以使其适合同一页。如果您保持大小不变​​,它仍然会保留在段落下方,但可能在下一页。希望我的回答对您有所帮助。

\documentclass{article}
\usepackage{graphicx}
\usepackage{float}

\begin{document}

    \section{Section}

    Hello

    \paragraph{Paragraph}

    \subparagraph{}

     \begin{figure}[H]
        \centering
        \includegraphics[width=0.7\textwidth]{"example3".png}
        \caption{\label{fig:frog}This is a figure caption.}
     \end{figure}

\end{document}

在此处输入图片描述

相关内容