2016-10-22 56 views
0

下面的代碼創建一個圖並使用美妙的ReporteRs包將其嵌入到Word文檔中。該代碼會生成警告:如何在ReporteRs :: addPlot中設置字體類型和名稱?

"argument fontname is deprecated; please usefontname_serif, fontname_sans,fontname_mono,fontname_symbol instead" 

我一直無法弄清楚如何指定特定的字體,例如, 「英語字體格式一種」。謝謝!

library(ReporteRs) 
library(magrittr) 

x <- rnorm(100); y <- (1.5 * x) + rnorm(100, 0.1) 

options("ReporteRs-fontsize" = 12) 
doc <- docx() %>% 
    addPlot(function() plot(x,y, xlab = "Values of x", main="Test plot"), vector.graphic=TRUE, editable=TRUE, fontname="Times New Roman") 
writeDoc(doc, file = "test.docx") 

回答

相關問題