Graphics, Figures & Tables ⇒ Graphic on particular page
Graphic on particular page
Is there any way to tell latex to insert graphic on particular page? I mean for example I want to put graphic on page 14 of my document.
Cause now I have a problem with graphics that fits full page and when I put it somewhere, latex prints it at the end of the chapter, something like 10 pages after the code where I've put it.
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Graphic on particular page
Code: Select all
\begin{figure}[!p]
% figure content
\end{figure}
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Graphic on particular page
Welcome to the LaTeX community!
If you don't want it floating you could place it without the
figure
environment (and for example use \captionof
from caption to get it numbered anyway).A most comprehensive reference on the floating mechanism (and how to influence it) by Frank Mittelbach can be found here: How to influence the position of float environments like figure and table in LaTeX?.
Regards
Re: Graphic on particular page
Earlier I was using [!htb] or [H] but it was not working as I wanted.
Thanks a lot
