a

aero-check

@preview

A simple template to create checklists with an aviation inspired style.

v0.1.1
MIT
1 downloads
Template

Package Information

Last Updated
Minimum Typst Version
0.11.0
Authors
TomVer99
Categories
utility

Preview

Template preview

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/aero-check:0.1.1

2. Initialize from template

Create a new project from this template:

typst init @preview/aero-check:0.1.1

Version History

0.1.10.11.0
123409fe01db...
0.1.0
b71ea4e33fd1...

aero-check

GitHub release (with filter)
GitHub Repo stars

Maintenance

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.