0

I am using R Markdown to produce a Beamer presentation. How can I put the date that authomatically updates his values? The current setting are below:

title: "MyTitle"
author: "MyName"
date: "19th April 2015"
 output:
 beamer_presentation:
 incremental: no
 keep_tex: yes
 toc: yes
ioslides_presentation:
incremental: yes
header-includes:
 - \usepackage{url}
 bibliography: myBib.bib
Martin Schmelzer
  • 23,283
  • 6
  • 73
  • 98
Giorgio Spedicato
  • 2,413
  • 3
  • 31
  • 45

1 Answers1

2

Just use \today, I think it should work but only if your output is PDF (which uses LaTeX) or a Beamer presentation.

SabDeM
  • 7,050
  • 2
  • 25
  • 38