Using \includegraphics[width=\linewidth]{mypdf} I tried to insert a PDF image to my XeLaTeX document. But instead of the images empty area places in its place.
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[width=\linewidth]{my.pdf}
\end{document}
I got following in console:
** WARNING ** Multiple DecodeFilter not supported.
** WARNING ** Could not handle a content stream.
** WARNING ** pdf: image inclusion failed for "./my.pdf".
)
(see the transcript file for additional information)
Output written on test.pdf (1 page).
SyncTeX written on test.synctex.gz.
Transcript written on test.log.
What may be wrong? What kind of PDFs can be inserted in tex files?
my.pdf? Perhaps you should convert it to PS and then convert back to PDF (see XeTeX cannot include PDF page). – Werner Apr 05 '13 at 06:39pdf2psin my texlive dict. – Real Dreams Apr 05 '13 at 06:49pdftopsinstead, notpdf2ps. – Werner Apr 05 '13 at 07:04