···11+
22+33+# Jotter
44+55+A template for creating presentation slides with Typst and
66+[Polylux](https://github.com/polylux-typ/polylux/).
77+88+Use via
99+```sh
1010+typst init @preview/jotter-polylux:0.1.0 your-cool-project
1111+```
1212+1313+A `slides.typ` file will be created for you and contains all the design elements
1414+you can use.
1515+1616+By default, it uses the fonts Kalam and .
1717+Either make sure you have them installed or specify other fonts in the template.
1818+1919+
2020+2121+
···11+#import "@preview/polylux:0.4.0": *
22+#import "@preview/jotter-polylux:0.1.0": setup, title-slide, fancy-block
33+44+#set text(
55+ size: 25pt,
66+ font: "Kalam",
77+ fill: blue.darken(50%),
88+)
99+1010+#show math.equation: set text(font: "Pennstander Math", weight: "light")
1111+1212+#show: setup.with(header: [A short title], highlight-color: red)
1313+1414+#title-slide[My interesting title][
1515+ A subtitle
1616+1717+ The speaker
1818+1919+ Date, Place
2020+]
2121+2222+#slide[
2323+ = Title of this slide
2424+2525+ The content of this slide.
2626+2727+ Some text is *bold*, some text is _emphasized_.
2828+2929+ #fancy-block(inset: 1em, sloppiness: .05)[
3030+ A very important formula:
3131+3232+ $
3333+ hat(mu) = 1 / n sum_(i = 1)^n x_i
3434+ $
3535+ ]
3636+]
3737+3838+#slide[
3939+ = Another slide
4040+4141+ Maxwell says:
4242+ $
4343+ integral.surf_(partial Omega) bold(B) dot dif bold(S) = 0
4444+ $
4545+4646+ #toolbox.side-by-side[
4747+ - a bullet point
4848+ - another bullet point
4949+ ][
5050+ + first point
5151+ + second point
5252+ ]
5353+]
5454+