Read more

Include existing PDF files into new TeX document

Thomas Eisenbarth
March 22, 2011Software engineer at makandra GmbH

If you plan to insert an existing PDF into a new LaTeX document that you will compile to PDF, you can use \includegraphics for this. Although, be prepared to get tons of errors complaining about overfill hboxes and the like.
You can use this package that takes care:

\usepackage[final]{pdfpages}
Illustration book lover

Growing Rails Applications in Practice

Check out our e-book. Learn to structure large Ruby on Rails codebases with the tools you already know and love.

  • Introduce design conventions for controllers and user-facing models
  • Create a system for growth
  • Build applications to last
Read more Show archive.org snapshot

In order to insert a PDF, use:

\includepdf{$filename}

See the external link for more options.

Posted by Thomas Eisenbarth to makandra dev (2011-03-22 17:50)