Logo in a LaTeX document header/footer
by Mostafa on Oct.22, 2007, under How To ..., LaTeX
Easily accomplished using the ‘fancyhdr‘ package:
\usepackage{fancyhdr}
\renewcommand{\headheight}{0.6in}
\setlength{\headwidth}{\textwidth}
\fancyhead[L]{}% empty left
\fancyhead[R]{ % right
\includegraphics[height=0.53in]{img-file}
}
\pagestyle{fancy}
All of that goes into the preamble of the document.



February 19th, 2009 on 1:32 pm
Hey,
Tried to use this, but \renewcommand{\headheight}{0.6in} didn’t work. Replaced by \setlength{\headheight}{0.6in}
, that worked fine. Thanks for the hint though, you helped me out of a hell of a lot trouble with placing my graphics on the perfect spot!
Thijs
February 19th, 2009 on 1:34 pm
Thanks for the comment. I suppose things might have changed since the time this post was made
October 13th, 2009 on 5:43 am
Thanks, it worked!
July 11th, 2010 on 4:42 pm
thanks a lot! It works