gpt4 book ai didi

r - 在 Xaringan 中保留 <- 或 != 等字符序列,防止替换

转载 作者:行者123 更新时间:2023-12-04 15:41:39 25 4
gpt4 key购买 nike

我正在为 R 的短期类(class)构建 Xaringan 平台。我需要学生学习作业的字符序列 <-和关系运算符,如 != .

然而,编织到幻灯片用更优雅的显示字符替换了几个字符序列。例如,<-变为左向箭头 (←)。

我可以保留幻灯片输出中的原始字符吗?

我仍然在单个反引号 (`) 内获得用于代码格式化的替换,甚至在 R 代码块 (```) 内。使用\转义字符没有帮助。

---
# Two ways to save variables to memory

R has two ways to assign variables: `=` and `<-`.

The following expressions are equivalent:

`turnout_rate = .598` and `turnout_rate <- .598`

当编织成幻灯片时,所有 <-上面被替换为左箭头 (←) 。我想保留原始字符 <- .

预先感谢您的帮助!

最佳答案

您可能有一个 CSS 样式表,它需要一种类似于 Fira Code 的字体。其中 <-呈现为连字。您可以使用 Right Click -> Inspect Element 进行测试在预览/浏览器中。

您可以通过一些自定义 CSS 代码更改使用的字体,例如:

.remark-code, .remark-inline-code {
font-family: 'Fira Mono', 'Source Code Pro', monospace;
}

您必须在 YAML header 中指定自定义 CSS 文件,例如对于 default主题和一个名为 custom.css 的文件:

---
output:
xaringan::moon_reader:
css: ["default", "custom.css"]
---

引用资料:

关于r - 在 Xaringan 中保留 <- 或 != 等字符序列,防止替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57680995/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com