Edit title slide of R Markdown Slidy Presentation

后端 未结 2 1579
一个人的身影
一个人的身影 2021-02-04 19:51

Is there a way to edit the title slide of a R Markdown Slidy Presentation? I am able to add the header, footer, and custom css:

title: \"Slidy Template\"
author:         


        
2条回答
  •  情书的邮戳
    2021-02-04 20:26

    Rmarkdown will not remove the title slide from a slidy presentation if you do not give a title. Simply, remove the title line from the yaml setting and add the first slide to give the details as you please.

    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
    ---
    

提交回复
热议问题