Including a figure in EPS format generated by Gnuplot and creating a PDF using LaTeX -> DVI -> PS -> PDF, the document properties (title, subject, creator etc.) of the generated PDF are taken from the last EPS figure included.
If I try another figure in EPS format not created by Gnuplot (Adobe or so), the document properties are correct.
Code: Select all
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[h]
\centering
\includegraphics{figure.eps}
\caption{Test EPS}
\label{fig:test}
\end{figure}
\end{document}