I'm trying to force a sideways figure to be drawn in a specific point of the text, but I haven't found any valid solution. In particular, I need to achieve the following layout:
- page 1 - contains only text
- page 2 - contains the sideways figure
- page 3 - text and figures
Here the code I'm using.
\begin{sidewaysfigure}[counterclockwise]
\centering
\scalebox{0.99}
{\includegraphics[width=0.99\textwidth]{myfigure}}
\caption{def}
\label{def}
\end{sidewaysfigure}
When I compile, myfigure figure is rendered only after page 3, but it's not I want to achieve.
Any suggestions?
counterclockwise). Any suggestions? My goal is to present it from left to right (the caption would be set on the right). Now, it is rendered for left to right (the caption is on the left side). – Lorenzo B Dec 22 '12 at 13:47\usepackage[counterclockwise]{rotating}– David Carlisle Dec 22 '12 at 14:29