I have several big figures to insert to the article, however, the Content-Part-2 jumps to the front of figures (Figure-1 & Figure-2 in code), where is at the end of Content-Part-1. Code shown below:
\section{Content-Part-1}
~Some content~
\begin{figure}[htbp]
\centering
\includegraphics[bb=0 0 769 607, scale=0.45]{figure/fig01.png}
\caption{Figure-1 description}
\end{figure}
\begin{figure}[htbp]
\centering
\includegraphics[bb=0 0 770 569, scale=0.45]{figure/fig02.png}
\caption{Figure-2 description}
\end{figure}
\section{Content-Part-2}
~Some content~
Output:
Content-Part-1
Content-Part-2
Figure-1
Figure-2
The desired one like:
Content-Part-1
Figure-1
Figure-2
Content-Part-2
How can I make them in right order (just make the content after figures, not with \newpage)?
EDIT: I tried use h, h!, etc, but still not work, nothing changed. :(
Btw, I put a minimal working example HERE, as there're several images.
MWE:
\documentclass{article}
\usepackage{CJKutf8}
% Package & settings for graphic
\usepackage[pdftex]{graphicx}
\graphicspath{./figure/}
\DeclareGraphicsExtensions{.png,.jpg,.jpeg,.pdf}
\title{Title}
\author{Author names}
\begin{document}
\begin{CJK}{UTF8}{gbsn}
\maketitle
\bibliographystyle{unsrtnat}
\setcitestyle{super, square, aysep={}, yysep={;}}
\begin{abstract}
~abstract content~
\end{abstract}
\newpage
\section{Introduction}
通常,为了能够使用为不同业务流程设计的组件,往往会在已有的模块基础上进一步构建成大型应用。而使用面向服务的方法不仅能够规范交互性,而且在事务处理过程中提供了更大的灵活性。因此,一个面向服务的架构必须把重心放在如何描述和组织服务上,以支持动态性、自动查找和使用性。如果服务变得越来越复杂,那么基本的“请求-响应”机制就会变得难以运用了。一些中期甚至长期的服务需要一个合适的功能,以实现分别为用户和响应的服务(或者两个服务)之间建立一个异步通信。而Web的消息通知服务正满足以上这些需求。Web服务是自包含的、模块化的服务应用,它可以通过网络描述、发布、定位,以及调用。从简单的“请求-响应”处理到完整的业务流程的交互,Web服务均采用封装的事务功能。
我们提出的服务架构所采用的新型LBS基础核心服务是基于Web服务构建的,从而克服了平台依赖性、系统封闭性,以及分布式计算环境等带来的限制。
\section{A Section}
开发的客户端经过在有线和无线的环境下测试。客户端平台为PDA(Microsoft WindowsCE,iPAQ5550)和WIPI手机(WIPI,SamSung X9300,Arm9,4MB)。
\begin{figure}[htbp]
\centering
\includegraphics[bb=0 0 750 500, scale=0.45]{figure/fig01.png}
\caption{figure 01}
\end{figure}
\begin{figure}[htbp]
\centering
\includegraphics[bb=0 0 750 500, scale=0.45]{figure/fig02.png}
\caption{figure 02}
\end{figure}
\begin{figure}[htbp]
\centering
\includegraphics[bb=0 0 750 500, scale=0.45]{figure/fig03.png}
\caption{figure 03}
\end{figure}
\section{Conclusion}
本论文中提出的LBS基本核心Web服务克服了平台的依赖性,同时提高了分布式计算性能。该基本核心服务不依赖服务器平台,不会因为服务器平台的不同而需重新架构。并且由于采用Web服务系统架构,客户端的开发并不会受限于编程语言。
\end{CJK}
\end{document}
references.. – Kjuly Jan 08 '12 at 08:44Conclusion)... Thanks in advance! :) – Kjuly Jan 08 '12 at 16:18