3

这些tutorial包允许在 html 文档中包含一个datacamp交互式R窗口:

    ---
title: "Example Document"
output:
  html_document:
    self_contained: FALSE
---

```{r, include=FALSE}
tutorial::go_interactive()
```

By default, `tutorial` will convert all R chunks.

```{r}
a <- 2
b <- 3

a + b
```

因此,我认为它可以在 HTML5 演示文稿中使用它,例如:

---
title: "Example Document"
output:
  ioslides_presentation:
    self_contained: FALSE
---

```{r, include=FALSE}
tutorial::go_interactive()
```

By default, `tutorial` will convert all R chunks.

```{r}
a <- 2
b <- 3

a + b
```

然而,这只制造了废话。有没有人有让这个工作的经验?

PS:迄今为止最好的结果是一个长的字母数字字符串,而不是浏览器窗口(谷歌浏览器)中的控制台。

4

1 回答 1

3

在转换过程中,tutorial包生成的 HTML 被编码。一个简单的解决方案是像这样包装你的块:

<!--html_preserve-->
```{r}
a <- 2
b <- 3

a + b
```
<!--/html_preserve-->

导致生成的 HTML 代码保持不变。

在此处输入图像描述

要修复由 CSS 冲突导致的故障,您可以在文档开头添加以下 CSS:

    <style>
/* Rearrange console label */
.datacamp-exercise ol li, .datacamp-exercise ul li {
  margin-bottom: 0em !important;
}

/* Remove bullet marker */
.datacamp-exercise ol li::before, .datacamp-exercise ul li::before {
  content: '' !important;
}
</style>

在此处输入图像描述

于 2018-08-31T14:13:58.310 回答