Latex: Rotate Inserted Images

When you insert an image into your latex document you can rotate, and resize it it at the same time. It is useful, especially if you are importing a full page postscript graph that has a landscape layout:

\begin{figure}
\centering
\includegraphics[width=.5\textwidth, angle=270]{graph.ps}
\label{fig:sample-graph}
\caption{Sample Graph}
\end{figure}

In the example above I’m rotating the image by 270 degree, and set the image width to be half the width of the text on the page.

Related Posts:

  • Convert PNG to EPS
  • LaTex Annoyances
  • Publications
  • Few Words on LaTex Fonts
  • Installing LaTex on Windows
  • Convert PS and EPS images to JPEG
  • LaTex: Fixing Wrong Figure Numbers
  • MySQL: How to get the key of last inerted row in PHP
  • Latex: Numbered Subsubsections
  • Code Segments in Latex

  • Leave a Reply