I would like to add a picture on the top right beside the header. I could place a picture up there, but its way to far on the right. Here is what I tried:
Code: Select all
\newcommand{\header}[3]{%
\begin{tikzpicture}[remember picture,overlay]
\node [rectangle, fill=fillheader, anchor=north, minimum width=\paperwidth, minimum height=4cm]
(box) at (current page.north){};
\node [anchor=center] (name) at (box) {%
\fontsize{40pt}{72pt}\color{header}%
{\thinfont #1}{\bodyfont #2}
};
\node [anchor=north] at (name.south) {%
\fontsize{14pt}{24pt}\color{header}%
\thinfont #3%
};
\node at (current page.north east) [anchore=north east] {\includegraphics[width=2cm]{./unilog4c.eps}}
\end{tikzpicture}
\vspace{2.5cm}
\vspace{-2\parskip}
}

Supersonic600