如何在R图中更改希腊字母的字体

时间:2013-09-30 13:47:32

标签: r plot expression

如何更改R中绘图上显示的希腊字母的样式?例如,我使用expression()来注释带有小写phi的图:

plot(1:10)
text(2,9, expression(phi["1,2"]), cex=2)    

enter image description here

我希望phi的样式与文档中的样式相匹配(例如,使用MS Word“插入符号”命令),如下所示:

enter image description here

任何想法如何做到这一点?

1 个答案:

答案 0 :(得分:3)

使用varphi代替phi

text(2,9, expression(varphi["1,2"]), cex=2) 

enter image description here