I have some rather big pictures that I want to be placed landscape, but
the rest of the page must still be portrait.
I've been working with the \landscape and \portrait enviroments, but this
seems to fuck things up. First I cast \landscape after the text but before
the picture. Then I cast \portrait after the picture, before the next
piece of text. After \portrait things look funny. They don't act as before
the \landscape witch was the idea.
I've also played around with the turn enviroment, but again without
success.
Can anyone give me some pointers on how to turn a single picture and keep
the rest of text as it sould be ?
-Kristian
> Can anyone give me some pointers on how to turn a single picture and keep
> the rest of text as it sould be ?
You use \includegraphics from the graphicx package to insert pictures?
It has an option called angle. Try:
\usepackage[dvips]{graphicx}
\includegraphics[angle=90]{figure.eps}
Asbjørn