-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPPENDIX_rrcompendium.qmd
131 lines (114 loc) · 4.07 KB
/
APPENDIX_rrcompendium.qmd
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
---
title: "`rrcompendium` files"
---
These files contain all the code we created to populate the `rrcompendium` Reserach Compendium project.
Your Files should contain:
## `DESCRIPTION`
```{r, eval=FALSE, code=readLines("appendices/rrcompendium/DESCRIPTION")}
#| filename: "DESCRIPTION"
```
## `README.Rmd`
```{r echo=FALSE, message=TRUE, comment=""}
#| filename: "README.Rmd"
message(readr::read_file(here::here("appendices","rrcompendium", "README.Rmd")))
```
## `paper.qmd`
```{r, echo=FALSE, message=TRUE, comment=""}
#| filename: "analysis/paper/paper.qmd"
message(readr::read_file(here::here("appendices","rrcompendium", "paper.qmd")))
```
which should be rendered to `paper.pdf`.
```{r}
#| filename: "analysis/paper/paper.pdf"
#| echo: false
knitr::include_url(here::here("appendices","rrcompendium", "paper.pdf"))
```
Your final project should contain the following files:
```
.
├── CONDUCT.md
├── CONTRIBUTING.md
├── DESCRIPTION
├── LICENSE
├── LICENSE.md
├── NAMESPACE
├── README.Rmd
├── README.md
├── analysis
│ ├── data
│ │ ├── DO-NOT-EDIT-ANY-FILES-IN-HERE-BY-HAND
│ │ ├── derived_data
│ │ ├── gillespie.csv
│ │ └── raw_data
│ ├── figures
│ ├── paper
│ │ ├── _extensions
│ │ │ └── quarto-journals
│ │ │ └── elsevier
│ │ │ ├── _extension.yml
│ │ │ ├── bib
│ │ │ │ ├── elsarticle-harv.bst
│ │ │ │ ├── elsarticle-num-names.bst
│ │ │ │ ├── elsarticle-num.bst
│ │ │ │ └── elsevier-harvard.csl
│ │ │ ├── elsarticle.cls
│ │ │ ├── elsevier.lua
│ │ │ ├── partials
│ │ │ │ ├── _two-column-longtable.tex
│ │ │ │ ├── before-body.tex
│ │ │ │ └── title.tex
│ │ │ └── styles
│ │ │ └── elsevier.scss
│ │ ├── bibliography.bib
│ │ ├── elsarticle-harv.bst
│ │ ├── elsarticle-num.bst
│ │ ├── elsarticle.cls
│ │ ├── paper.pdf
│ │ ├── paper.qmd
│ │ ├── paper.spl
│ │ ├── paper.tex
│ │ ├── paper_files
│ │ │ └── figure-pdf
│ │ │ ├── fig-meaningless-1.pdf
│ │ │ ├── fig-site-simulation-1.pdf
│ │ │ └── unnamed-chunk-3-1.pdf
│ │ ├── placeholder.png
│ │ ├── refs.bib
│ │ └── style-guide
│ │ ├── 1pseperateaug.pdf
│ │ ├── 1psingleauthorgroup.pdf
│ │ ├── elsdoc.pdf
│ │ ├── elsdoc.tex
│ │ ├── elstest-1p.pdf
│ │ ├── elstest-1pdoubleblind.pdf
│ │ ├── elstest-3p.pdf
│ │ ├── elstest-3pd.pdf
│ │ ├── elstest-5p.pdf
│ │ ├── jfigs.pdf
│ │ ├── makefile
│ │ ├── pdfwidgets.sty
│ │ └── rvdtx.sty
│ ├── supplementary-materials
│ └── templates
│ ├── author-info-blocks.lua
│ ├── journal-of-archaeological-science.csl
│ ├── pagebreak.lua
│ ├── scholarly-metadata.lua
│ ├── template.Rmd
│ └── template.docx
├── attic
│ ├── dev.R
│ └── rrtools-wkshp-materials-master
│ ├── README.md
│ ├── analysis.R
│ ├── gillespie.csv
│ ├── paper.pdf
│ ├── paper.txt
│ └── refs.bib
├── project.Rproj
├── renv
│ ├── activate.R
│ └── settings.json
└── renv.lock
```
You can browse a demo of my final compendium [here](https://github.com/annakrystalli/rrcompendium-demo)