[Tex/LaTex] pdfTeX warning: “version allowed”

pdfpdftex

After including some figures (saved as .pdfs) in my LaTeX document with \includegraphics, I got the following warning:

pdfTeX warning: pdflatex.exe (file ./figure/figure_1.pdf): PDF inclusion: found PDF version <1.6>, but at most version <1.5> allowed

The strange thing is, I'm using \includegraphics elsewhere in my document for other figures (also saved as .pdfs, in the exact same way), but no warning is generated for those.

What does this mean? How can I make it go away?

Best Answer

By default, pdflatex will create a PDF version 1.5 file.

It seems that here one of your included PDF graphic is in fact in version 1.6 of the format and therefore has different features which will be lost in included in a pdf file of a previous version.

chances are that the graphic in question do not use any of the features available in PDF 1.6 but that is why there is a warning.

you can either recreate you graphics and if you have that level of control, make sure that it is saved in PDF v1.5, or you can raise the version of your output document to 1.6 by adding in your preamble:

\pdfminorversion=6

This depends on whether you have any restriction about the output document (some people insist on a specific PDF version).

Related Question