I have the following MWE with a *.PS figure in it. I would like to first compile to DVI, then PDF using PDFLaTeX. The conversion to DVI works fine, but then when using PDFLaTeX I get an error. I thought including ps2pdf was enough?
Code: Select all
\documentclass[10pt, a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage[ansinew]{inputenc}
\usepackage{graphicx}
\usepackage[ps2pdf]{hyperref}
\begin{document}
\begin{figure}[H]
\centering
\includegraphics[width=125mm]{fig1.ps}
\caption{asd}
\label{fig1}
\end{figure}
\end{document}
Niles.