forked from rostools/r-cubed-intermediate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_quarto.yml
71 lines (66 loc) · 1.86 KB
/
_quarto.yml
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
project:
type: r3-theme
pre-render:
- mkdir -p _temp
- bash _build-slides.sh
# post-render:
# - rm -rf data-raw/mmash
resources:
- slides/*.html
book:
title: "Reproducible Research in R"
subtitle: "An intermediate workshop on modern approaches and workflows to processing data"
author: "Luke W. Johnston"
date: last-modified
repo-url: "https://github.com/rostools/r-cubed-intermediate"
site-url: "https://r-cubed-intermediate.rostools.org"
chapters:
- index.qmd
- part: "Preamble"
chapters:
- preamble/syllabus.qmd
- preamble/schedule.qmd
- preamble/pre-course.qmd
- part: "Sessions"
chapters:
- sessions/introduction.qmd
- sessions/importing.qmd
- sessions/functions.qmd
- sessions/functionals.qmd
- sessions/dplyr-joins.qmd
- sessions/pivots.qmd
- sessions/hands-on-work.qmd
- sessions/what-next.qmd
appendices:
- appendix/social.qmd
- appendix/for-instructors.qmd
- appendix/extras.qmd
- LICENSE.md
- appendix/references.qmd
page-footer:
center:
- text: "License: CC BY 4.0 {{< fa brands creative-commons >}} {{< fa brands creative-commons-by >}}"
href: LICENSE.html
- text: "Code of Conduct"
href: "https://guides.rostools.org/conduct.html"
format:
r3-theme-html:
doi: "10.5281/zenodo.4061900"
include-before-body:
- "includes/contribute.html"
- "includes/site-counter.html"
csl: includes/vancouver.csl
bibliography:
- includes/packages.bib
- includes/references.bib
editor:
markdown:
wrap: 72
canonical: true
execute:
# Need to show warnings for many bits of code as part of learning.
warning: true
# Normally using freeze is good, but here, later sessions depend on
# temporary outputs from earlier sessions. And using freeze makes this
# tricky.
freeze: false