将 .pdf 文件嵌入到 latex 文档中出错

将 .pdf 文件嵌入到 latex 文档中出错

我有以下问题:

 ....
(here some text1)
(here should the .pdf file appear)
(here some text2)
....

我需要上面看到的那个顺序。但情况是 .pdf 文件出现在 text2 之后。我写了以下内容:

 This is an example line for text1.

    \begin{figure}[ht]
    \centering
  \includegraphics[scale=0.5]{Figure1.pdf}
    \caption{example}
    \label{Fig1}
\end{figure}

This is an example for the text2 part.

我忘记了什么?

此致,

答案1

LaTeX 会尝试在文档中找到图形的最佳位置。如果您对结果不满意。请将其添加\usepackage{float}到您的序言中,并使用[H]而不是[ht]作为图形定位选项。

[H]意思是:就在这里,不要浮动

相关内容