Rmarkdown中的文本块

时间:2017-01-22 14:26:34

标签: html css r knitr r-markdown

我非常喜欢在代码块中使用时文本块的外观。我甚至喜欢包装文本阴影的框的边框。我正在努力使用cat('Some paragraph here', comment=NA)Some paragraph here正确包装文本。我注意到有很多关于\n策略或width选项的stackoverflow问题。我还发现作者不建议使用cat,而是使用message或格式化为块。见here

以下是无法正确呈现的段落示例。

```{r comment=NA}
cat('Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.')
```

我理解我所提出的问题可能是knitrrmarkdown不是为此而设计的。但是,如果有css的实现(我不熟悉),那么应该如何编写style.css

在示例中,它就像

```{block, type=FOO}
Your long text here
```

您必须加入style.css

div.FOO {
  font-weight: bold;
  color: red;
}

(我的小知识告诉我这不是为了生成我想要的代码块。)。你应该以某种方式将它们包含在YAML中。

我找不到人们用这种方式格式化文本的这些style.css文件的示例。 我的问题是如何做到这一点?

0 个答案:

没有答案