如何在grid.text()中使用Times new Roman字体?

时间:2012-12-06 08:29:27

标签: r fonts

我正在绘制一个叠加的条形图,我需要在Times New Roman字体中编写图例和标题。默认情况下,它是Arial字体。我怎么能改变它?

grid.text("title", x = 0.33, y = 1, just = c("left", "top"),
           gp = gpar(fontsize = 18, fontface = "bold"))    

我又使用了一个参数fontfamily = "Times",但我收到了错误消息。我如何使用Times字体?

此致

1 个答案:

答案 0 :(得分:5)

尝试使用font=代替fontfamily=

有关更多信息,请参阅奥克兰大学Paul Murrell撰写的博客Specifying Fonts in R。另请参阅James Keirstead的Changing the fonts in R plots

这个问题类似于另一个SO问题Fonts in R plots