I have a PDF file, containing a 3D object in PRC format. I try to include this into a LaTeX document to be compiled with pdflatex, with the simple source below:
\documentclass{minimal}
\usepackage{graphicx}
\begin{document}
\includegraphics{LC.pdf}
\end{document}
Running pdflatex (version 3.1415926-2.3-1.40.12, TeX Live 2011) over this does not yield any error or warning, but the PDF file created does not include the 3D content (in fact, it is empty). The log file for my compilation appears happy, however:
<LC.pdf, id=1, 200.74097pt x 196.72597pt>
File: LC.pdf Graphic file (type pdf)
<use LC.pdf>
Package pdftex.def Info: LC.pdf used on input line 4.
(pdftex.def) Requested size: 200.74046pt x 196.72548pt.
[1 <./LC.pdf>] (./a.aux) )
So: what am I doing wrong? How can I include this PDF figure, keeping its 3D content, into a LaTeX document?


pdftexbecause AFAIK they only work reliable in the main PDF, not in an included PDF. The same is true for hyperlinks in included PDFs. I think there might be a way to have them, butpdftexdoesn't know how to handle included PDF annotations in general. See How to preserve hyperlinks in included pdf? which might work as duplicate. – Martin Scharrer♦ Apr 15 '12 at 14:21pdfteximplementation is lacking in this respect. It is be a bit sad if, after generating my PDF with pdflatex, I have to include my 3D graphs using Acrobat Pro… – F'x Apr 15 '12 at 14:35comp.text.texas well, there it will be noticed by thepdftexgurus/developers, which might give you an authorized answer on this topic. – Martin Scharrer♦ Apr 15 '12 at 14:38c.t.t… – F'x Apr 15 '12 at 14:46