General ⇒ caption placement problem
caption placement 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}
}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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