Below is my Slidy Presentation R Markdown file. I'd like to split my contents using the Bootstrap grid system. However, an example using the plot is not loading the grid. What could I be doing wrong?
---
title: "Slidy R PPT"
author: "myself"
date: "`r Sys.Date()`"
output: slidy_presentation
---
{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
{r script-files and libraries, include=FALSE, echo=FALSE, message=FALSE, warning=FALSE, paged.print=FALSE}
# Libraries
library(easypackages)
libraries("tidyverse","inspectdf","dlookr","kableExtra","knitr","htmlwidgets")
# Source Script
sys.source("Scripts/Analysis.R", envir = knitr::knit_global())
## Table of Contents
## Grid System Example
<div class = "row">
<div class = "col-md-6">
{r cars, warning = FALSE, echo = FALSE, dev=c('svg')}
plot(pressure)
</div>
<div class = "col-md-6">
{r pressure, warning = FALSE, echo=FALSE, dev=c('svg')}
plot(pressure)
</div>
</div>
## Slide with R Output
## Slide with Plot
Note: In the above code, I've removed ``` in the r code chunks for the purpose of formatting
@molomulislidy_presentation does not use bootstrap. So you can't use a bootstrap feature like that in this presentation format. The format is based on HTML Slidy
You would need to load the bootstrap dependency first, but I don't if a conflict can happen or not. bslib package can may be help for this
Also for tabs in non bootstrap format, there is also panelset from xaringanExtra
@cderv .Thanks. Can I ask a separate question unrelated to the topic above?
I'd like to add navigation buttons (especially at the bottom right) to each slide.
How do I go about that?