Edit title slide of R Markdown Slidy Presentation -


is there way edit title slide of r markdown slidy presentation? able add header, footer, , custom 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 

but can't figure out how either add besides title, author, , date slide, or else replace standard slidy title slide custom html template, header , footer.

is there way this?

you can modify part title page in pandoc slidy template, found 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$ 

save resulting file default.slidy in pandoc template directory :

$home/.pandoc/templates (unix) c:\documents , settings\username\application data\pandoc\templates (windows xp) c:\users\username\appdata\roaming\pandoc\templates (windows 7) 

Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -