[Tex/LaTex] PDF version issue when including PDF figures

pdfxetex

I keep getting the following line in my log file

** WARNING ** Version of PDF file (1.5) is newer than version limit specification.

with reference to each image I'm trying to include in my document. The images are inserted easily enough but I'm just a little miffed about this message. I used Inkscape to create the images, and when I was exporting them to PDF, the only option I had for versioning was 1.4. I'm also using XeTeX to compile the document.

How can I get rid of these messages?

Best Answer

Try this in your preamble for pdftex:

\pdfminorversion=4

for XeTeX edit the configuration file dvipdfmx.cfg which can be found for TeXLive in /texmf/dvipdfmx/ and replace the first line with

V 4

It also maybe the other way round, then change it from 4 to 5

Related Question