I have a couple of large figures, which I'd like to put on separate pages in landscape mode.
\usepackage{lscape}
...
\begin{landscape}
\begin{figure}[!t]
\centering
...
\end{figure}
\end{landscape}
The problem is that when I wrap the figure in a landscape environment, it stops floating. Landscape creates a landscape page exactly in the place where it is expanded and figure is forced into it.
At the moment I'm dealing with this by moving these figures around manually but I wonder if there is any way of making latex handle them the same way as any other floating figures (i.e. ones without landscape environment).