我有一个包含角色Δ
的图例,我无法生成出版质量的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()
答案 0 :(得分:1)
如果您使用expression
函数创建delta符号,则此方法有效:
plot(1,1)
legend("topleft", expression(paste(Delta, "Value")))