-
Notifications
You must be signed in to change notification settings - Fork 0
/
_quarto.yml
191 lines (152 loc) · 4.47 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
project:
type: book
book:
title: "Notes on Statistics with R (SwR)"
author: "Peter Baumgartner"
date: last-modified
date-format: YYYY-MM-DD HH:mm
favicon: "img/favicon_io/apple-touch-icon.png"
site-url: https://bookdown.org/pbaumgartner/swr-harris/
repo-url: https://github.com/petzi53/swr-harris
repo-branch: master
repo-actions: [edit, issue]
chapters:
- index.qmd
- 01-preparing-data.qmd
- 02-descriptive-statistics.qmd
- 03-data-visualization.qmd
- 04-probability-distributions.qmd
- 05-chi-squared.qmd
- 06-t-test.qmd
- 07-analysis-of-variance.qmd
- 08-correlation.qmd
- 09-linear-regression.qmd
- 10-logistic-regression.qmd
- 11-multinomial-regression.qmd
- 95-references.qmd
appendices:
- 96-packages-used.qmd
- 97-callout-boxes.qmd
bibliography:
- references.bib
# reference-section-title: References
# citeproc: true
format:
html:
theme: cosmo
css:
- quarto.css
- glossary.css
number-sections: true
toc-depth: 5
toc-expand: 4
toc_float: true
code-fold: true
code-tools: true
code-link: true
code-overflow: scroll
df-print: default
# filters:
# - include-code-files
# - section-bibliographies
knitr:
opts_chunk:
comment: "#>"
R.options:
knitr.graphics.auto_pdf: true
editor: source
execute:
freeze: auto
lightbox: true
crossref:
appendix-title: "Appendix"
appendix-delim: ":"
custom:
- key: rep
kind: float
reference-prefix: Report
- key: res
kind: float
reference-prefix: Resource
- key: pak
kind: float
reference-prefix: Package Profile
- key: bul
kind: float
reference-prefix: Bullet List
- key: not
kind: float
reference-prefix: Note
- key: exp
kind: float
reference-prefix: Explanation
- key: imp
kind: float
reference-prefix: Important
- key: out
kind: float
reference-prefix: Output
- key: wat
kind: float
reference-prefix: Watch-Out
- key: obj
kind: float
reference-prefix: Objectives
caption-prefix: obj
- key: tdo
kind: float
reference-prefix: TODO
tip-cap-location: top
bul-cap-location: bottom
lst-cap-location: bottom
rem-cap-location: top
language:
crossref-cnj-title: "R Code" # replaces "Conjecture"
crossref-cor-title: "Assessment" # replaces "Corollary"
crossref-def-title: "Experiment" # replaces "Definition"
crossref-exm-title: "Example" # remains "Example"
crossref-exr-title: "Exercise" # remains "Exercise"
crossref-fig-title: "Graph" # replaces "Figure"
crossref-lem-title: "Resource" # replaces "Lemma"
crossref-lst-title: "Listing / Output" # replaces "Listing"
crossref-prp-title: "Procedure" # replaces "Proposition"
crossref-tbl-title: "Table" # remains "Table"
crossref-thm-title: "Formula" # replaces "Theorem"
## can't change name for rem (Remark) and sol (Solution)
## Label Prefix Printed Name LaTeX Environment
# 1. Figure, Tables and Listings
################################
#fig- Figure figure
#tbl- Table table
#lst- Listing listing
# 2. Theorems and friends
#########################
#cnj- Conjecture conjecture
#cor- Corollary corollary
#def- Definition definition
#exm- Example example
#exr- Exercise exercise
#lem- Lemma lemma
#prp- Proposition proposition
#rem- Remark remark (special case)
#sol- Solution solution (special case)
#thm- Theorem theorem
# 3. Special cases
##################
#sec- Section section
#eq- Equation equation
# 4. Callout blocks
###################
#nte- Note note
#wrn- Warning warning
#imp Important important
#tip Tip tip
#cau Caution caution
# 5. Custom blocks
##################
# https://github.com/quarto-dev/quarto-cli/blob/main/src/resources/language/_language.yml
callout-tip-title: "Report" # green = #tip
callout-note-title: "Wording for H0 and HA" # blue = #nte
callout-warning-title: "Watch out!" # orange = #wrn
callout-important-title: "Important" # red = #imp
callout-caution-title: "Typo" # yellow = #cau