Create simple static slides with Typst for Amrita University presentations.
This package allows the creation of slides using standard Typst headings. It is designed to be lightweight and easy to use.
Note: This package is slightly inspired by, and based on Slydst.
If you prefer not to install the package or need to use the template in the online Typst editor, simply download the single amrita-ppt.typ file from the repository and place it next to your main .typ file. Then import it directly using:
#import "amrita-ppt.typ": *To install this package locally, clone the repository into your local Typst package directory.
Linux:
git clone https://github.com/nithitsuki/amrita-ppt-template.git "${XDG_DATA_HOME:-$HOME/.local/share}/typst/packages/local/amrita-ppt/0.2.0"macOS:
git clone https://github.com/nithitsuki/amrita-ppt-template.git ~/Library/Application/typst/packages/local/amrita-ppt/0.2.0Windows (powershell):
git clone https://github.com/nithitsuki/amrita-ppt-template.git "$env:APPDATA/typst/packages/local/amrita-ppt/0.2.0"and then you can start using it with:
typst init "@local/amrita-ppt:0.2.0"Notes on common options
title-theme: choose between"default"(large title with top/bottom bars) and"minimal"(compact title layout).dense-mode: whentrue, header and footer show tighter spacing and can display the page/event compactly.authors: accepts a single string, an array of strings, or an array of maps with keys likename,email, andaffiliation. Examples:
// simple
authors: ("Ada Lovelace",)
// detailed
authors: ((name: "Ada Lovelace", email: "ada@example.com", affiliation: "Dept A"),
(name: "Alan Turing", email: "alan@example.com", affiliation: "Dept B"),)affiliations: an array of affiliation strings. If authors includeaffiliationvalues, they are matched to these entries and rendered as superscripts.team-logo(optional): pass an image block orimage("path", width: ...)to show a team/institution logo on title slides.
You can use framed environments for highlighted content:
#definition(title: "Term")[
A short definition.
]
#theorem(title: "Important")[
Statement of the theorem.
]


