将R图导出为eps - 不在Latex中渲染

时间:2014-01-14 11:05:27

标签: r latex eps

我在尝试导出R图时遇到问题,当我用Google搜索时,我找到了解决方案:

postscript(file="result.eps", onefile=FALSE, horizontal=FALSE)

使用图像查看器查看时,eps图像可正常显示。

图像需要包含在pdf报告中,我正在准备Latex。问题是,在从Latex准备的pdf中,图表没有按预期显示。缺少一些东西(轴刻度,轴标签和图例文本)。 我只想提一下完成 - 我通过在par(new = T)的其他图上添加图来创建图。

1 个答案:

答案 0 :(得分:2)

在Linux shell上尝试此命令,其中plot.eps是您的eps文件:

ps2eps -l -B -s b0 -c -n -f plot.eps 

它将转换为plot.eps.eps,但会正确显示。有同样的问题,但这解决了这个问题。

如果安装了texmaker,我应该有ps2eps(我也安装了lynx)。

sudo apt-get install texmaker
sudo apt-get install lynx