Hi all, i am quite new to latex, thanks for your time to look at my problem.
I used the following code to insert a figure in my report between two paragraphs,
but this figure does not appear in the middle of the two paragraph, instead on another new page, even more, the title of the figure which is "simple delay-and-sum beamformer model" always appears at the bottom of the page, not following the figure closely,
what is wrong with it..?
{
\begin{figure}[h]
\begin{center}
\includegraphics[scale=0.8]{figs/pdf/delay-sum.pdf}
\hspace{0.5in}
\caption{\small Simple delay-and-sum beamformeer model}
\label{fig:Delay-sum model}
\end{center}
\end{figure}
}
General ⇒ caption placement problem
NEW: TikZ book now 40% off at Amazon.com for a short time.

caption placement problem
It seems that your figure image has a lot of space at the bottom. You can check this by putting the image into a framed box:liao0038 wrote:the title of the figure which is "simple delay-and-sum beamformer model" always appears at the bottom of the page, not following the figure closely,
what is wrong with it..?
Code: Select all
\fbox{\includegraphics[scale=0.8]{figs/pdf/delay-sum.pdf}}

Code: Select all
\begin{center}
Code: Select all
\hspace{0.5in}
Code: Select all
\caption{\small Simple delay-and-sum beamformeer model}
Axel
caption placement problem
Hi sommerfee, many thanks for your reply, it works !!