Graphics, Figures & TablesEps file not found

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
DavidKing
Posts: 4
Joined: Thu Feb 05, 2009 7:47 pm

Eps file not found

Post by DavidKing »

Hello Latex community,

I am new to this forum, so I'd like to say hi and introduce myself. My name is David and I am a graduate student in math. I am having some trouble getting my latex code to run and I was hoping you could help me.


My preamble contains the following packages.

Code: Select all

\usepackage{abthesis,amsmath,amsfonts,amssymb}
\usepackage{statapa,verbatim}
\usepackage{times,epsfig,epsf}
\usepackage{amsfonts,latexsym,pstricks}
\usepackage{graphics,epstopdf}
\usepackage{graphicx,color}
I insert the graphics that I want to insert with the command:

Code: Select all

\begin{figure}[htp]
\begin{center}
\includegraphics[scale=0.6]{isomorphic.eps}
\end{center}
\caption[Fig 2]{Figure illustrating the three Hilbert spaces of primary importance along with the congruence relations between each space.}\label{Congruence Graph}
\end{figure}
However, when I did this the code always says" Error 'ismorphic.eps' not found. This is strange to me because I have the file saved in my folder

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Eps file not found

Post by localghost »

At first you should clean up your list of packages and get rid of some obsolete ones and double loaded.

Code: Select all

\usepackage{abthesis}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{statapa,verbatim}
\usepackage{mathptmx}
\usepackage{latexsym,pstricks}
\usepackage{epstopdf}
\usepackage{graphicx}
\usepackage{xcolor}
The rest of your code seems correct. The log file will give detailed information. Please attach it to your next post.

Supplement:
The solution is in the detail. In your code you try to include the file isomorphic.eps, but the error message says that a file called ismorphic.eps could not be found. So, check whether you gave the right name.


Best regards and welcome to the board
Thorsten¹
DavidKing
Posts: 4
Joined: Thu Feb 05, 2009 7:47 pm

Re: Eps file not found

Post by DavidKing »

Thanks Thorsten! I got it to work bu only accident. For some reason I shortened the name and it suddenly works. It's all a big mystery to me. Thanks for the tip on the packages. :)
Post Reply