0
Separate landscape figure page in Latex
Posted by Derek Jing
on
10:17 PM
in
Latex
\uspackage{rotating}
================================================
Paragraph 1 of texts
\begin{sidewaysfigure}
\centering
\includegraphics[scale=0.8]{filename.png}
\caption{blahblah}
\label{fig:figurename}
\end{sidewaysfigure}
Paragraph 2 of texts
================================================
Note: If use 'lscape' package, it is not easy to avoid page break, i.e., the problem that bia area of white space below paragraph 1 and before the figure.
Using rotating package, the separate landscape figure will not break between paragraph1 and paragraph2.
================================================
Paragraph 1 of texts
\begin{sidewaysfigure}
\centering
\includegraphics[scale=0.8]{filename.png}
\caption{blahblah}
\label{fig:figurename}
\end{sidewaysfigure}
Paragraph 2 of texts
================================================
Note: If use 'lscape' package, it is not easy to avoid page break, i.e., the problem that bia area of white space below paragraph 1 and before the figure.
Using rotating package, the separate landscape figure will not break between paragraph1 and paragraph2.