我正在制作一个可在 R markdown 中反应的表格,并且我想要一个带有换行符的列组。最小的例子在这里:
---
output: pdf_document
---
```{r, echo=F}
library(reactable)
data = mtcars[1:4, 1:4]
reactable(
data,
columnGroups = list(colGroup(name = "This is Line 1 of the group name \\ This is Line 2 of the group name", columns=names(data)))
)
请注意,\\
刚刚打印在最终输出中。我已经尝试过其他 HTML-y 的东西,比如<br />
并且\n
它们也被打印在最终输出中。
有什么想法吗?
谢谢!