gpt4 book ai didi

html - 使用教程包在 ioslides 演示中使用 datacamp light 练习

转载 作者:可可西里 更新时间:2023-11-01 12:55:57 25 4
gpt4 key购买 nike

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
```

然而,这只是胡说八道。有没有人有让这个工作的经验?

P.S.:目前最好的结果是一个长字母数字字符串,而不是浏览器窗口中的控制台 (Google Chrome)。

最佳答案

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

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

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

导致生成的 HTML 代码未被修改。

enter image description here

要解决由 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>

enter image description here

关于html - 使用教程包在 ioslides 演示中使用 datacamp light 练习,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52081304/

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