In a LaTex beamer presentation generated with rmarkdown::beamer_presentation, how can I remove the slide numbers for specific slides?
Since the slides contain plots and tables generated by R-markdown
, plain LaTex
approaches like the attempt below likely won't work.
``` {=latex}
\begin{frame}[noframenumbering]{Frame name}
Frame without slide number but with Rmd-generated tables and plots.
- All other frames still have slide numbers.
\end{frame}
```