如何在windows上使用带有knitr的unicode字符串

时间:2018-05-14 17:54:11

标签: r knitr

这是一个简单的降价文件:

---
title: "blah"
output: html_document
---

```{r}
library(tidyverse)

ggplot(tibble(x=1:2)) +
  aes(x=x, y=x) +
  geom_col() +
  labs(y = "← low      high →")
```

注意箭头。当通过控制台将代码运行到RStudio的绘图选项卡时,它们会显示出来。但对于HTML编织,它们不起作用:

enter image description here

1 个答案:

答案 0 :(得分:3)

使用unicode而不是实际字符:

library(tidyverse)

ggplot(tibble(x=1:2)) +
  aes(x=x, y=x) +
  geom_col() +
  labs(y = "\u2190 low      high \u2192")

enter image description here