49

我无法在 geom_text 中设置我的字体。这是我尝试过的:

    labels_test<-data.frame(a=c("a","b","c"),b=c(1:3),c=c(3:1))
    # works
    ggplot () + geom_text(data=labels_test,aes(b,c,label=a),color="blue")
    # does not work: 
    ggplot () + geom_text(data=labels_test,aes(b,c,label=a),color="blue",family="Times")
    # error message:  In grid.Call.graphics(L_text, as.graphicsAnnot(x$label), x$x, x$y,:
    # Font family not found in Windows font database

我已经按照此处的说明导入了所有字体。有什么想法还有什么问题吗?

4

4 回答 4

38

我会尝试”

windowsFonts(Times=windowsFont("TT Times New Roman"))

在执行此操作时,您明确指定了 Windows 字体映射。

于 2013-02-06T16:31:27.340 回答
37

其他答案没有解决我的问题(Windows 10)。

我的系统的关键是extrafont::loadfonts(device="win") library(ggplot2).

extrafont::loadfonts(device="win")
#extrafont::fonttable()
#extrafont::font_import("C:/Windows/Fonts/", pattern = "RobotoCondensed")
library(ggplot2)

字体位置的常见问题:

我以前从一个随机文件夹中安装了字体extrafont::font_import()。因此extrafont::fonttable()引用了我C:\Windows\Fonts\文件夹中的文件。为了解决这个问题,我重置了我extrafonts::fonttable()的 withinstall.packages("extrafontdb")以清除对不同位置字体的引用。

关于保存的编辑:

深入兔子洞。储蓄是一个额外的挑战。为了做到extrafont::loadfonts(device="pdf")这一点,我必须确保我的字体extrafont::fonttable()没有相同的姓氏和粗体/斜体状态。我进行了编辑extrafont:::fonttable_file()以解决我家中任何重复的粗体/斜体字体。使用 Roboto Condensed 我将浅色字体的字体系列重命名为“Roboto Condensed Light”。

保存ggsave(device="pdf")然后工作。在 acrobat 中打开文件,字体显示不正确。我尝试使用 ghostscript 嵌入字体以及使用 cairo_pdf 设备。最简单和最实用的解决方案是在 Illustrator 中打开 .pdf 文件(那里的字体显示正常),然后立即将它们重新保存为 .pdf。

关于保存的编辑 2:

另存为 .eps 是在 illustrator 和 acrobat 中保存文件的唯一方法。结果是完美的。ggsave(g, file="Figure.eps", fonts=c("FONT FAMILIES USED", "Roboto Condensed", "Roboto Condensed Light"))

最终绘图代码:

这是我在绘图之前使用的最后一组调用。注释是只需要运行一次的设置命令。

# Plotting
extrafont::loadfonts(device="pdf")
extrafont::loadfonts(device="postscript")
# extrafont::font_import("C:/Windows/Fonts/", pattern = "RobotoCondensed", prompt = F)
# extrafont::fonttable()
# C:/Program Files/R/R-3.3.1/library/extrafontdb/fontmap/ - Change lights to "Roboto Condensed Light"
# After ggsave(device="pdf") or ggsave(device="eps") open and resave the file in Illustrator
library(hrbrthemes)
library(ggplot2)
于 2017-03-02T17:55:35.917 回答
19

您必须使用以下命令导入系统字体:

font_import(paths = NULL, recursive = TRUE, prompt = TRUE,pattern = NULL)
于 2016-11-21T17:01:21.780 回答
3

我在这里尝试了不同的解决方案,但没有一个对我有用(win10,R 3.4.3)。这对我有用:

install.packages("extrafont")
library(extrafont)
loadfonts(device = "win")

不管我是在之前还是之后library(ggplot2)

资料来源:

  1. https://cran.r-project.org/web/packages/extrafont/extrafont.pdf
  2. 更改 ggplot2 中的字体
于 2020-04-21T08:34:28.740 回答