Code: Select all
\begin{figure}[p!tb]
...
\end{figure}
Thanks
Code: Select all
\begin{figure}[p!tb]
...
\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
Code: Select all
\begin{figure}[!p]
% figure contents
\end{figure}Type that before figures:hughes wrote:I'm trying to get each figure on its own page for a dissertation (document class book), so (using graphicx) I declared:Figures are put on a separate page, but the page occurs at the end of the chapter. Is there any way to have the figure appear on the page after the first reference to it?Code: Select all
\begin{figure}[p!tb] ... \end{figure}
Thanks
Code: Select all
\usepackage{afterpage}
...
\afterpage{\clearpage}This is not relevant to the problem discussed here because of a completely different environment for the figure.HypnosiS wrote:[...] Also check this topic I asked similar question: http://www.latex-community.org/forum/vi ... f=5&t=5903
Code: Select all
\begin{figure}
...
\end{figure} \clearpageLearn 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