LaTeX 图形渲染不正确

LaTeX 图形渲染不正确

可能重复:
将表格/图片放在靠近提及的地方

以下代码:

\clearpage
\section{Section 1.2}

This is a paragraph.

The details page should look like the following:

\begin{figure}
    \centering
    \includegraphics[width=5.5in]{resources/fig1.5.png}
    \caption{Figure 1.5}
\end{figure}

产生以下输出:

输出

如您所见,图形显示在文本上方。我的目的是让图形位于文本下方。我该如何强制此行为?我将命令放在\clearpage顶部,因为否则第 1.2 节标题会出现在上一页的底部,而文本和图形会出现在下一页(我不想这样)。如果相关,我会使用\documentclass{book}

答案1

使用位置说明符:

\begin{figure}[!ht]
    \centering
    \includegraphics[width=5.5in]{resources/fig1.5.png}
    \caption{Figure 1.5}
\end{figure}

相关内容