-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchapter2.qmd
More file actions
52 lines (34 loc) · 1.06 KB
/
chapter2.qmd
File metadata and controls
52 lines (34 loc) · 1.06 KB
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
# Chapter 2: Advanced Topics
This is the second chapter. Continue building your book with more chapters.
## Mathematical Equations
You can include mathematical equations using LaTeX syntax:
Inline equation: $E = mc^2$
Display equation:
$$
\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}
$$
## Tables
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Data 1 | Data 2 | Data 3 |
| Data 4 | Data 5 | Data 6 |
: Example table caption {#tbl-example}
## Figures
You can include images by placing them in the `images/` directory:
```markdown
{#fig-example}
```
Then reference the figure in text using `@fig-example`.
## Callouts
::: {.callout-note}
This is a note callout. Use it to highlight important information.
:::
::: {.callout-tip}
This is a tip callout. Share helpful suggestions with your readers.
:::
::: {.callout-warning}
This is a warning callout. Alert readers to potential issues.
:::
::: {.callout-important}
This is an important callout. Emphasize critical information.
:::