4

I'm used to making two column slides in R ioslides_presentation documents, but I can't find any method that works to split a slide into two columns using R slidy_presentations which I'm trying for the first time after having used ioslides, beamer, and Rpres. There must be a way?

mweber
  • 677
  • 1
  • 6
  • 16

1 Answers1

5

It was easier than I realized - taking the column information from the slidify customization page, rather than creating a column layout file, simply adding

<div class='left' style='float:left;width:48%'>
code or image for left of slide
</div>
<div class='right' style='float:right;width:48%'>
code or image for right
</div>

to the slide in my slidy_presentation markdown file worked perfectly.

mweber
  • 677
  • 1
  • 6
  • 16