插入图片时为什么要分页?

插入图片时为什么要分页?

如果我插入图片,它会显示在下一页。为什么 Latex 会分页?

我的代码是:

 1208. \\ 
\begin{figure}
\includegraphics[width=100mm]{Komplexa_talplanet.png}
\end{figure}\\
\\.

答案1

如果您想强制将图片打印到您想要的位置,您可能需要寻找该float包。它为图形放置提供了新选项H,可防止图片被移动到其他地方。

\documentclass{article}% or whatever
\usepackage{float}% provides the H option to figure environment
\begin{document}
\begin{figure}[H]% Specify the H option to force the placement exactly where figure enviromnent is called
\includegraphics[width=100mm]{Komplexa_talplanet.png}
\end{figure}

相关内容