我正在使用kile创建一个pdf文件。在我的文件中,我有5个.png文件。我需要连续页面中的这些文件。我的代码是:
\begin{figure}[htbp]
\centering
\includegraphics[width=20cm,height=30cm,keepaspectratio]{./Chapters/Chapter6/tab1.png}
\end{figure}
\newpage
\begin{figure}[htbp]
\centering
\includegraphics[width=20cm,height=30cm,keepaspectratio]{./Chapters/Chapter6/tab2.png}
\end{figure}
\newpage
\begin{figure}[htbp]
\centering
\includegraphics[width=20cm,height=30cm,keepaspectratio]{./Chapters/Chapter6/tab3.png}
\end{figure}
\newpage
\begin{figure}[htbp]
\centering
\includegraphics[width=20cm,height=30cm,keepaspectratio]{./Chapters/Chapter6/tab4.png}
\end{figure}
\newpage
\begin{figure}[htbp]
\centering
\includegraphics[width=20cm,height=30cm,keepaspectratio]{./Chapters/Chapter6/tab5.png}
\caption{Proposed new tagset}
\label{1}
\end{figure}
\newpage
我在不同的页面中获得包含此png文件的输出pdf,即。不是连续的页面。请给我一个解决方案。
答案 0 :(得分:1)
在序言中,包括
\usepackage{float}
然后根据您的数字,使用H
选项。
\begin{figure}[H]
\includegraphics[...]{...}
\end{figure}
正如http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions中所述,H
展示位置表示将浮动内容插入文本中显示的精确位置,因此您应该可以通过放置将它们全部放在连续的页面上他们想要(可能)在中间使用页面清除命令。
答案 1 :(得分:1)
根据您的页面大小,数字可能会大于页面。 无论如何,一页上没有两个这样的数字。
尝试删除\newpage
宏。