I have a header with two columns; On the first column, I have an image (the logo) and I would like to slightly adjust its position. Here is the relevant piece of code:
\fancyhead[LE,LO]{\tt\begin{multicols}{2}\includegraphics[scale=0.5]{logo.eps}\vfill\columnbreak some more text...\end{multicols}}
Is it possible to move a little bit to the top/left my image?
[edit]
here is a minimal working example:
\documentclass[a4paper,11pt]{article}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{multicol}
\pagestyle{fancy}
\fancyhead{} % clear all header fields
\fancyhead[LE,LO]{\begin{multicols}{2}\includegraphics[height=3cm]{logo.eps}\vfill\columnbreak Right column text\end{multicols}}
\setlength\topmargin{2cm}
\setlength\oddsidemargin{2cm}
\setlength\textheight{200 mm}
\setlength\textwidth{17cm}
\setlength\headheight{3cm}
\setlength\headsep{2cm}
\begin{document}
some content
\end{document}
thanks


multicolsis the best way to do this; how should the picture be in relation to the side text? – egreg Feb 15 at 14:39multicols. I'm open to other suggestions ifmulticolsis a problem. Thanks – Alex Feb 15 at 14:41\documentclass{...}and ending with\end{document}. For the logo, just approximate dimensions are sufficient. – egreg Feb 15 at 14:45