Graphics, Figures & Tables ⇒ Page break after figure
Page break after figure
this is my latex code:
...blabla as a texte....
\pagebreak[4]
\begin{figure}[!h]
\centering
\includegraphics[width=375]{schema/chap6/Aberration-franges.png}
\caption{\small texte of caption.}
\label{ex_frange_WFE}
\end{figure}
\begin{figure}[!h]
\centering
\includegraphics[width=375]{schema/chap6/Aberration-franges-suite.png}
\caption{\small texte of caption.}
\label{ex_frange_WFE2}
\end{figure}
\pagebreak[4]
\subsubsection*{Tilt}
The subsubsection "Tilt" appears in the .pdf file before both figures in spite of the "\pagebreak[4]" commands.
Have you an idea to have the figures before the subsubsection in the final .pdf file ? I have also tested the "\newpage" and the "\clearpage" commandes without success.
Thanks,
Regards,
Fabrice.
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: Page break after figure
Re: Page break after figure
Have you some other ideas ?
Thanks
Page break after figure
Code: Select all
\begin{figure}[H]
...
\end{figure}
http://people.cs.uu.nl/piet/floats/node1.html
Page break after figure
The adopted solution is using [hp] in order to define the figures position with respect to the text.
Code: Select all
...text...
\begin{figure}[hp]
\centering
\includegraphics[width=375]{schema/chap6/Aberration-franges.png}
\caption{\small texte of figure caption.}
\label{ex_frange_WFE}
\end{figure}
\begin{figure}[hp]
\centering
\includegraphics[width=375]{schema/chap6/Aberration-franges-suite.png}
\caption{\small texte of figure caption.}
\label{ex_frange_WFE2}
\end{figure}
\newpage
\subsubsection*{Tilt}
See you.