latex
March 13, 2011 7:57 PM   Subscribe

How to suppress Latex printing some figures in landscape orientation?

For some reason Latex is automatically putting some of my figures in landscape orientation, i.e. the page that the specific figure is on is in landscape orientation instead of portrait. I don't want latex to automatically put some pages in landscape orientation. I have tried many things to no avail.

The way i insert the .eps files in latex are identical:
\begin{figure}[h]
\includegraphics*[width=1\textwidth]{fig1}
\end{figure}

\begin{figure}[h]
\includegraphics{fig2}
\end{figure}

Also, i'm creating these figures using matlab and i've made sure that the sizes of these figures are the same as well as the paper orientations when I "export" them from matlab (i.e. using the "print" command in matlab).

Any suggestions would be greatly appreciated.
posted by meg_s98 to Computers & Internet (2 answers total)
 
Can you post your preamble? Landscape rotation is not easy to do by default in LaTeX, which makes me think that you've got some extra package loaded that's automatically doing it for you.
posted by Johnny Assay at 6:43 AM on March 14, 2011


Try rotating the picture when it's pulled in using the angle parameter i.e.

\begin{figure}
...

\includegraphics[angle=-90]{fig1}

...
\end{figure}
posted by gadha at 7:10 AM on March 14, 2011


« Older Where to find good online history discussion?   |   Kids' books, written in English, in China. How to? Newer »
This thread is closed to new comments.