Rmarkdown中的prettydoc浮动目录要求主题

时间:2019-07-08 15:43:21

标签: r r-markdown

我喜欢在我的Rmarkdown和prettydoc软件包中使用浮动TOC,但是尝试同时使用这两者似乎是不可能的。

我只想向我的HTML Pretty文档添加一个浮动目录。这是我工作的yaml标头

title: "testing TOCs"
author: "Joe"
output:
  prettydoc::html_pretty:
    theme: leonids
    highlight: github
    toc: true

添加浮动TOC选项会发出一条错误消息,询问主题。

title: "Test floating TOC"
author: "joe"
output:
  prettydoc::html_pretty:
    theme: leonids
    highlight: github
    toc: true
    toc_float: true


Error in rmarkdown::html_document(fig_retina = fig_retina, css = NULL,  : 
  You must use a theme when specifying the 'toc_float' option
Calls: <Anonymous> ... do.call -> <Anonymous> -> <Anonymous> -> <Anonymous>

2 个答案:

答案 0 :(得分:1)

您可能应该尝试 tasks: - name: Run script shell: "./runscript.sh {{param1}} {{param2}} {{param3}}" args: chdir: "../../path/to/script/" run_once: true delegate_to: localhost 。它提供了toc支持和出色的视觉效果- https://cran.r-project.org/web/packages/rmdformats/vignettes/introduction.html

答案 1 :(得分:0)

根据GitHub文档,toc_float不适用于prettydoc。