I have been trying to insert a PDF document without any success. I have used both TeXmaker and WinEdt. When I am using a PDF file, I make sure to compile using PDFLaTeX, and I have even tried to use an EPS file and I compiled with LaTeX. It still doesn't work. Each time, it gives me the same error:
Code: Select all
! LaTeX Error: File `Topics' not found.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
But I can assure you that both files "Topics.pdf" and "Topics.eps" exist and are on my computer. Here is what I have:
Code: Select all
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure*}[t]
\centering
\includegraphics[width=1.0\textwidth]{Topics}
\caption{Test}
\end{figure*}
\end{document
Any suggestion on how to make this work?