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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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