I am using texlive2014.But When i import a picture,it just move away.
This is my source code:
\usepackage{graphics}
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.5]{ProjectStartWorkflow.jpg}
\caption{项目启动流程}
\end{figure}
My compiler is xelatex.The picture move to next page,i can not understand where i am going wrong?
figureenvironment is just to allow latex to move the figure to help with page breaking. It is\includegraphicsthat actually includes the image, so you are not doing anything wrong that is the intended behaviour. – David Carlisle Jan 12 '15 at 10:52figuresare floats and LaTeX place floats where they should be which, not always, is where you want. – Ignasi Jan 12 '15 at 10:53