I am trying to place two rows of images in a footer. I am using the fancyhdr package but I'm new to LaTeX and I don't quite know how to place multiple images in the footer and/or perhaps create an array within the footer.
Below is the fancyhdr code I have in my sty file. I have a series of images I want in the footer (university logos and a stretched design bar similar to the header image). The first row of the footer would have the logos of the universities and then the second row would have a single image.
Code: Select all
\setlength{\oddsidemargin}{0 in}
\setlength{\topmargin}{0pt}
\setlength{\textwidth}{6.5in}
\setlength{\marginparsep}{0in}
\setlength{\marginparwidth}{0in}
\setlength{\marginparpush}{0pt}
\setlength{\hoffset}{0pt}
\setlength{\voffset}{-1in}
\setlength{\headheight}{.75in}
\setlength{\headsep}{25pt}
\setlength{\footskip}{.75in}
\setlength{\textheight}{11in}
\advance\textheight by-\headheight
\advance\textheight by-\headsep
\advance\textheight by-\footskip
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancyhfoffset{1in}
\lhead{\includegraphics[height=\headheight,width=8.5in]{header.eps}}
\chead{}
\rhead{}
\lfoot{}
\lfoot{\includegraphics[height=\footskip,width=8.5in]{footer.eps}}
\cfoot{}
\rfoot{}
\pagestyle{fancy}
Thanks for your help!