Latex – including a landscape pdf

latex

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}

Best Answer

You may want to have a look at the pdfpages package which "sim­pli­fies the in­clu­sion of ex­ter­nal multi-page PDF doc­u­ments in LATEX doc­u­ments".

To include pages as landscape you can use the following:

\usepackage{pdfpages}

\includepdf[landscape=true]{circuit.pdf}