Graphics, Figures & TablesGraphic on particular page

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
kajl
Posts: 2
Joined: Sun Sep 16, 2012 2:11 pm

Graphic on particular page

Post by kajl »

Hi,

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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Graphic on particular page

Post by localghost »

At first try some appropriate placement options for the float environment in question. But make sure that it fits the page. If it doesn't, you will obtain warnings in the log file (*.log).

Code: Select all

\begin{figure}[!p]
% figure content
\end{figure}
The float will be appear as soon as possible and occupy an entire page without any text.


Best regards and welcome to the board
Thorsten
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Graphic on particular page

Post by cgnieder »

Hi kajl,

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
site moderator & package author
kajl
Posts: 2
Joined: Sun Sep 16, 2012 2:11 pm

Re: Graphic on particular page

Post by kajl »

Thanks! It's a lot better now, images are 1 or 2 pages after the refs.
Earlier I was using [!htb] or [H] but it was not working as I wanted.

Thanks a lot ;)
Post Reply