从在ioslides中启用的高亮模式开始

时间:2018-06-26 07:35:55

标签: r markdown r-markdown presentation ioslides

在带有Rmarkdown的ioslides演示文稿中,可以通过按h在每张幻灯片中选择enable highlight mode。有什么方法可以使高亮模式默认为启用,并通过按h禁用它。

1 个答案:

答案 0 :(得分:0)

默认情况下没有内置选项启用高亮模式。
这来自以下JavaScript行:herehere
当扬声器更改幻灯片时,高光模式将被删除。

但是,默认情况下,有一种方法可以突出显示每张幻灯片。
在您的项目中,创建一个新文件(以实例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
---

应该可以解决问题。