ft: add some screenshots

This commit is contained in:
2025-12-09 22:22:17 +01:00
parent 3d1fe3c968
commit 4dfbc6eae8
10 changed files with 16 additions and 87 deletions

View File

@@ -9,6 +9,9 @@ In the end, it's just:
- enabling speaker notes (using [pympress](https://github.com/Cimbali/pympress)) - enabling speaker notes (using [pympress](https://github.com/Cimbali/pympress))
- providing some helper functions to use common environments with default parameters (grids, ...) - providing some helper functions to use common environments with default parameters (grids, ...)
## Features
Thanks to touying, we have: Thanks to touying, we have:
- title slides - title slides
- progression bar - progression bar
@@ -37,3 +40,11 @@ or just the Typst installation on your system:
$ typst watch presentation --open $ typst watch presentation --open
``` ```
## Screenshots
![](figures/slide.png)
| | | |
|---|---|---|
| ![](figures/ex1.png)|![](figures/ex2.png) | ![](figures/ex3.png)|
| ![](figures/ex4.png)|![](figures/ex5.png) | ![](figures/ex6.png)|

BIN
figures/ex1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

BIN
figures/ex2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

BIN
figures/ex3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

BIN
figures/ex4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 KiB

BIN
figures/ex5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

BIN
figures/ex6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

BIN
figures/slide.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

82
flake.lock generated
View File

@@ -1,82 +0,0 @@
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1765186076,
"narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs",
"typix": "typix"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"typix": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1765097185,
"narHash": "sha256-BHXeYveNQxDukwJtj9CefkwbTCxLv9kCDnD8A0lz30k=",
"owner": "loqusion",
"repo": "typix",
"rev": "36cd1360a0a2da94b1525a3340483996aaf867a3",
"type": "github"
},
"original": {
"owner": "loqusion",
"repo": "typix",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

View File

@@ -19,14 +19,14 @@
// footer: self => text(size: 0.8em, []), // footer: self => text(size: 0.8em, []),
footer-right: text(size: 0.8em, [#context utils.slide-counter.display()]), footer-right: text(size: 0.8em, [#context utils.slide-counter.display()]),
config-info( config-info(
title: [Title], title: [This is a cool presentation],
subtitle : [Subtitle], subtitle : [Made with touying!],
author: "Marco Thomas", author: "Author <author@example.com>",
date: [DDth MMM, YYYY], date: [1st Jan, 1970],
institution: [ institution: [
#grid(columns: 2, gutter: 1em, #grid(columns: 2, gutter: 1em,
image("figures/typst.png", width: 2em), image("figures/typst.png", width: 2em),
[Some university], [Typst University],
) )
] ]
), ),