Мне нравятся плавающие оглавления в моем пакете Rmarkdown и prettydoc, но попытка использовать оба кажется невозможным.
Я просто хочу добавить плавающее оглавление в мой HTML-документ Pretty.Это мой рабочий заголовок yaml
title: "testing TOCs"
author: "Joe"
output:
prettydoc::html_pretty:
theme: leonids
highlight: github
toc: true
При добавлении параметра с плавающим оглавлением выдается сообщение об ошибке, запрашивающее тему.
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>