【发布时间】:2014-09-26 01:39:38
【问题描述】:
我正在使用 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,即。不在连续页面中。请给我一个解决方案。
【问题讨论】: