Page Layout ⇒ Unique per page graphics in footer?
-
- Posts: 72
- Joined: Sun Nov 16, 2008 1:26 pm
Unique per page graphics in footer?
(I'm using the Memoir class)
Thanks
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
Unique per page graphics in footer?
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?
Thanks.
-
- Posts: 72
- Joined: Sun Nov 16, 2008 1:26 pm
Re: Unique per page graphics in footer?
"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?
Best regards
Thorsten
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?
Thanks