I'm using latexian to write my latex file. I need to insert a figure in it. I created a "plots" folder in my Latex folder and my code is as follow:
\begin{figure}[h]
\includegraphics{plots/fig1.eps}
\caption{\label{fig1} Reaction/Diffusion process of Ca$^{2+}$ and IP$_{3}$ metabolism included in the model.}
\end{figure}
A file named fig1-eps-converted-to.pdf is created in the "plot" folder automatically. However, the previewed .pdf can not show the real figure.
What should I do to show the real figure in my paper?
This is the figure shown in my previed .pdf. It's not supposed to be like this:

My real figure should be like this.

\documentclass{...}and ending with\end{document}. – Jun 28 '14 at 05:22\usepackage[draft]{graphicx}, so the figure is included indraftmode. Remove[draft]and it should show up the graphics.pdffile – Jun 28 '14 at 05:26\includegraphics: use justplots/fig1. – Joseph Wright Jun 28 '14 at 05:31\begin{document} A schematic of our model for the dynamics of intracellular calcium oscillations and intercellular calcium diffusion is shown in Fig.~\ref{fig1}.
\begin{figure}[h] \includegraphics{plots/fig1.eps} \caption{\label{fig1} Reaction/Diffusion process of Ca$^{2+}$ and IP$_{3}$ metabolism included in the model. } \end{figure} \bibliography{paper}
\end{document}
– zoeylong Jun 28 '14 at 05:44draftoption in your document class options is also passed tographicxwhich causes the output. Removedraftfrom that list. – Werner Jun 28 '14 at 05:49draftmode change? – Werner Jun 28 '14 at 05:52