knitr::opts_chunk$set(
  echo = FALSE,
  warning = FALSE,
  message = FALSE,
  cache = FALSE,
  fig.width = 5,
  fig.height = 3.5,
  fig.align = "center",
  dev.args = list(pointsize = 8)
)

library(tidyverse)
library(tactile)
library(lattice)
library(latticeExtra)
library(kableExtra)

# modified kable function
kable <- function(x, ...) {
  knitr::kable(x, escape = FALSE, linesep = "", booktabs = TRUE)
}

if (!interactive()) {
  trellis.par.set(tactile.theme(c(10, 5)))
} else {
  trellis.par.set(tactile.theme(c(12, 8)))
}

options(digits = 3)

First Section

First Frame

Second Section

Second Frame

Bulleted Lists

Columns

::: {.columns} :::: {.column width=0.6} Column 1 :::: :::: {.column width=0.4} Column 2 :::: :::



jolars/rtemplates documentation built on April 23, 2020, 7:23 a.m.