Making Slides

Ranae Dietzel and Andee Kaplan

Slides about making slides

Rmarkdown

Rmarkdown

Three Rmarkdown options in RStudio

*ioslides has more default styling than Slidy, but both can be changed using a styling sheet (CSS)

YAML Options

Slide basics

Your turn

Open up a ioslides presentation and make some YAML adjustments.

Make one text-only slide that briefly outlines your morning.

Follow with a slide showing demo code and another slide showing a demo plot.

Tables

A tiny bit of html

<div class="columns-2">
  ![](image.png)

  - Bullet 1
  - Bullet 2
  - Bullet 3
</div>

A tiny bit of html

<div class="red2">
This text is red
</div>

This text was supposed to be red.

Change css on slide-by-slide basis

Code highlighting

### <b>
x <- 10
y <- x * 2
 ### </b>

Presenter mode

<div class="notes">
This is my *note*.

- It can contain markdown
- like this list

</div>

Alternate formats

Questions?

Your turn

Alter your slides by highlighting some of the code.

Add an image and adjust the size and center the image using html..

Make notes for a few slides and try out presenter mode.