Good day!
I find no solution for my question: I need in header and footer for my document with image and I want that header and footer was in even page. I try use fancyhdr package, but get not result, may be there are another package for headers and footers?
It'll be cool if you give me example. Thank you for you attention.
Page Layout ⇒ fancyhdr | Headers and Footers
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
fancyhdr | Headers and Footers
Another good package for headers and footers is
scrpage2. It belongs to the koma-script bundle, but works with the other classes too.
Stefan

Stefan
LaTeX.org admin
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
fancyhdr | Headers and Footers
There is also the titleps package, which has recently been split from the titlesec package. It has the most simple user interface to create page styles.
Thorsten
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
fancyhdr | Headers and Footers
Hi, you should use the twoside option in article, combined with the geometry package to fix the page margins:
Code: Select all
Code, edit and compile here:
\documentclass[10pt, twoside]{article}\usepackage[margin=3cm, showframe]{geometry}\usepackage{fancyhdr}\usepackage{graphicx}\renewcommand{\headrulewidth}{0.2mm}\renewcommand{\footrulewidth}{0.2mm}\fancyhead{} % Clear all header fields\fancyfoot{} % Clear all footer fields\fancyhead[LE]{\thepage}\fancyhead[RE]{even page \ \includegraphics[scale=0.179]{logos}}\fancyhead[LO]{\includegraphics[scale=0.179]{logos} \ odd page}\fancyhead[RO]{\thepage}\pagestyle{fancy}\begin{document}Some text\newpageSecond page\newpageThird page\newpageFourth page\end{document}