blob: 539b1e731eaf6951d4ac1501a9219155137f0e74 [file] [log] [blame]
Hao Zhu36bc5082017-07-03 11:49:00 -04001---
2title: "test_doc"
3author: "Jake Thompson"
4date: "6/30/2017"
5output:
6 bookdown::pdf_document2:
7 toc: false
8---
9
10```{r setup, include=FALSE}
11knitr::opts_chunk$set(echo = FALSE, collapse = TRUE)
12library(tidyverse)
13```
14
15# Test heading
16
17Let make a data frame and print it in Table \@ref(tab:test-table)
18
19```{r test-table}
20data_frame(col_a = seq_len(5), col_b = rnorm(5), col_c = runif(5)) %>%
21 knitr::kable(caption = "This is a test") %>%
22 kableExtra::kable_styling(latex_options = "hold_position")
23```