R Markdown PowerPoint Slide Customization
--- title: "Untitled" author: "April 2018" date: "4/9/2019" output: powerpoint_presentation --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = FALSE) ``` ## Slide with Plot ```{r pressure, fig.width=30, fig.asp=0.618, out.width="200%"} plot(pressure) ``` I'm reading R Studio's guide to creating PowerPoint presentations in R Markdown . I'd like to be able to customize my slides to include two things: Stretch the image size to the full width of the slide Move the title up a bit and left align it After doing some internet searches I just can't determine how to do this properly. Maybe