在postscript设备中显示字符Delta时出错

时间:2013-11-13 05:11:49

标签: r postscript eps

我有一个包含角色Δ的图例,我无法生成出版质量的EPS数据。 PNG和TIFF运行良好。这是一个错误吗?有没有快速的工作周期?

我在Ubuntu Linux 64位上,运行64位R 3.0.2

setEPS()
postscript("Figure 1.eps", horizontal = FALSE, onefile = FALSE, paper = "special")
plot(1,1)
legend("topleft", c("ΔValue"))
dev.off()


png("Figure 1.png")
plot(1,1)
legend("topleft", c("ΔValue"))
dev.off()

1 个答案:

答案 0 :(得分:1)

如果您使用expression函数创建delta符号,则此方法有效:

plot(1,1)
legend("topleft", expression(paste(Delta, "Value")))

enter image description here