我正在尝试使用knitr的选项xaringan
在results='assis'
演示文稿中创建各种幻灯片,但这不起作用。
我使用了以下代码:
---
title: "Presentation"
author: ""
date: ""
output:
xaringan::moon_reader:
lib_dir: libs
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
```{r, results='asis'}
for (i in 1:3) {
cat("---", "\n")
cat("## Slide", i, "\n")
cat("Hello", i)
cat("\n")
}
'''
我希望输出为3页,但实际输出为一页。我还尝试了asis_output
而不是cat
。
答案 0 :(得分:1)
您几乎拥有了它。更改
cat("---", "\n")
到
cat("---\n")
前者在---
和\n
之间添加了一个空格,并且在xaringan
/ remark.js
中,---
之后不应有空格,否则它将成为水平规则。