Package Information
- Last Updated
- Minimum Typst Version
- 0.11.0
- Authors
- TomVer99
- Categories
- utility
Preview
1. Get the package
Download the package using the TPIX CLI:
tpix get @preview/aero-check:0.1.12. Initialize from template
Create a new project from this template:
typst init @preview/aero-check:0.1.1aero-check
This template is meant to create checklists with a style inspired by aviation checklists.
It includes 2 different styles!
Usage
Start your checklist with the following code:
#import "@preview/aero-check:0.1.1": *
#show: checklist.with(
title: "Title",
// disclaimer: "",
// 0 or 1
// style: 0,
)
You can then add items to your checklist with the following code:
#topic("Topic")[
#section("Section")[
#step("Step", "Check")
#step("Step", "Check")
#step("Step", "Check")
#step("Step", "Check")
]
#section("Section")[
#step("Step", "Check")
#step("Step", "Check")
#step("Step", "Check")
#step("Step", "Check")
]
]
And you can use #colbreak() to add a column break.