Presentation title ======================================================== author: First name, Last name date: Current date transition: none transition-speed: fast navigation: slide font-family: 'Helvetica' Incremental list ======================================================== incremental: true For more details on authoring R presentations click the **?** button on the toolbar - Bullet 1 - Bullet 2 - Bullet 3 Slide With Code ======================================================== By default, the code is executed. Use chunc options, e.g. `eval = FALSE`, to disable execution ```{r} summary(cars) ``` Slide With Two Adjustable columns ======================================================== left: 30% Here, the text is shown on the left, and the results of the R code are shown on the right *** ```{r echo=FALSE} library(dplyr) summary(iris) %>% kable ``` Slide With Plot ======================================================== Code chunk options can adjust figure appearance ```{r, echo=FALSE, fig.width=9} plot(cars) ``` Special Slide Type: Section Slide ======================================================== type: section This is how a **section** slide looks Special Slide Type: Sub-Section Slide ======================================================== type: sub-section This is how a **sub-section** slide looks Special Slide Type: Prompt Slide ======================================================== type: prompt This is how a **prompt** slide looks Special Slide Type: Alert Slide ======================================================== type: alert This is how a **alert** slide looks Regular Slide ======================================================== Good old normal look Slide Without Title ======================================================== title: false This slide does not have a title Slide With Different Code Type ======================================================== This is `bash` code rendering ```{bash eval=FALSE} mkdir help ``` Slide with a table ======================================================== ```{r echo=FALSE} kable(head(iris)) ``` Slide With a Custom Footer ======================================================== Custom things are done using HTML syntax This sentence will appear smaller.
Slide With Individual Adjustments ======================================================== This text will appear red and bold Slide With Image ======================================================== Using HTML tags to insert image