是否可以在 R Markdown 的总计数中跳过某些幻灯片?
Is it possible to skip some slides in the total count in R Markdown?
在使用 R Markdown 和 xaringan 编译的演示文稿中,每张幻灯片将累计幻灯片计数加 1。但是,我想修改它并确保某些幻灯片不会影响累积(和总)幻灯片计数。
文档的序言是:
---
title: "my title"
author: "me myself"
output:
xaringan::moon_reader:
css: xaringan-themer.css
lib_dir: libs
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
ratio: "16:9"
beforeInit: "macros.js"
---
只需将 count: false
添加到您不希望计入计数的特定幻灯片。
在使用 R Markdown 和 xaringan 编译的演示文稿中,每张幻灯片将累计幻灯片计数加 1。但是,我想修改它并确保某些幻灯片不会影响累积(和总)幻灯片计数。
文档的序言是:
---
title: "my title"
author: "me myself"
output:
xaringan::moon_reader:
css: xaringan-themer.css
lib_dir: libs
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
ratio: "16:9"
beforeInit: "macros.js"
---
只需将 count: false
添加到您不希望计入计数的特定幻灯片。