gpt4 book ai didi

r - rnotebook 内联 block 中的换行符或换行符

转载 作者:行者123 更新时间:2023-12-05 02:27:24 24 4
gpt4 key购买 nike

如何在内联 block 中换行?渲染一个word文档

---
title: "R Notebook"
output: word_document
---

Cat `r cat("not \n working")`

writeLines `r writeLines("not \n working")`

print `r print("not \n working")`

capture.output + cat `r capture.output(cat("not \n working"))`

```{r results='asis'}
cat("not \n working")
```

基于 shafee 和 gaut 答案的编辑解决方案使用三重转义字符 \

---
title: "R Notebook"
output: word_document
---

Text `r "Simple \\\n is \\\n better"`

最佳答案

我们可以使用:

```{r results='asis'}

cat(paste("it is", "\\\n", "working"))

```

关于r - rnotebook 内联 block 中的换行符或换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73252599/

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