-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_quarto.yml
115 lines (92 loc) · 3.54 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
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
project:
type: book
output-dir: _book
# Book formatting types and options
format:
html:
theme:
- cosmo
- r4epi_styles.scss
pdf:
documentclass: scrreprt
# Bibliography and citation options
bibliography: references.bib
csl: ama.csl
# Set editor to default to source view instead of visual view
editor: source
# To make sure that R, Python, and Julia code is only executed locally,
# configure your project to use Quarto’s freeze feature by adding this to your
# _quarto/.yml. (https://quarto.org/docs/publishing/netlify.html)
execute:
freeze: auto
# Book structure and options
book:
# Basic metadata
title: "R 4 Epidemiology"
date: today
favicon: r4epi_favicon.png
site-url: https://brad-cannell.github.io/r4epi_quarto/
repo-url: https://github.com/brad-cannell/r4epi_quarto/
repo-actions: [edit, issue]
page-footer:
left: |
R for Epidemiology
right: |
This book was built with <a href="https://Quarto/.org/">Quarto/</a>.
# Book options
search: true
downloads: [pdf] # https://quarto/.org/docs/books/book-output.html#sidebar-tools
sharing: [twitter, facebook, linkedin]
page-navigation: true # Haven't played with this much yet. https://quarto/.org/docs/books/book-structure.html#page-navigation
# Chapter sturcture
# https://quarto/.org/docs/books/book-structure.html
chapters:
# Index is the landing page for the HTML version of the book.
- index.qmd
- chapters/introduction.qmd
- chapters/contributing/contributing.qmd
- chapters/about_the_authors/about_the_authors.qmd
# Parts can be qmd files (if you want explanitory text) or characater strings
# if you only want a part title. The separate qmd document method does not
# look good in pdf format.
- part: "Getting Started"
chapters:
- chapters/installing_r_and_rstudio/installing_r_and_rstudio.qmd
- chapters/what_is_r/what_is_r.qmd
- chapters/navigating_rstudio/navigating_rstudio.qmd
- chapters/speaking_r/speaking_r.qmd
- chapters/lets_get_programming/lets_get_programming.qmd
- chapters/asking_questions/asking_questions.qmd
- part: "Coding Tools and Best Practices"
chapters:
- chapters/r_scripts/r_scripts.qmd
- chapters/quarto_files/quarto_files.qmd
- chapters/r_projects/projects.qmd
- chapters/best_practices/best_practices.qmd
- chapters/using_pipes/using_pipes.qmd
- part: "Data Transfer"
chapters:
- chapters/data_transfer/data_transfer.qmd
- chapters/file_paths/file_paths.qmd
- chapters/importing_plain_text/importing_plain_text.qmd
- chapters/importing_binary_files/importing_binary_files.qmd
- chapters/rstudio_import_tool/rstudio_import_tool.qmd
- chapters/exporting_data_to_disk/exporting_data_to_disk.qmd
- part: "Descriptive Analysis"
chapters:
- chapters/intro_descriptive_analysis/intro_descriptive_analysis.qmd
- chapters/categorical_variables/categorical_variables.qmd
- part: "Collaboration"
chapters:
- chapters/intro_git_github/intro_git_github.qmd
- chapters/using_git_github/using_git_github.qmd
- part: "Presenting Results"
- part: "Epi Foundations"
- part: "Regression"
- part: "Causal Inference"
- part: "References"
chapters:
- references.qmd
# We can also add appendices and track them separately from other book parts.
appendices:
- chapters/appendices/glossary.qmd