[!WARNING] This theme is NOT affiliated with the University of Strasbourg. The logo and the fonts are the property of the University of Strasbourg.
touying-unistra-pristine is a Touying theme for creating presentation slides in Typst, adhering to the core principles of the style guide of the University of Strasbourg, France (French). It is an unofficial theme and it is NOT affiliated with the University of Strasbourg.
This theme was partly created using components from tud-slides and grape-suite.
- Focus Slides, with predefined themes and custom colors support.
- Hero Slides.
- Gallery Slides.
- Admonitions (with localization and plural support).
- Universally Toggleable Header/Footer (see Configuration).
- Subset of predefined colors taken from the style guide of the University of Strasbourg (see colors.typ).
See example/example.pdf for an example PDF output, and example/example.typ for the corresponding Typst file.
These steps assume that you already have Typst installed and/or running.
Import from Typst Universe
#import "@preview/touying:0.5.3": *
#import "@preview/touying-unistra-pristine:1.1.0": *
#show: unistra-theme.with(
aspect-ratio: "16-9",
config-info(
title: [Title],
subtitle: [_Subtitle_],
author: [Author],
date: datetime.today().display("[month repr:long] [day], [year repr:full]"),
),
)
#title-slide[]
= Example Section Title
== Example Slide
A slide with *important information*.
#lorem(50)
Local installation
1. Clone the project
git clone https://github.com/spidersouris/touying-unistra-pristine
2. Import Touying and touying-unistra-pristine
See example/example.typ for a complete example with configuration.
#import "@preview/touying:0.5.3": *
#import "src/unistra.typ": *
#import "src/settings.typ" as settings
#import "src/colors.typ": *
#import "src/admonition.typ": *
#show: unistra-theme.with(
aspect-ratio: "16-9",
config-info(
title: [Title],
subtitle: [_Subtitle_],
author: [Author],
date: datetime.today().display("[month repr:long] [day], [year repr:full]"),
),
)
#title-slide[]
= Example Section Title
== Example Slide
A slide with *important information*.
#lorem(50)
[!NOTE] The default font used by touying-unistra-pristine is “Unistra A”, a font that can only be downloaded by students and staff from the University of Strasbourg. If the font is not installed on your computer, Segoe UI or Roboto will be used as a fallback, in that specific order. You can change that behavior in the settings.
The theme can be configured to your liking by editing the settings.typ file.
A complete list of settings can be found in the wiki.