k

knowledge-key

@preview

A compact cheat-sheet

v1.0.2
MIT-0
Template

Package Information

Last Updated
Minimum Typst Version
0.13.1
Categories
flyer
Disciplines
computer-scienceengineering

Preview

Template preview

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/knowledge-key:1.0.2

2. Initialize from template

Create a new project from this template:

typst init @preview/knowledge-key:1.0.2

Version History

1.0.20.13.1
5bb60dfcffa2...
1.0.10.11.0
a7369ba98abb...
1.0.00.11.0
abbc30f58e80...

Knowledge-Key

This is a typst template for a compact cheat-sheet.

Usage

You can use this template in the Typst web app by clicking "Start from template" on the dashboard and searching for knowledge-key.
Alternatively, you can use the CLI to kick this project off using the command

typst init @preview/knowledge-key

Typst will create a new directory with all the files needed to get you started.

Configuration

This template exports the ieee function with the following named arguments:

  • title: The title of the cheat-sheet
  • authors: A string of authors

The function also accepts a single, positional argument for the body of the
paper.

The template will initialize your package with a sample call to the knowledge-key
function in a show rule. If you want to change an existing project to use this
template, you can add a show rule like this at the top of your file:

#import "@preview/knowledge-key:1.0.2": *

#show: knowledge-key.with(
  title: [Title],
  authors: "Author1, Author2"
)

// Your content goes below.