I have a very strange behaviour of pdflatex. I include two files with figure. If I include one of the files two times the pdf compiles without any problem. However, if I include both files at the same time, I am getting the following error:
PDF inclusion: /Group dict missing
==> Fatal error occurred, no output PDF file produced!
What can be a reason and in what direction should I search to fix the issue? What derails should I provide to help understanding the issue?
UPD When I insert the same figures in two parts of the text the document does compile, if the figures are included one after another pidflatex crashes.
The figures are included as usually:
\input{figure.one}
\input{figure.two}
In figure.*.tex:
\begin{figure*}[!t]
\centering
\includegraphics[width=\textwidth]{path/file.pdf}
\caption{...}
\label{fig:label}
\end{figure*}
\documentclass{...}and ending with\end{document}. – Moriambar May 21 '17 at 18:08\documentclass{article} \usepackage{graphics} \begin{document} \input{figure.one} \input{figure.two} \end{document}? When Moriambar said "starting with" and "ending with", that's what is meant: everything we would need to reproduce the error. – Teepeemm May 21 '17 at 18:26\input{figure.one}causes the error as the.onemight be interpreted as a file extension? – lblb May 21 '17 at 18:31documentclassit would help you to reproduce the problem? It is not a standard problem like I can not get a correct spacing or something. If you check my other questions you will see I provide MWE when it is needed. Here it is more about a bug related topdflatex(as it seems from the first googling), and I would like to know if anyone encountered such a behaviour and found out why it happens and how it can be solved. Not everything fit to a common template. – desa May 21 '17 at 18:35pdflatexactually crashes. No meaningful message in log is provided. – desa May 21 '17 at 18:45