gpt4 book ai didi

R Markdown 将空白添加到 HTML 输出

转载 作者:行者123 更新时间:2023-12-03 15:22:29 31 4
gpt4 key购买 nike

我发现了一些向 R Markdown 文档添加空格的建议,包括 <br> , \newpage和其他一些事情。

这些不适用于我的 HTML 输出,也许有更好的方法。我想在下面的例子中做两件事:

(1) 在标题和第一个标题之间添加额外的空格

(2) 在第一段和第二段之间添加额外的空格

让我们使用下面显示的默认 R Markdown 文档。我将如何为 HTML 输出完成这个额外的空白?

---
title: "Here is the title"
output: html_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

## R Markdown

FIRST PARAGRAPH This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.

SECOND PARAGRAPH you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

最佳答案

使用 div 在您的 R Markdown file 中划分部分的元素.每个内部div标签,分配每个 margin-bottom property 一个边际值。接近 100% 的值会增加空白的数量。

感谢@Martin Schmelzer 对 SO 帖子的回答 Rmarkdown html whitespace .

SS of HTML Output

---
title: "Here is the title"
output: html_document
---
<div style="margin-bottom:100px;">
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
</div>
## R Markdown
<div style="margin-bottom:50px;">
</div>
FIRST PARAGRAPH This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.

SECOND PARAGRAPH you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

关于R Markdown 将空白添加到 HTML 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49089842/

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