medewitt / wfutemplates

This is a repository for templates that contain WFU branding
https://michaeldewittjr.com/wfutemplates/.
Other
0 stars 0 forks source link

presentation template 2 #8

Open medewitt opened 5 years ago

medewitt commented 5 years ago

Like this one:


title: "Solving the model representation problem with broom" author: "Alex Hayes (RStudio Intern 2018, broom maintainer)" date: "2018-01-17" output: beamer_presentation: keep_tex: false theme: metropolis slide_level: 2 incremental: true includes: in_header: header.txt fontsize: 12pt classoption: compress

knitr::opts_chunk$set(
  collapse = TRUE,
  echo = TRUE,
  cache = TRUE,
  warning = FALSE,
  message = FALSE,
  fig.align = "center"
)
library(tidyverse)
library(broom)
set.seed(27)
options(
  tibble.print_max = 3,
  tibble.print_min = 3,
  width = 55
)
theme_set(theme_gray(base_size = 22))

head.txt <-

medewitt commented 5 years ago

\usepackage{tikz} \setbeamercolor{frametitle}{bg=gray} \hypersetup{colorlinks,citecolor=orange,filecolor=red,linkcolor=brown,urlcolor=blue}

%% change fontsize of R code \let\oldShaded\Shaded \let\endoldShaded\endShaded \renewenvironment{Shaded}{\footnotesize\oldShaded}{\endoldShaded}

%% change fontsize of output \let\oldverbatim\verbatim \let\endoldverbatim\endverbatim \renewenvironment{verbatim}{\footnotesize\oldverbatim}{\endoldverbatim}