Universe

Create project in app

touying-greyc-ambrosia Typst Universe License: MIT

touying-greyc-ambrosia is a Touying theme for creating presentation slides in Typst.

It is an unofficial template intended for members of the GREYC lab, and is designed (by default) to mimic the official LaTeX & PPT templates provided in https://www.greyc.fr/intranet. However, the theme comes with a lot of modifications and a range of different variants. You are free to use or modify it for your own academic presentations, regardless of your affiliation.

✨ Fun Fact

Ambrosia 🍲 is a food or drink of the Greek gods, often described as having every flavor imaginable.

Features

Flavors

The greyc-theme offers six different flavors, inspired by existing touying and beamer themes.

flavor 1 2 3
legacy Sample title slide with legacy flavor Sample outline slide with legacy flavor Sample content slide with legacy flavor
simple Sample title slide with simple flavor Sample outline slide with simple flavor Sample content slide with simple flavor
cambridge Sample title slide with cambridge flavor Sample outline slide with cambridge flavor Sample content slide with cambridge flavor
darmstadt Sample title slide with darmstadt flavor Sample outline slide with darmstadt flavor Sample content slide with darmstadt flavor
dewdrop Sample title slide with dewdrop flavor Sample outline slide with dewdrop flavor Sample content slide with dewdrop flavor
stargazer Sample title slide with stargazer flavor Sample outline slide with stargazer flavor Sample content slide with stargazer flavor

To select a flavor, you pass its name to the show rule of the theme.

#import "@preview/touying-greyc-ambrosia:0.1.0": *

#show: greyc-theme.with(
  flavor: "[flavor-name]"
)

Other Functionalities

Footnote Citation

  • Instead of using the prose citation @key, we can use the #footcite(<key>) function, which further includes a full citation to the footnote of the same slide.
  • At the end of the presentation, you must add your bibliography either by:
    • A separate bibliography slide.
    #bibliography-slide("bibliography.bib", style: "ieee")
    
    • A hidden bibliography.
    #hidden-bibliography("bibliography.bib", style: "ieee")
    

💡 Tip

Footnote citation, by default, is inserted only in the first slide an article was cited. To make it appear on all slides they are mentioned, modify the footcite-once parameter.

#show: greyc-theme.with(
  footcite-once: false
)

Usage

This package is available in the Typst universe. To use it, simply add the following code to your document.

#import "@preview/touying-greyc-ambrosia:0.1.0": *

#show: greyc-theme.with(
  // legacy | stargazer | dewdrop | cambridge | darmstadt
  flavor: "legacy",
  aspect-ratio: "16-9",
  config-info(
    title: [Title],
    subtitle: [Subtitle],
    author: [Author],
    date: datetime.today(),
    institution: [Institution],
  ),
)

#title-slide()

= Section Title

== Slide

#lorem(30)

â„šī¸ Note

touying-greyc-ambrosia should always be imported after touying (which is not necessary and can be removed) in order for the functions and components it overrides to work correctly (e.g. #alert, #show: appendix, â€Ļ).

#import "@preview/touying:0.6.2": *
#import "@preview/touying-greyc-ambrosia:0.1.0": *

Otherwise, you can download it for local use:

git clone https://github.com/inspiros/touying-greyc-ambrosia
python scripts/install.py

This Python script stores the package files in the right location following the instructions here. After that, you can import the package with:

#import "@local/touying-greyc-ambrosia:0.1.0": *

Examples

For more sophisticated use cases, please check examples/demo.typ and examples/demo.pdf.

License

MIT licensed, see LICENSE.