-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchapter1.qmd
More file actions
43 lines (28 loc) · 710 Bytes
/
chapter1.qmd
File metadata and controls
43 lines (28 loc) · 710 Bytes
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
# Chapter 1: Introduction
This is the first chapter of your book. Replace this content with your own.
## Section 1.1
Add your content here.
### Subsection 1.1.1
You can include:
- **Lists** like this one
- *Italic* and **bold** text
- `Code snippets`
- Links: [Quarto Documentation](https://quarto.org/)
## Section 1.2
You can also include code blocks:
```python
# Example Python code
def hello_world():
print("Hello, World!")
hello_world()
```
Or R code:
```r
# Example R code
library(ggplot2)
ggplot(mtcars, aes(x = wt, y = mpg)) +
geom_point() +
theme_minimal()
```
## Section 1.3
Include citations using `@citationkey` format, which references entries in your `references.bib` file.