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.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": *`.
24
24
25
25
Then you can import and use the theme by:
26
26
27
27
```typst
28
-
#import "@preview/touying:0.5.3": *
28
+
#import "@preview/touying:0.5.4": *
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.3": *
51
+
#import "@preview/touying:0.5.4": *
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.3": *
76
+
#import "@preview/touying:0.5.4": *
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.3": *
97
+
#import "@preview/touying:0.5.4": *
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/code-styles.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ sidebar_position: 4
9
9
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.
10
10
11
11
```typst
12
-
#import "@preview/touying:0.5.3": *
12
+
#import "@preview/touying:0.5.4": *
13
13
#import themes.simple: *
14
14
15
15
#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
32
32
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.
33
33
34
34
```typst
35
-
#import "@preview/touying:0.5.3": *
35
+
#import "@preview/touying:0.5.4": *
36
36
#import themes.simple: *
37
37
38
38
#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
57
57
For example, the above example can be transformed into
58
58
59
59
```typst
60
-
#import "@preview/touying:0.5.3": *
60
+
#import "@preview/touying:0.5.4": *
61
61
#import themes.simple: *
62
62
63
63
#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
91
91
If we do not want it to automatically create such a section slide, we can remove this method:
92
92
93
93
```typst
94
-
#import "@preview/touying:0.5.3": *
94
+
#import "@preview/touying:0.5.4": *
95
95
#import themes.simple: *
96
96
97
97
#show: simple-theme.with(
@@ -117,7 +117,7 @@ As you can see, this will only result in two pages, and the default section slid
117
117
Similarly, we can also register a new section slide:
Copy file name to clipboardexpand all lines: docs/sections.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Like Beamer, Touying also has the concept of sections and subsections.
11
11
Generally, first-level, second-level, and third-level headings correspond to sections, subsections, and subsubsections, respectively, such as in the dewdrop theme.
12
12
13
13
```typst
14
-
#import "@preview/touying:0.5.3": *
14
+
#import "@preview/touying:0.5.4": *
15
15
#import themes.dewdrop: *
16
16
17
17
#show: dewdrop-theme.with(aspect-ratio: "16-9")
@@ -30,7 +30,7 @@ Hello, Touying!
30
30
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.
0 commit comments