Jean-Marc Lasgouttes wrote:
Abdelrazak Younes <[EMAIL PROTECTED]> writes:
I can't do that as this is in the preamble. Or can I just use the
\rhead command in the document?
I think so, try it.
I confirm.
If not, is there something like conditional include with LateX?
Something like that (in pseudo C-like code):
\includegraphics{
\engine == 'dvi' ? graphics/my_logo.eps : graphics/my_logo.png}
}
It is possible (latex is a full-fledge language, after all), but not
needed here. Make a png file and an eps one, and use
\includegraphics{graphics/my_logo}
the right extension will be picked automatically.
Even better, thanks!
Abdel.