Graphics, Figures & Tables ⇒ How to \includegraphics with 90 degrees rotation?
How to \includegraphics with 90 degrees rotation?
How can I \includegraphics with 90 degree rotation?
For example, my figure is of size 640*480, which can't fit into a page when being inserted to the page normally (horizontally).
If I rotate it with 90 degrees, I may obtain a picture of size 480*640, together with a rotated caption.
Can anybody give me a hand?
Is there such a demo?
Thank you very much
Best Regards
JIA
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
How to \includegraphics with 90 degrees rotation?
E.g., to rotate 90 degrees anti-clockwise, with the axis being the center of the file:
Code: Select all
\includegraphics[angle=90,origin=c]{file}
Another option might be the sidewaysfigure or turn environment from the rotating package, especially if you want the caption rotated too.
Code: Select all
\begin{sidewaysfigure}
\includegraphics{file}
\caption{My caption}
\end{sidewaysfigure}
Re: How to \includegraphics with 90 degrees rotation?
Thanks
Cheers
JIA