tags:

views:

55

answers:

2

Having no end of trouble including a large landscape pdf in a portrait .tex document (using pdflatex).

When it does show up, only the leftmost end of the pdf shows up, now matter how small i make the scale. And i cant seem to get it to show in landscape mode at all...

Is anything wrong with the code i am using?

\begin{landscape}
\includegraphics[scale=0.1]{Appendix2.pdf}
\end{landscape}
A: 

You can rotate included figures with angle, so for your case something like

\includegraphics[scale=0.1,angle=90]{Appendix2.pdf}

The angle is in degrees; maybe you need to use angle=-90 instead.

As for "when it does show up, only the leftmost end of the pdf shows up", you might have a problem with the bounding box, but this really depends on how you create the file.

honk
I think that was it - when i got it to show the bounding box, i could only see the top left corners.. would fix itself no matter what code i tried. strange.
flyingcrab
A: 

you may want to have a look at the pdfpages package.

Mica
Thank you worked like a charm!
flyingcrab