选项结果='asis'在xaringan演示文稿中起作用吗?

时间:2019-10-05 20:28:58

标签: r-markdown xaringan

我正在尝试使用knitr的选项xaringanresults='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

1 个答案:

答案 0 :(得分:1)

您几乎拥有了它。更改

cat("---", "\n")

cat("---\n")

前者在---\n之间添加了一个空格,并且在xaringan / remark.js中,---之后不应有空格,否则它将成为水平规则。