blob: 59d6aa242ba42bfa6398dfea223175ae1250c9e6 (
plain)
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
|
---
title: "First lecture"
theme: metropolis
---
# First chapter
## Intro
This document is compiled into:
* Beamer slides (PDF) for the actual lecture, and
* An HTML page on the course's website for easy access during exercise
sessions.
# Second chapter
## Math
LaTeX math expressions can be used here:
$$ f(x)=\sum_{n=0}^\infty\frac{f^{(n)}(a)}{n!}(x-a)^n $$
## Code listing
An example of code listing with syntax highlighting:
```python
def hello():
print('hello world')
```
|