-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path08-appendix.Rmd
39 lines (31 loc) · 849 Bytes
/
08-appendix.Rmd
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
```{=latex}
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
```
# Appendix A Research log {-}
```{=latex}
\addtocontents{toc}{\protect\setcounter{tocdepth}{0}}
```
## subsection {.unlisted .unnumbered}
### sub sub section {.unlisted .unnumbered}
```{r researchlog, echo=FALSE, message=FALSE, warning=FALSE}
library(tidyverse)
library(knitr)
library(kableExtra)
library(readxl)
library(fs)
read_excel(here("tables","research_log.xlsx"))%>%
arrange(Date) %>% # i.e. alphabetical order by Term
knitr::kable(booktabs = TRUE)%>% # booktab = T gives us a pretty APA-ish table
kable_styling(position = "center")%>%
row_spec(.,
row=0,
bold = TRUE)
```
`r if (knitr:::is_latex_output()) '
# Appendix B Proposal {.unlisted .unnumbered}
'`
```{=latex}
\addtocontents{toc}{\protect\setcounter{tocdepth}{3}}
\enddocument
```