Part of our corporate standard is to place a small logo graphic at the top right of each page. It looks like fancyhdr handles this quite easily, but I'm using the memoir class, and it doesn't seem to be compatible with fancyhdr.
Asked
Active
Viewed 1,702 times
5
dr-jan
- 273
1 Answers
7
Using memoir features (See Secion 7 Pagination and headers of the manual), you can define your page style to include the logo in the desired position. A litlle example
\documentclass{memoir}
\usepackage[demo]{graphicx}% demo option just for the example
\usepackage{lipsum}
\makepagestyle{mystyle}
\makeevenhead{mystyle}{\thepage}{}{\includegraphics[height=15pt]{
logo}}
\makeoddhead{mystyle}{\includegraphics[height=15pt]{
logo}}{}{\thepage}
\pagestyle{mystyle}
\begin{document}
\lipsum[1-10]
\end{document}
Gonzalo Medina
- 505,128
tikzpicturewith an\includegraphicsto insert an existing image, as illustrated in as answer to at the second link. – Peter Grill May 02 '12 at 18:34