Graphics, Figures & Tables ⇒ Figures
Figures
I need to introduce many images inside a text paragraph along which they are cited. The point is that these figures are composed by two subfloats and the whole dimension is more than half a page (I cannot reduce it). Each time I try to put them in the text, may lines remain empty and this is terrible to see.
I wonder if there is a way to force latex to ignore the amount of data contained in a single page or even better inside a paragraph.
Thanx in advance for your help
I introduce these figures using the structure:
\begin{figure}[H!]
\centering
\subfloat[text. ]{\label{fig:sim_x_ord}\includegraphics[scale=0.75]{file1.png}}\\
\subfloat[text.]{\label{fig:exp_x_ord}\includegraphics[scale=0.75]{file2.png}}
\caption{text.}
\label{fig:label}
\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
Re: Figures
use subfigure package rather than subfloat
Figures
mal wrote: ...
\begin{figure}[H!]
\centering
\subfloat[text. ]{\label{fig:sim_x_ord}\includegraphics[scale=0.75]{file1.png}}\\
\subfloat[text.]{\label{fig:exp_x_ord}\includegraphics[scale=0.75]{file2.png}}
\caption{text.}
\label{fig:label}
\end{figure}
...
Please provide a minimal working example illustrating your problem; code snippets are not helpful.
That's some bad advise; subfigure is an obsolete package and shouldn't be used anymore; in its stead, one can use the subfig or the subcaption package. Additionally, there's nothing in the OP's original code that suggests that he/she is using the subfloat package. According to his/her code, he/she is using the subfig package.spiegboy wrote:...
use subfigure package rather than subfloat