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 online protection

Rails Long Term Support

Rails LTS provides security patches for old versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2)

  • Prevents you from data breaches and liability risks
  • Upgrade at your own pace
  • Works with modern Rubies
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)