我expression()
在 R 图中使用以获取斜体文本。但似乎我不能在expression
ASCII 字符之外使用 Unicode 符号。有什么办法可以解决这个问题吗?我的目标是fi
在我的 R 条形图中获得各种标签中的连字(连同斜体文本)。
我正在为 Windows 版本 3.0.2 使用 R。
CairoPDF(file = "Ligature1.pdf")
plot.new()
text(x =.5, y = .5, labels = "fi", family = "Times New Roman")
dev.off()
CairoPDF(file = "Ligature2.pdf")
plot.new()
text(x =.5, y = .5, labels = expression(paste(italic(m), "u", "fi", italic(m), sep = "")), family = "Times New Roman")
dev.off()