forked from rubbislam/EpiSim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_quarto.yml
60 lines (57 loc) · 1.34 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
project:
type: website
render:
- "*.qmd"
- "!slides/"
- "slides/!polio"
- "slides/!ebola"
- "slides/!measles"
- "slides/!contacts"
website:
title: "EpiSim"
navbar:
left:
- href: index.qmd
text: Home
- href: instruction.qmd
text: Instruction
- href: introduction.qmd
text: Introduction
- href: simulation.qmd
text: Simulation
- href: likelihood.qmd
text: Likelihood
- href: iterated.qmd
text: Iterated filtering
- href: workflow.qmd
text: Workflow
- href: Bayesian.qmd
text: Bayesian
- href: case study.qmd
text: Case study
editor: visual
format:
html:
theme: cosmo
css: styles.css
toc: true
include-in-header:
text: |
<script>
MathJax = {
loader: {
load: ['[tex]/boldsymbol']
},
tex: {
tags: "all",
inlineMath: [['$','$'], ['\\(','\\)']],
displayMath: [['$$','$$'], ['\\[','\\]']],
processEscapes: true,
processEnvironments: true,
packages: {
'[+]': ['boldsymbol']
}
}
};
</script>
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml-full.js" type="text/javascript"></script>