Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

The picture is at the position of the header: http://dl.getdropbox.com/u/175564/%20latex1.png

Code:

egin{figure}
   subfloat[A gull]{label{fig:gull}includegraphics[width=0.15extwidth]{p1.png}}
   subfloat[A tiger]{label{fig:tiger}includegraphics[width=0.15extwidth]{p2.png}}
   caption{Pictures of animals}      
   label{fig:animals}      
end{figure}

Code before egin{document}:

documentclass[12pt,a4paper, notitlepage]{article}
usepackage[english]{babel}           
usepackage[latin1]{inputenc}   

usepackage{amsmath}            
usepackage{amsfonts}           
usepackage{amssymb}

usepackage{graphicx}
usepackage{amsthm}
usepackage{fancyhdr}

usepackage{verbatim}           % by egin{comment}---end{comment}
usepackage{subfig}                
usepackage{lastpage}

usepackage{fancyhdr}
usepackage{float}
usepackage{subfig}

floatstyle{ruled}

ewfloat{program}{thp}{lop}   

floatname{program}{Program}
cfoot{ }  

enewcommand{headrulewidth}{0pt} 


enewcommand{footrulewidth}{0pt}
itle{Applying a} 

What could be the cause of the problem?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
489 views
Welcome To Ask or Share your Answers For Others

1 Answer

Figures float.

That is, TeX moves them around to accommodate its typesetting needs. You have the option of specifying what types of places you want TeX to try to put them using:

egin{figure}[htpb]
   ...
end{figure}

where the options mean:

h -- here
t -- top
b -- bottom
p -- page (on a page-o-floats)
H -- Absolutely right here (but requires the `float` package)

Using ! in the options will tell TeX to try hard to put it near the things it is adjacent to in the source file. The default positioning is tbp, so "here" is not even an option unless you ask for it. Also note that the ordering of the options is irrelevant, so [p!bh] will give the same result as [!hbp].

So try egin{figure}[h!] (or egin{figure}[H] if you have already done usepackage{float})

The same options are available for tables and any other floats you define.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...