Skip to content

Commit ec3f057

Browse files
committed
chore: bump version
1 parent f644ccc commit ec3f057

File tree

110 files changed

+240
-240
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+240
-240
lines changed

docs/build-your-own-theme.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ To demonstrate how to create a theme with Touying, let's step by step create a s
2020
If you want to modify a Touying internal theme locally instead of creating one from scratch, you can achieve this by:
2121

2222
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.3": *`.
23+
2. Replacing the `#import "../src/exports.typ": *` command at the top of the `university.typ` file with `#import "@preview/touying:0.5.4": *`.
2424

2525
Then you can import and use the theme by:
2626

2727
```typst
28-
#import "@preview/touying:0.5.3": *
28+
#import "@preview/touying:0.5.4": *
2929
#import "university.typ": *
3030
3131
#show: university-theme.with(
@@ -48,7 +48,7 @@ Depending on whether the theme is your own or part of Touying, you can import it
4848
If it's just for your own use, you can directly import Touying:
4949

5050
```typst
51-
#import "@preview/touying:0.5.3": *
51+
#import "@preview/touying:0.5.4": *
5252
```
5353

5454
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
7373

7474
```typst
7575
// bamboo.typ
76-
#import "@preview/touying:0.5.3": *
76+
#import "@preview/touying:0.5.4": *
7777
7878
#let bamboo-theme(
7979
aspect-ratio: "16-9",
@@ -94,7 +94,7 @@ Generally, the first step in making slides is to determine the font size and pag
9494
}
9595
9696
// main.typ
97-
#import "@preview/touying:0.5.3": *
97+
#import "@preview/touying:0.5.4": *
9898
#import "bamboo.typ": *
9999
100100
#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
195195

196196
```typst
197197
// bamboo.typ
198-
#import "@preview/touying:0.5.3": *
198+
#import "@preview/touying:0.5.4": *
199199
200200
#let slide(title: auto, ..args) = touying-slide-wrapper(self => {
201201
if title != auto {
@@ -270,7 +270,7 @@ We also need to customize a `slide` method, which accepts `#let slide(title: aut
270270
271271
272272
// main.typ
273-
#import "@preview/touying:0.5.3": *
273+
#import "@preview/touying:0.5.4": *
274274
#import "bamboo.typ": *
275275
276276
#show: bamboo-theme.with(aspect-ratio: "16-9")
@@ -294,7 +294,7 @@ For the `new-section-slide` method, it's the same, but the only thing to note is
294294

295295
```typst
296296
// bamboo.typ
297-
#import "@preview/touying:0.5.3": *
297+
#import "@preview/touying:0.5.4": *
298298
299299
#let slide(title: auto, ..args) = touying-slide-wrapper(self => {
300300
if title != auto {
@@ -411,7 +411,7 @@ For the `new-section-slide` method, it's the same, but the only thing to note is
411411
412412
413413
// main.typ
414-
#import "@preview/touying:0.5.3": *
414+
#import "@preview/touying:0.5.4": *
415415
#import "bamboo.typ": *
416416
417417
#show: bamboo-theme.with(

docs/changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ This is a significant disruptive version update. Touying has removed many mistak
5656
A simple usage example is shown below, and more examples can be found in the `examples` directory:
5757

5858
```typst
59-
#import "@preview/touying:0.5.3": *
59+
#import "@preview/touying:0.5.4": *
6060
#import themes.university: *
6161
6262
#show: university-theme.with(

docs/code-styles.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ sidebar_position: 4
99
If we just need to use it simply, we can directly input content under the title, just like writing a normal Typst document. The titles here serve to separate pages, and we can also normally use commands like `#pause` to achieve animation effects.
1010

1111
```typst
12-
#import "@preview/touying:0.5.3": *
12+
#import "@preview/touying:0.5.4": *
1313
#import themes.simple: *
1414
1515
#show: simple-theme.with(aspect-ratio: "16-9")
@@ -32,7 +32,7 @@ And you can use an empty title `== <touying:hidden>` to create a new page, which
3232
If we need to maintain the current title and just want to add a new page, we can use `#pagebreak()`, or directly use `---` to split the page, the latter is parsed as `#pagebreak()` in Touying.
3333

3434
```typst
35-
#import "@preview/touying:0.5.3": *
35+
#import "@preview/touying:0.5.4": *
3636
#import themes.simple: *
3737
3838
#show: simple-theme.with(aspect-ratio: "16-9")
@@ -57,7 +57,7 @@ Many times, using only the simple style cannot achieve all the functions we need
5757
For example, the above example can be transformed into
5858

5959
```typst
60-
#import "@preview/touying:0.5.3": *
60+
#import "@preview/touying:0.5.4": *
6161
#import themes.simple: *
6262
6363
#show: simple-theme.with(aspect-ratio: "16-9")
@@ -91,7 +91,7 @@ You may have noticed that when using the simple theme, using a first-level title
9191
If we do not want it to automatically create such a section slide, we can remove this method:
9292

9393
```typst
94-
#import "@preview/touying:0.5.3": *
94+
#import "@preview/touying:0.5.4": *
9595
#import themes.simple: *
9696
9797
#show: simple-theme.with(
@@ -117,7 +117,7 @@ As you can see, this will only result in two pages, and the default section slid
117117
Similarly, we can also register a new section slide:
118118

119119
```typst
120-
#import "@preview/touying:0.5.3": *
120+
#import "@preview/touying:0.5.4": *
121121
#import themes.simple: *
122122
123123
#show: simple-theme.with(

docs/dynamic/other.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Touying also provides `touying-reducer`, which adds `pause` and `meanwhile` anim
1111
Here's an example:
1212

1313
```typst
14-
#import "@preview/touying:0.5.3": *
14+
#import "@preview/touying:0.5.4": *
1515
#import themes.university: *
16-
#import "@preview/cetz:0.2.2"
17-
#import "@preview/fletcher:0.5.1" as fletcher: node, edge
16+
#import "@preview/cetz:0.3.1"
17+
#import "@preview/fletcher:0.5.3" as fletcher: node, edge
1818
1919
// cetz and fletcher bindings for touying
2020
#let cetz-canvas = touying-reducer.with(reduce: cetz.canvas, cover: cetz.draw.hide.with(bounds: true))

docs/external/pdfpc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ typst query --root . ./example.typ --field value --one "<pdfpc-file>" > ./exampl
5252
With the compatibility of Touying and Polylux, you can make Polylux also support direct export by adding the following code:
5353

5454
```typst
55-
#import "@preview/touying:0.5.3"
55+
#import "@preview/touying:0.5.4"
5656
5757
#context touying.pdfpc.pdfpc-file(here())
5858
```

docs/external/pympress.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ sidebar_position: 2
1010
## Speaker Notes
1111

1212
```typst
13-
#import "@preview/touying:0.5.3": *
13+
#import "@preview/touying:0.5.4": *
1414
#import themes.university: *
1515
1616
#show: university-theme.with(

docs/integration/cetz.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Touying provides the `touying-reducer`, which adds `pause` and `meanwhile` anima
1111
An example:
1212

1313
```typst
14-
#import "@preview/touying:0.5.3": *
14+
#import "@preview/touying:0.5.4": *
1515
#import themes.metropolis: *
16-
#import "@preview/cetz:0.2.2"
17-
#import "@preview/fletcher:0.5.1" as fletcher: node, edge
16+
#import "@preview/cetz:0.3.1"
17+
#import "@preview/fletcher:0.5.3" as fletcher: node, edge
1818
1919
// cetz and fletcher bindings for touying
2020
#let cetz-canvas = touying-reducer.with(reduce: cetz.canvas, cover: cetz.draw.hide.with(bounds: true))

docs/integration/codly.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 5
77
When using Codly, we should initialize it using the `config-common(preamble: {..})` method.
88

99
```typst
10-
#import "@preview/touying:0.5.3": *
10+
#import "@preview/touying:0.5.4": *
1111
#import themes.simple: *
1212
#import "@preview/codly:1.0.0": *
1313

docs/integration/ctheorems.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Touying can work seamlessly with the `ctheorems` package, allowing you to direct
99
Moreover, you can utilize `#set heading(numbering: "1.1")` to set numbering for sections and subsections.
1010

1111
```typst
12-
#import "@preview/touying:0.5.3": *
12+
#import "@preview/touying:0.5.4": *
1313
#import themes.simple: *
14-
#import "@preview/ctheorems:1.1.2": *
14+
#import "@preview/ctheorems:1.1.3": *
1515
#import "@preview/numbly:0.1.0": numbly
1616
1717
// Theorems configuration by ctheorems

docs/integration/fletcher.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Touying provides the `touying-reducer`, which adds `pause` and `meanwhile` anima
99
An example:
1010

1111
```typst
12-
#import "@preview/touying:0.5.3": *
12+
#import "@preview/touying:0.5.4": *
1313
#import themes.metropolis: *
14-
#import "@preview/cetz:0.2.2"
15-
#import "@preview/fletcher:0.5.1" as fletcher: node, edge
14+
#import "@preview/cetz:0.3.1"
15+
#import "@preview/fletcher:0.5.3" as fletcher: node, edge
1616
1717
// cetz and fletcher bindings for touying
1818
#let cetz-canvas = touying-reducer.with(reduce: cetz.canvas, cover: cetz.draw.hide.with(bounds: true))

docs/integration/pinit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Another [example](https://github.com/OrangeX4/typst-pinit/blob/main/examples/equ
3434
An example of shared usage with Touying:
3535

3636
```typst
37-
#import "@preview/touying:0.5.3": *
37+
#import "@preview/touying:0.5.4": *
3838
#import themes.default: *
3939
#import "@preview/pinit:0.2.0": *
4040

docs/multi-file.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ These three files are separated to allow both `main.typ` and `content.typ` to im
1818

1919
```typst
2020
// globals.typ
21-
#import "@preview/touying:0.5.3": *
21+
#import "@preview/touying:0.5.4": *
2222
#import themes.university: *
2323
2424
// as well as some utility functions

docs/sections.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Like Beamer, Touying also has the concept of sections and subsections.
1111
Generally, first-level, second-level, and third-level headings correspond to sections, subsections, and subsubsections, respectively, such as in the dewdrop theme.
1212

1313
```typst
14-
#import "@preview/touying:0.5.3": *
14+
#import "@preview/touying:0.5.4": *
1515
#import themes.dewdrop: *
1616
1717
#show: dewdrop-theme.with(aspect-ratio: "16-9")
@@ -30,7 +30,7 @@ Hello, Touying!
3030
However, there are many times when we do not need subsections, so we also use first-level and second-level headings to correspond to sections and titles, respectively, such as in the university theme.
3131

3232
```typst
33-
#import "@preview/touying:0.5.3": *
33+
#import "@preview/touying:0.5.4": *
3434
#import themes.university: *
3535
3636
#show: university-theme.with(aspect-ratio: "16-9")
@@ -62,7 +62,7 @@ This sets the default numbering to `1.1`, and the section corresponds to the num
6262
Displaying a table of contents in Touying is straightforward:
6363

6464
```typst
65-
#import "@preview/touying:0.5.3": *
65+
#import "@preview/touying:0.5.4": *
6666
#import themes.simple: *
6767
#import "@preview/numbly:0.1.0": numbly
6868

docs/start.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Before you begin, make sure you have the Typst environment installed. If not, yo
99
To use Touying, you just need to include the following in your document:
1010

1111
```typst
12-
#import "@preview/touying:0.5.3": *
12+
#import "@preview/touying:0.5.4": *
1313
#import themes.simple: *
1414
1515
#show: simple-theme.with(aspect-ratio: "16-9")
@@ -38,11 +38,11 @@ In fact, Touying provides various styles for slide writing. You can also use the
3838
Touying offers many built-in themes to easily create beautiful slides. For example, in this case:
3939

4040
```typst
41-
#import "@preview/touying:0.5.3": *
41+
#import "@preview/touying:0.5.4": *
4242
#import themes.university: *
43-
#import "@preview/cetz:0.2.2"
44-
#import "@preview/fletcher:0.5.1" as fletcher: node, edge
45-
#import "@preview/ctheorems:1.1.2": *
43+
#import "@preview/cetz:0.3.1"
44+
#import "@preview/fletcher:0.5.3" as fletcher: node, edge
45+
#import "@preview/ctheorems:1.1.3": *
4646
#import "@preview/numbly:0.1.0": numbly
4747
4848
// cetz and fletcher bindings for touying

docs/themes/aqua.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This theme is created by [@pride7](https://github.com/pride7), featuring beautif
1313
You can initialize it with the following code:
1414

1515
```typst
16-
#import "@preview/touying:0.5.3": *
16+
#import "@preview/touying:0.5.4": *
1717
#import themes.aqua: *
1818
1919
#show: aqua-theme.with(
@@ -112,7 +112,7 @@ Start a new section with the given title.
112112
## Example
113113

114114
```typst
115-
#import "@preview/touying:0.5.3": *
115+
#import "@preview/touying:0.5.4": *
116116
#import themes.aqua: *
117117
118118
#show: aqua-theme.with(

docs/themes/dewdrop.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The Dewdrop theme features an elegantly designed navigation, including two modes
1515
You can initialize it using the following code:
1616

1717
```typst
18-
#import "@preview/touying:0.5.3": *
18+
#import "@preview/touying:0.5.4": *
1919
#import themes.dewdrop: *
2020
2121
#import "@preview/numbly:0.1.0": numbly
@@ -110,7 +110,7 @@ Used to draw attention, with the background color set to `self.colors.primary`.
110110
## Example
111111

112112
```typst
113-
#import "@preview/touying:0.5.3": *
113+
#import "@preview/touying:0.5.4": *
114114
#import themes.dewdrop: *
115115
116116
#import "@preview/numbly:0.1.0": numbly

docs/themes/metropolis.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The Metropolis theme is elegant and suitable for everyday use. It is recommended
1515
You can initialize it using the following code:
1616

1717
```typst
18-
#import "@preview/touying:0.5.3": *
18+
#import "@preview/touying:0.5.4": *
1919
#import themes.metropolis: *
2020
2121
#import "@preview/numbly:0.1.0": numbly
@@ -117,7 +117,7 @@ Creates a new section with the given title.
117117
## Example
118118

119119
```typst
120-
#import "@preview/touying:0.5.3": *
120+
#import "@preview/touying:0.5.4": *
121121
#import themes.metropolis: *
122122
123123
#import "@preview/numbly:0.1.0": numbly

docs/themes/simple.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Considered a relatively straightforward theme, you can use it to create simple s
1515
You can initialize it using the following code:
1616

1717
```typst
18-
#import "@preview/touying:0.5.3": *
18+
#import "@preview/touying:0.5.4": *
1919
#import themes.simple: *
2020
2121
#show: simple-theme.with(
@@ -86,7 +86,7 @@ Used to draw attention, it optionally accepts a foreground color (defaulting to
8686
## Example
8787

8888
```typst
89-
#import "@preview/touying:0.5.3": *
89+
#import "@preview/touying:0.5.4": *
9090
#import themes.simple: *
9191
9292
#show: simple-theme.with(

docs/themes/stargazer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The Stargazer theme, originally created by [Coekjan](https://github.com/Coekjan/
1313
You can initialize the theme with the following code:
1414

1515
```typst
16-
#import "@preview/touying:0.5.3": *
16+
#import "@preview/touying:0.5.4": *
1717
#import themes.stargazer: *
1818
1919
#import "@preview/numbly:0.1.0": numbly
@@ -127,7 +127,7 @@ Start a new section with the given title.
127127
## Example
128128

129129
```typst
130-
#import "@preview/touying:0.5.3": *
130+
#import "@preview/touying:0.5.4": *
131131
#import themes.stargazer: *
132132
133133
#import "@preview/numbly:0.1.0": numbly

docs/themes/university.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This aesthetically pleasing theme is courtesy of [Pol Dellaiera](https://github.
1313
You can initialize the theme with the following code:
1414

1515
```typst
16-
#import "@preview/touying:0.5.3": *
16+
#import "@preview/touying:0.5.4": *
1717
#import themes.university: *
1818
1919
#import "@preview/numbly:0.1.0": numbly
@@ -124,7 +124,7 @@ Refer to the [documentation](https://polylux.dev/book/themes/gallery/university.
124124
## Example
125125

126126
```typst
127-
#import "@preview/touying:0.5.3": *
127+
#import "@preview/touying:0.5.4": *
128128
#import themes.university: *
129129
130130
#import "@preview/numbly:0.1.0": numbly

0 commit comments

Comments
 (0)