编辑 R Markdown Slidy Presentation 的标题幻灯片

Edit title slide of R Markdown Slidy Presentation

有没有办法编辑 R Markdown Slidy 演示文稿的标题幻灯片?我可以添加 header、页脚和自定义 css:

title: "Slidy Template"
author: ""
date: "June 18, 2015"
runtime: shiny
output: 
  slidy_presentation:
    css: ./styles/Slidy_Styles.css
    includes:
      after_body: ./styles/doc_suffix.html
      before_body: ./styles/header.html

但我不知道如何向幻灯片添加除标题、作者和日期之外的任何内容,或者用自定义 html 模板替换标准的滑动标题幻灯片,就像我做的那样header 和页脚。

有办法吗?

您可以修改 pandoc slidy template 中关于标题页的部分,也可以在 pandoc -D slidy 中找到。

$if(title)$
<div class="slide titlepage">
  <h1 class="title">$title$</h1>
$if(subtitle)$
  <h1 class="subtitle">$subtitle$</h1>
$endif$
  <p class="author">
$for(author)$$author$$sep$<br/>$endfor$
  </p>
$if(date)$
  <p class="date">$date$</p>
$endif$
</div>
$endif$

将生成的文件另存为 default.slidy 在您的 pandoc 模板目录中:

$HOME/.pandoc/templates (unix)
C:\Documents And Settings\USERNAME\Application Data\pandoc\templates (windows XP)
C:\Users\USERNAME\AppData\Roaming\pandoc\templates (windows 7)

如果您不提供标题,Rmarkdown 不会从幻灯片演示文稿中删除标题幻灯片。只需从 yaml 设置中删除标题行,然后添加第一张幻灯片以根据需要提供详细信息。

author: ""
date: "June 18, 2015"
runtime: shiny
output: 
  slidy_presentation:
    css: ./styles/Slidy_Styles.css
    includes:
      after_body: ./styles/doc_suffix.html
      before_body: ./styles/header.html
---
#Slidy Template

**Author**

Affiliations

Date
---