-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
60 lines (48 loc) · 1.88 KB
/
Copy pathindex.Rmd
File metadata and controls
60 lines (48 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
title: "Book Title"
author:
- "Name of Author"
date: "`r format(Sys.time(), '%d %h, %Y, %I:%M %p')`"
description: Description of book.
link-citations: yes
bibliography:
- src/book.bib
site: bookdown::bookdown_site
biblio-style: apalike
---
```{r, knitr_options, echo=FALSE, results='hide', message=FALSE}
# fig.align="center" centers figures
# comment=NA remove "##" from R output
# results="hold" don't interleave chunk code and output, but hold all output until end of chunk.
# class.source="chunk-style" Use the CSS style "chunk-style" to style code chunks
# class.output="output-style" Use the CSS style "output-style" to style output of code chunks
knitr::opts_chunk$set(fig.align="center", comment=NA, results="hold", class.source="chunk-style", class.output="output-style")
knitr::knit_hooks$set(
error = function(x, options){
paste0('\n<pre class="sourceCode r error-style"><code>', x, '</code></pre>')
}
)
library(kableExtra)
library(lubridate)
```
# Chapter Title
Create the book here.
Use the special boxes like so...
```{block, type='reflect'}
This box will prompt you to pause and reflect on your experience and/or learning. No feedback will be given, but this may be graded on completion.
```
```{block, type='assessment'}
This box will signify a quiz or assignment which you will turn in for grading, on which the instructor will provide feedback.
```
```{block, type='progress'}
This box is for checking your understanding, to make sure you are ready for what follows.
```
```{block, type='video'}
This box is for displaying/linking to videos in order to help illustrate or communicate concepts.
```
```{block, type='caution'}
This box will warn you of possible problems or pitfalls you may encounter!
```
```{block, type='bonus'}
This box is to provide material going beyond the main course content, or material which will be revisited later in more depth.
```