Hello:
I am using the following packages in my TeXnicCenter to output my file into .pdf.
\documentclass{article}
\ifpdf
\usepackage[pdftex]{graphicx}
\pdfcompresslevel=9
\else
\usepackage{graphicx}
\fi
\usepackage{pdflscape}
\usepackage{array}
\usepackage{amsmath}
My LaTeX code was:
\begin{figure}
\centering
\includegraphics[clip=true,trim=35 80 45 65]{D:/Mypapers/fig1.pdf}
\label{fig:fig1}
\end{figure}
But the output .pdf file has the pathname of my graphics file inserted in the figure! i.e., "Mypapers/fig1.pdf"
How do I remove the pathname literally written across the figures in my output .pdf file?
ThanQ
Graphics, Figures & Tables ⇒ Remove Pathname from .pdf output
NEW: TikZ book now 40% off at Amazon.com for a short time.

Re: Remove Pathname from .pdf output
When I first open up the latex file via TeXnicCenter, I do select 'load this project.' And I see all my figures and tables in the left pane under Navigator of the Editor.
I tried just deleting {D:/....} from
\includegraphics[]{D:/}
but then the graphs are not found. How do we delete the directory from the .pdf output?
I tried just deleting {D:/....} from
\includegraphics[]{D:/}
but then the graphs are not found. How do we delete the directory from the .pdf output?

Re: Remove Pathname from .pdf output
The following soln from poster Localghost worked:
"Regarding your problem you should avoid any special characters (blank spaces, underscores, ...) in the name and the path of the file. As an alternative you can try the grffile package from the oberdiek bundle."
"Regarding your problem you should avoid any special characters (blank spaces, underscores, ...) in the name and the path of the file. As an alternative you can try the grffile package from the oberdiek bundle."