Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I have incorporate eps file in the latex, but the series are not shown properly. As in attached picture, the right is correct (shown by evince) and the left is what it looks in pdf generated by latex. print screen

I used the following code to embed eps in the pdf file. What is the possible reason for this? how to fix it?

 \begin{figure}[!ht]
 \begin{center}
 \includegraphics[width=4.5cm]{figures/p1-adversaries.eps}%
 \end{center}%\vspace{-0.15in}
 \caption{XXX}\label{exp:p1_adversaries}
 \end{figure}
share|improve this question
1  
Try exporting your graph in pdf or png format from origin and insert in latex file. There are other replacements for originpro like qtiplot (cells.es/Members/cpascual/docs/…) and scidavis (scidavis.sourceforge.net) that provide export facility directly in to tikz code (Qtiplot). – Harish Kumar Apr 20 '12 at 21:21

1 Answer

up vote 4 down vote accepted

One solution will be to export your graph in to .pdf or .png format from origin and then insert it in your latex file.

Also, you may consider using Qtiplot (download from here for windows) and scidavis (download from here) both of which are freely available. Some of the linux distributions have qtiplot within by default. Of these qtiplot allows you to export your graph directly into tikz code, which one can input in to the tex file. From scidavis, you can export the graph into .svg files.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.