我正在尝试xaringan
使用 knitr 选项在演示文稿中创建各种幻灯片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
.