-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpdf_article.Rmd
55 lines (34 loc) · 1.06 KB
/
pdf_article.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
title: "My article"
author: "Bonnie McLean"
date: "`r Sys.Date()`"
output:
bookdown::pdf_document2:
number_sections: yes
theme: readable
toc: no
bibliography: references.bib
indent: true
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(bookdown)
```
# Introduction
Cite articles like this [@johansson_typology_2020], or like this: @johansson_typology_2020 found that blah di blah. Where `@johansson_typology_2020` is the name of the bibtex entry in your file references.bib, where you have all your articles that you are citing in bibtex format.
Cross-referencing is done like this: See section \@ref(materials) for a discussion of the materials. See Figure \@ref(fig:cars-plot) for a plot of some cars.
```{r cars-plot, fig.cap="A plot of some cars."}
plot(cars)
```
See table \@ref(tab:car-table) for some stuff about cars.
```{r car-table}
knitr::kable(mtcars[1:5, 1:5], caption = "Table about cars")
```
# Method
## Materials {#materials}
## Participants
## Procedure
# Results
# Discussion
# Conclusion
# References