我正在学习R Markdown
来记录我的R代码。并且发现以下R Markdown文档的格式很好:
http://rmarkdown.rstudio.com/html_document_format.html
我想做类似的事情,可以根据浏览器的窗口大小自动调整页面宽度。
以下是我的YAML设置:
---
title: "testing"
output:
rmarkdown::html_document:
toc: true
toc_depth: 4
toc_float:
collapsed: false
theme: yeti
number_sections: true
df_print: paged
---
我该如何修改它以产生与上面链接相同的效果?谢谢!