Starting about a month ago (roughly), a LaTeX file on my flashdrive (which calls upon postscript files on the same flashdrive) that used to compile properly no longer does.
Specifically, I now get error messages telling me that my postscript (.ps) files cannot be found. LaTeX can no longer determine the "size" of the graphic ("no Bounding Box"?)
This NEVER used to happen and I haven't changed my .tex file at all. The only difference in my .ps files is that now when I open them directly, the finished graph appears, whereas about a month ago the .ps file was just a bunch of code/text that LaTeX would read in order to create the graph in the final pdf file.
Can anybody please help me with this dilemma? Here is the .ps portion of my code in my LaTeX file:
Code: Select all
\begin{figure}[h]
\hspace{0.033\textwidth}
\begin{minipage}{0.45\textwidth}
\includegraphics[height=2in,width=2.6in]{F:/arclengthplot1.ps}
\caption{}
\end{minipage}
\begin{minipage}{0.45\textwidth}
\includegraphics[height=2in,width=2.6in]{F:/arclengthplot2.ps}
\caption{}
\end{minipage}
\hfill
\end{figure}