R Notebook 中折叠的 TOC

collapsed TOC in R Notebook

我似乎无法在 html_notebook 中获得 collapsed: FALSE

使用下面的 YAML,我没有得到折叠的目录。

---
title: "R Notebook TEST"
output:
  html_notebook:
    toc: yes
    toc_float: TRUE
    collapsed: FALSE
    theme: flatly
 ---

我是不是忽略了手册中的内容?

我认为您只需要在 YAML header 中修复您的身份,即:

---
title: "R Notebook TEST"
output:
  html_notebook:
    toc: yes
    toc_float:
      collapsed: FALSE
    theme: flatly
---

这对我有用: