You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/build-your-own-theme.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -20,12 +20,12 @@ To demonstrate how to create a theme with Touying, let's step by step create a s
20
20
If you want to modify a Touying internal theme locally instead of creating one from scratch, you can achieve this by:
21
21
22
22
1. Copying the [theme code](https://github.com/touying-typ/touying/tree/main/themes) from the `themes` directory to your local, for example, copying `themes/university.typ` to your local `university.typ`.
23
-
2. Replacing the `#import "../src/exports.typ": *` command at the top of the `university.typ` file with `#import "@preview/touying:0.5.2": *`.
23
+
2. Replacing the `#import "../src/exports.typ": *` command at the top of the `university.typ` file with `#import "@preview/touying:0.5.3": *`.
24
24
25
25
Then you can import and use the theme by:
26
26
27
27
```typst
28
-
#import "@preview/touying:0.5.2": *
28
+
#import "@preview/touying:0.5.3": *
29
29
#import "university.typ": *
30
30
31
31
#show: university-theme.with(
@@ -48,7 +48,7 @@ Depending on whether the theme is your own or part of Touying, you can import it
48
48
If it's just for your own use, you can directly import Touying:
49
49
50
50
```typst
51
-
#import "@preview/touying:0.5.2": *
51
+
#import "@preview/touying:0.5.3": *
52
52
```
53
53
54
54
If you want the theme to be part of Touying, placed in the Touying `themes` directory, then you should change the import statement above to
@@ -73,7 +73,7 @@ Generally, the first step in making slides is to determine the font size and pag
73
73
74
74
```typst
75
75
// bamboo.typ
76
-
#import "@preview/touying:0.5.2": *
76
+
#import "@preview/touying:0.5.3": *
77
77
78
78
#let bamboo-theme(
79
79
aspect-ratio: "16-9",
@@ -94,7 +94,7 @@ Generally, the first step in making slides is to determine the font size and pag
94
94
}
95
95
96
96
// main.typ
97
-
#import "@preview/touying:0.5.2": *
97
+
#import "@preview/touying:0.5.3": *
98
98
#import "bamboo.typ": *
99
99
100
100
#show: bamboo-theme.with(aspect-ratio: "16-9")
@@ -195,7 +195,7 @@ We also need to customize a `slide` method, which accepts `#let slide(title: aut
Copy file name to clipboardexpand all lines: docs/changelog.md
+32-3
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,38 @@ sidebar_position: 14
4
4
5
5
# Changelog
6
6
7
-
## v0.5.1
8
7
9
-
Fix some bugs.
8
+
## v0.5.3
9
+
10
+
### Features
11
+
12
+
- feat: add `stretch` parameter for `#alternatives[]` function class. This allows us to handle cases where the internal element is a context expression.
13
+
- feat: add `config-common(align-enum-marker-with-baseline: true)` for aligning the enum marker with the baseline.
14
+
- feat: add `linebreaks` option to `components.mini-slides`. https://github.com/touying-typ/touying/pull/96
15
+
- feat: add `<touying:skip>` label to skip a new-section-slide.
16
+
- feat: add `config-common(show-hide-set-list-marker-none: true)` to make the markers of `list` and `enum` invisible after `#pause`.
17
+
- feat: add `config-common(bibliography-as-footnote: bibliography(title: none, "ref.bib"))` to display the bibliography in footnotes.
18
+
- refactor: add `config-common(show-strong-with-alert: true)` configuration to display strong text with an alert. (small breaking change for some themes)
19
+
- refactor: refactor `display-current-heading` for preserving heading style in title and subtitle. https://github.com/touying-typ/touying/issues/71
20
+
- refactor: make `new-section-slide-fn` function class can receive `body` parameter. We can use `receive-body-for-new-section-slide-fn` to control it. **(Breaking change)**
21
+
- For example, you can add `#speaker-note[]` for a new section slide, like `= Section Title \ #speaker-note[]`.
22
+
- If you don't want to append content to the body of the new section slide, you can use `---` after the section title.
23
+
24
+
### Fixes
25
+
26
+
- fix outdated documentation.
27
+
- fix bug of `enable-frozen-states-and-counters` in handout mode.
0 commit comments