2
votes

I'm actually using the CambridgeUS theme for my Beamer using RMarkdown.

output: 
  beamer_presentation:
    theme: "CambridgeUS"
header-includes:
  - \usepackage{color}
  - \usepackage{amsmath}
  - \setbeamertemplate{navigation symbols}{}

I wanna know how to delete the date in the footline and how to change the value taken as the full name (author) to only take last name.

It's possible using only tex as here but I don't succeed using RMarkdown.

Do you already face this issue ?

1

1 Answers

0
votes

To remove the date from the footline, you could specify en empty optional argument in \date[]{\today}.

To show only the last name in the footline, define a short version for the author: \author[Smith]{Jack Smith}


\documentclass{beamer}

\usetheme{CambridgeUS}

\date[]{\today}
\author[Smith]{Jack Smith}

\begin{document}

\begin{frame}
    abc
\end{frame} 

\end{document}

The identical code also works in rmarkdown:

---
output: 
  beamer_presentation:
    theme: "CambridgeUS"
header-includes:
  - \setbeamertemplate{navigation symbols}{}
  - \date[]{\today}
  - \author[Smith]{Jack Smith}
---

test

enter image description here