avoid blank spaces both in tha path and in the name of your figures. If you really need to use spaces, the grffile package could be of interest to you.
On a side note, I see that you are using a \label command for a figure environment without the corresponding \caption command; this will produce undesired results when referencing the figure. Inside the floating environments (figure, table) the \label command should always appear after the corresponding \caption command.
I have found friffle onthe web. It's part of the Oberdiek package. How di I install it into TeXnicCenter. The instructions that come with it are aminly for unix machines,
I guess I just need to know where to actually store teh files and then what command to use to add the program. Do I just add griffle or should I add the whole of Oberdiek.
I guess you're using MiKTeX. In that case use the MiKTeX package manager, click Start/ MiKTeX/ Browse packages, I recommend to install the complete Oberdiek bundle with MiKTeX.
\begin{figure}
\centering
\includegraphics{\griffle{C:/Documents and Settings/Hugh/My Documents/PhD/vol curve.JPG}}
\label{fig:vol curve}
\end{figure}
However only the bottom corner of the image appears the rest is off the side of the page. + the image seems too mig and "zoomed in" which makes it look slightly fuzzy?
also gmedina
gmedina wrote:On a side note, I see that you are using a \label command for a figure environment without the corresponding \caption command; this will produce undesired results when referencing the figure. Inside the floating environments (figure, table) the \label command should always appear after the corresponding \caption command.
The code you see was generated automatically by the TeXnicCenter package. I do not have any \caption command to put \label after? can you clarify please?
please use the Code button for including TeX code and the Quote button if you refer to another posting like above, I've edited your post to show how it would look like.
Regarding your question I'm sure gmedina will answer it.
\begin{figure}[h]
\includegraphics[scale=0.25]{vol curve.eps}
\caption{Diagram showing the wavefunction $\psi\left(x\right)_{1}$ in the left region and $\psi\left(x\right)_{2}$ in the right}
\end{figure}
Is displays but is still shows the file name twice and then displays the image. Obviously I do no want the file name to eppear and it pushes the pitture off to the left.
It seems like I am getting there I just need to know how to stop the file name from appearing and hot to position the eps file better.
Is displays but is still shows the file name twice and then displays the image... It seems like I am getting there I just need to know how to stop the file name from appearing
that's usually caused by spaces in the file name or path like mentioned by gmedina, as can be seen in the file name above.
\begin{figure}[h]
\centering
\includegraphics[scale=0.25, angle=-1]{volcurve.eps}
\caption{Diagram showing the wavefunction $\psi\left(x\right)_{1}$ in the left region and $\psi\left(x\right)_{2}$ in the right}
\end{figure}