0

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:

enter image description here

My real figure should be like this.

enter image description here

zoeylong
  • 123
  • Please help us to help you and add a minimal working example (MWE) that illustrates your problem. It will be much easier for us to reproduce your situation and find out what the issue is when we see compilable code, starting with \documentclass{...} and ending with \end{document}. –  Jun 28 '14 at 05:22
  • 1
    The shown figure reveals, that you are most probably using the command \usepackage[draft]{graphicx}, so the figure is included in draft mode. Remove [draft] and it should show up the graphics .pdf file –  Jun 28 '14 at 05:26
  • As well as what @ChristianHupfer suggests, you should remove the extension in your argument to \includegraphics: use just plots/fig1. – Joseph Wright Jun 28 '14 at 05:31
  • \documentclass[aps,pre,preprint,groupedaddress,draft,showpacs,showkeys]{revtex4-1} \usepackage{graphicx} \usepackage{dcolumn} \usepackage{bm}

    \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:44
  • 2
    The draft option in your document class options is also passed to graphicx which causes the output. Remove draft from that list. – Werner Jun 28 '14 at 05:49

0 Answers0