I'm trying to create a powerpoint presentation using RStudio, closely following these instructions. Though I'm missing something and the two columns configuration won't work. I'm using RStudio Server 1.2.5036
on a Ubuntu machine and also this rmarkdown::pandoc_version() [1] ‘2.3.1’
. The troubleshooting page didn't help me either.
My code is pretty much a copypasta from the tutorial page, but to be sure, here it is:
---
title: "something"
author: "me"
date: "01/01/2020"
output:
ioslides_presentation: default
slidy_presentation: default
beamer_presentation: default
powerpoint_presentation: default
---
```{r setup, include=FALSE}
library("readxl")
my_data <- read_excel("data/my_data.xlsx")
```
## Intro
Loren Ipsun
## About the data
:::::::::::::: {.columns}
::: {.column}
```{r summary, echo = FALSE}
summary(my_data)
```
:::
::: {.column}
```{r boxplot, fig.height = 6, fig.width = 4, fig.align = "right"}
boxplot(my_data)
```
:::
::::::::::::::
It produces three slides, correct content but the column content shows underneath of each other. Am I missing something obvious?
thanks a lot!