【发布时间】:2020-09-15 21:53:37
【问题描述】:
我想在ggplot2 图表中使用免费字体Lato,因为我的R markdown 文档的其余部分都是用这种字体设置的。
该字体已安装在我的系统上并在字体册中可用(仅一次)。
所有可用字体都使用extrafont 包加载并在extrafontdb 中注册。
当我将 Markdown 文档编成 PDF 时,Lato 中的所有文本都已正确排版。但是,我的 ggPlots 的绘图标签没有显示。
我还收到以下警告消息:
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font width unknown for character 0x20
在使用extrafont::embed_fonts 嵌入文档中包含的字体后,所有图形的绘图标签都使用Lato 作为字体显示,但是
- 绘图标签在单词之间不包含任何空格,
- 任何引用(内部链接、URL、引文)都不再起作用。
一个 MWE,包括带有和不带有 Lato 的 ggPlot 图形,如下所示 (Lato is freely available here)
之后要嵌入字体,需要运行embed_fonts("TestRmd.pdf", outfile="TestRmd_embedded.pdf")
非常感谢任何帮助!
MWE:
---
title: "Embedding Fonts in PDF"
output: pdf_document
urlcolor: blue
---
```{r echo=FALSE}
library(ggplot2)
```
### Plot with standard font {#standard}
```{r echo=FALSE, out.width = '30%'}
ggplot(mtcars, aes(x=wt, y=mpg)) + geom_point() +
ggtitle("Fuel Efficiency of 32 Cars") +
xlab("Weight (x1000 lb)") + ylab("Miles per Gallon")
```
### Load fonts and set font for ggplots globally
```{r include=FALSE}
# install.packages("extrafont") # see https://github.com/wch/extrafont/
library(extrafont)
# font_import() # run once
loadfonts() # loadfonts
# globally set ggplot2 theme and font ("Lato Light")
theme_set(theme_minimal(base_size=12, base_family="Lato Light"))
```
### Plot with newly set standard font (= Lato) {#lato}
```{r echo=FALSE, out.width = '30%'}
ggplot(mtcars, aes(x=wt, y=mpg)) + geom_point() +
ggtitle("Fuel Efficiency of 32 Cars") +
xlab("Weight (x1000 lb)") + ylab("Miles per Gallon")
```
### Plot with Impact font {#impact}
```{r echo=FALSE, out.width = '30%'}
ggplot(mtcars, aes(x=wt, y=mpg)) + geom_point() +
ggtitle("Fuel Efficiency of 32 Cars") +
xlab("Weight (x1000 lb)") + ylab("Miles per Gallon") +
theme(text=element_text(size=16, family="Impact"))
```
### Run to embed fonts
```{r eval=FALSE, include=TRUE}
embed_fonts("TestRmd.pdf", outfile="TestRmd_embedded.pdf")
```
### Links test
Links test 1 (internal reference): [Headline standard](#standard)
Links test 2 (URL): [RStudio has become a Public Benefit Corporation](https://blog.rstudio.com/2020/01/29/rstudio-pbc)
插件:
一个更简单的问题,但可能与同一问题有关:
library(extrafont)
extrafont::font_import()
p <- ggplot(iris, aes(Sepal.Length, Sepal.Width)) + geom_point() + theme_minimal(base_size=10, base_family="Lato Light")
ggsave(p, filename = "iris.pdf")
保存的 pdf 中的绘图不包含任何标签。在几个 SO(例如1、2)网站上使用 cairo_pdf 的建议并没有帮助并导致以下错误:
ggsave(p, filename = "iris.pdf", device = cairo_pdf)
# In dev(filename = filename, width = dim[1], height = dim[2], ...) :
# failed to load cairo DLL
【问题讨论】:
标签: r ggplot2 r-markdown markdown extrafont