Page LayoutUnique per page graphics in footer?

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
Julian_S_Moore
Posts: 72
Joined: Sun Nov 16, 2008 1:26 pm

Unique per page graphics in footer?

Post by Julian_S_Moore »

Now that I can import graphics how might I put a unique graphic on the foot of each page - sequences organised by chapter so e.g. Ch1Graphic1 on p1 of chapter 1, Ch1Graphic2 on p2... Ch2Graphic1 on page 1 of chapter 2... etc.?

(I'm using the Memoir class)

Thanks

Recommended reading 2024:

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

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

fatra2
Posts: 126
Joined: Fri May 01, 2009 1:43 pm

Unique per page graphics in footer?

Post by fatra2 »

Hi there,

You might want to use the fancyhdr package in the preamble. To add personalized headers and footers, you need to add after the \begin{document}:

Code: Select all

\pagestyle{fancy}
\lhead{} %left header
\chead{} %centered header
\rhead{} %right header
\lfoot{} %left footer
\cfoot{} %centered footer
\rfoot{} %right footer
This will affect every page of your document, exception made for the title page.

If you want to change any of these in the middle of the text, like changing a footer after the beginning of a chapter, just add:

Code: Select all

\chapter{This is my new Chapter \\
It will include very pretty words, phrases, and sentences.}
\label{chap:my-new-chap}

\cfoot{\includegraphics[height=2cm]{my-figure-file}}
This will affect the rest of the document, or until you decide to change it again.

Hope this helps.

Cheers
Julian_S_Moore
Posts: 72
Joined: Sun Nov 16, 2008 1:26 pm

Re: Unique per page graphics in footer?

Post by Julian_S_Moore »

That looks promising... today's work is to try it out.

Thanks.
Julian_S_Moore
Posts: 72
Joined: Sun Nov 16, 2008 1:26 pm

Re: Unique per page graphics in footer?

Post by Julian_S_Moore »

Um... I'm using the Memoir class...

"The memoir class includes the functionality of many packages, for instance the tocloft package for controlling the table of contents or methods similar to the fancyhdr package"

This is - I think - week 2 of working seriously with LaTeX (last year's toe-dip notwithstanding)... don't suppose you could help me translate that helpful answer into Memoir?
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Unique per page graphics in footer?

Post by localghost »

Read Section 20 (A movie, p. 19) of the fancyhdr manual and translate the example to the interface of the memoir class.


Best regards
Thorsten
Julian_S_Moore
Posts: 72
Joined: Sun Nov 16, 2008 1:26 pm

Re: Unique per page graphics in footer?

Post by Julian_S_Moore »

That's pretty much what I had in mind...

Thanks
Post Reply