Skip to content

Your lecture notes

This is a fresh website for your lecture notes. For a systematic reference, see:

Or you may check out the source code of the Solid state lecture notes

It is configured to be suitable for lecture notes, and for example latex works out of the box: \(e^{i\pi} + 1 = 0\).

The code that you include will be executed and the output will be displayed in the page. For example, this output

from matplotlib import pyplot as plt
plt.plot([0, 1])
print("Hello world")
Hello world

png

is generated by this code block:

```python
from matplotlib import pyplot as plt
plt.plot([0, 1])
print("Hello world")
```