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
Page Layout ⇒ Unique per page graphics in footer?
NEW: TikZ book now 40% off at Amazon.com for a short time.
Unique per page graphics in footer?
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}:
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:
This will affect the rest of the document, or until you decide to change it again.
Hope this helps.
Cheers
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
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}}
Hope this helps.
Cheers
-
- Posts: 72
- Joined: Sun Nov 16, 2008 1:26 pm
Re: Unique per page graphics in footer?
That looks promising... today's work is to try it out.
Thanks.
Thanks.
-
- Posts: 72
- Joined: Sun Nov 16, 2008 1:26 pm
Re: Unique per page graphics in footer?
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?
"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?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Unique per page graphics in footer?
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
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 72
- Joined: Sun Nov 16, 2008 1:26 pm
Re: Unique per page graphics in footer?
That's pretty much what I had in mind...
Thanks
Thanks