在带有Rmarkdown的ioslides演示文稿中,可以通过按h
在每张幻灯片中选择enable highlight mode。有什么方法可以使高亮模式默认为启用,并通过按h
禁用它。
答案 0 :(得分:0)
默认情况下没有内置选项启用高亮模式。
这来自以下JavaScript行:here和here。
当扬声器更改幻灯片时,高光模式将被删除。
但是,默认情况下,有一种方法可以突出显示每张幻灯片。
在您的项目中,创建一个新文件(以实例highlight.html
命名)。
在此文件中,复制以下内容:
<script type="text/javascript">
SlideDeck.prototype.prevSlide = function(opt_dontPush) {
if (this.curSlide_ > 0) {
var bodyClassList = document.body.classList;
bodyClassList.add('highlight-code');
// Toggle off speaker notes if they're showing when we move backwards on the
// main slides. If we're the speaker notes popup, leave them up.
if (this.controller && !this.controller.isPopup) {
bodyClassList.remove('with-notes');
} else if (!this.controller) {
bodyClassList.remove('with-notes');
}
this.prevSlide_ = this.curSlide_--;
this.updateSlides_(opt_dontPush);
}
};
SlideDeck.prototype.nextSlide = function(opt_dontPush) {
if (!document.body.classList.contains('overview') && this.buildNextItem_()) {
return;
}
if (this.curSlide_ < this.slides.length - 1) {
var bodyClassList = document.body.classList;
bodyClassList.add('highlight-code');
// Toggle off speaker notes if they're showing when we advanced on the main
// slides. If we're the speaker notes popup, leave them up.
if (this.controller && !this.controller.isPopup) {
bodyClassList.remove('with-notes');
} else if (!this.controller) {
bodyClassList.remove('with-notes');
}
this.prevSlide_ = this.curSlide_++;
this.updateSlides_(opt_dontPush);
}
};
</script>
现在,修改ioslides演示文稿的YAML标头:
---
title: "Highlighted"
author: "Romain Lesur"
date: "26/06/2018"
output:
ioslides_presentation:
includes:
after_body: highlight.html
---
应该可以解决问题。