Rmarkdown 添加自定义 div 到 table 的内容
Rmarkdown add custom div to table of contents
我正在处理 Rmarkdown 文档,我使用 css
:
创建了一个具有多种颜色的标题
---
title: "Test"
output:
html_document:
toc: true
toc_float: true
code_folding: "hide"
theme: readable
---
<div>
<span style="font-size:2em;font-weight: bold">Part 1 </span>
<span style="color:green;font-size:2em;font-weight: bold">Part 2</span>
</div>
如何将句子添加到 table 的内容中?
我尝试将 <div>
的属性更改为 class="section level1 unnumbered" 但这没有用。
我正在处理 Rmarkdown 文档,我使用 css
:
---
title: "Test"
output:
html_document:
toc: true
toc_float: true
code_folding: "hide"
theme: readable
---
<div>
<span style="font-size:2em;font-weight: bold">Part 1 </span>
<span style="color:green;font-size:2em;font-weight: bold">Part 2</span>
</div>
如何将句子添加到 table 的内容中?
我尝试将 <div>
的属性更改为 class="section level1 unnumbered" 但这没有用。