I'm trying to render a powerpoint presentation using r markdown. Everything works fine, however, I can't seem to generate a slide with header + a figure output (e.g. either a ggplot chart or kable output) + some texts.
I have tried the following, but the generated powerpoint seems to be separating the header into a separate slides:
:::::::::::::: {.columns}
::: {.column}
### Some header
```{r dpi = 200, context="server"}
# Some ggplot output
(<< Excluded the closing r chunk as I'm getting some formatting issues here.)
:::
::: {.column}
Some additional texts to be displayed in the slides
:::
::::::::::::::
Does anyone have a solution to this? I've tried to format the slide master powerpoint template (reduce font size etc...) but it still doesn't seem to work.