Graphics, Figures & Tablesworking with \AddToShipoutPicture

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
snowfrog
Posts: 38
Joined: Wed Jan 06, 2010 8:11 pm

working with \AddToShipoutPicture

Post by snowfrog »

Hi,

I'm writing my thesis and at the start of each chapter, I would like to have a picture that covers the printable area, with the title of the chapter displayed on that picture.

So far, I have managed to do this with the code below although I admit I don't really understand how it works.

Code: Select all

\AddToShipoutPicture*{\put(130,0)%
{\includegraphics[width=17cm,height=25cm]{Image.jpg}%
}} 
\chapter{Title}
\pagebreak[4] 
Now I would like to change the colour of the font and where the text is displayed on the picture. Because I don't really understand how \AddToShipoutPicture works, I don't understand how to "play" with it.

Can anybody advise?
Thanks.

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

working with \AddToShipoutPicture

Post by josephwright »

What text and what position? All that \AddToShipoutPicture is doing is plonking the picture onto the page when it is generated (i.e. at shipout) If you want to alter the colour of the chapter text, then that is nothing to do with your picture.
Joseph Wright
snowfrog
Posts: 38
Joined: Wed Jan 06, 2010 8:11 pm

Re: working with \AddToShipoutPicture

Post by snowfrog »

Thanks for clarifying this!
Post Reply