Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

latex - including a landscape pdf

Tags:

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} 
like image 555
malangi Avatar asked Mar 26 '10 15:03

malangi


People also ask

How do I insert a landscape PDF in LaTeX?

To have landscape, just add angle=-90 . \includepdf[pages={1}, angle=-90]{xxxxxx. pdf} , and that is all.

Can I mix a landscape and portrait PDF?

down: +180, left, right, and down make relative adjustments to a page's rotation. I guess by those parameters you can merge PDF of landscape and portrait without any problem.

Can you have a landscape PDF?

Open the View menu in Adobe Reader or Acrobat. Locate the Rotate View submenu and choose either "Clockwise" or "Counterclockwise" to rotate the page view in 90-degree increments. This reorients pages from portrait to landscape, or vice versa.


1 Answers

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} 
like image 111
Mica Avatar answered Sep 22 '22 14:09

Mica