A simple and elegant document template for multiple daily tasks.
Usage
This is my personal typst template designedfor homework, report or some other documents. You can obtain the same styles of this template by simply adding the follows two lines at the top of your document:
#import "@preview/may:0.0.1": *
#show: may-sans
// ...
// Your typst documents here
Alternatively you can also initialize a project with may by running the following command:
typst init @preview/may
This will create a new folder named may
in the current path, along with a sample file main.typ
as the start point.
Tips
It is recommanded to use this template along with to following fonts.
- Libertinus for latin main body.
- Maple Mono for codeblocks.
- 霞鹜文楷 for Chinese characters.
These are all open-sourced fonts of high quality. You can also use other fonts you prefer, by simply adding this line after the show
command:
#set text(font: "FontName")
You are welcomed to create new PRs to this repository and help improve this template.