TypstDocumentation

Scripting

Typst embeds a powerful scripting language. You can automate your documents and create more sophisticated styles with code. Below is an overview over the scripting concepts.

Expressions

In Typst, markup and code are fused into one. All but the most common elements are created with functions. To make this as convenient as possible, Typst provides compact syntax to embed a code expression into markup: An expression is introduced with a hash (#) and normal markup parsing resumes after the expression is finished. If a character would continue the expression but should be interpreted as text, the expression can forcibly be ended with a semicolon (;).

#emph[Hello] \
#emoji.face \
#"hello".len()
Preview

The example above shows a few of the available expressions, including function calls, field accesses, and method calls. More kinds of expressions are discussed in the remainder of this chapter. A few kinds of expressions are not compatible with the hash syntax (e.g. binary operator expressions). To embed these into markup, you can use parentheses, as in #(1 + 2).

Blocks

To structure your code and embed markup into it, Typst provides two kinds of blocks:

Content and code blocks can be nested arbitrarily. In the example below, [hello ] is joined with the output of a + [ the ] + b yielding [hello from the *world*].

#{
  let a = [from]
  let b = [*world*]
  [hello ]
  a + [ the ] + b
}
Preview

Bindings and Destructuring

As already demonstrated above, variables can be defined with let bindings. The variable is assigned the value of the expression that follows the = sign. The assignment of a value is optional, if no value is assigned, the variable will be initialized as none. The let keyword can also be used to create a custom named function. Let bindings can be accessed for the rest of the containing block or document.

#let name = "Typst"
This is #name's documentation.
It explains #name.

#let add(x, y) = x + y
Sum is #add(2, 3).
Preview

Let bindings can also be used to destructure arrays and dictionaries. In this case, the left-hand side of the assignment should mirror an array or dictionary. The .. operator can be used once in the pattern to collect the remainder of the array's or dictionary's items.

#let (x, y) = (1, 2)
The coordinates are #x, #y.

#let (a, .., b) = (1, 2, 3, 4)
The first element is #a.
The last element is #b.

#let books = (
  Shakespeare: "Hamlet",
  Homer: "The Odyssey",
  Austen: "Persuasion",
)

#let (Austen,) = books
Austen wrote #Austen.

#let (Homer: h) = books
Homer wrote #h.

#let (Homer, ..other) = books
#for (author, title) in other [
  #author wrote #title.
]
Preview

You can use the underscore to discard elements in a destructuring pattern:

#let (_, y, _) = (1, 2, 3)
The y coordinate is #y.
Preview

Destructuring also work in argument lists of functions ...

#let left = (2, 4, 5)
#let right = (3, 2, 6)
#left.zip(right).map(
  ((a,b)) => a + b
)
Preview

... and on the left-hand side of normal assignments. This can be useful to swap variables among other things.

#{
  let a = 1
  let b = 2
  (a, b) = (b, a)
  [a = #a, b = #b]
}
Preview

Conditionals

With a conditional, you can display or compute different things depending on whether some condition is fulfilled. Typst supports if, else if and else expression. When the condition evaluates to true, the conditional yields the value resulting from the if's body, otherwise yields the value resulting from the else's body.

#if 1 < 2 [
  This is shown
] else [
  This is not.
]
Preview

Each branch can have a code or content block as its body.

Loops

With loops, you can repeat content or compute something iteratively. Typst supports two types of loops: for and while loops. The former iterate over a specified collection whereas the latter iterate as long as a condition stays fulfilled. Just like blocks, loops join the results from each iteration into one value.

In the example below, the three sentences created by the for loop join together into a single content value and the length-1 arrays in the while loop join together into one larger array.

#for c in "ABC" [
  #c is a letter.
]

#let n = 2
#while n < 10 {
  n = (n * 2) - 1
  (n,)
}
Preview

For loops can iterate over a variety of collections:

To control the execution of the loop, Typst provides the break and continue statements. The former performs an early exit from the loop while the latter skips ahead to the next iteration of the loop.

#for letter in "abc nope" {
  if letter == " " {
    break
  }

  letter
}
Preview

The body of a loop can be a code or content block:

Fields

You can use dot notation to access fields on a value. The value in question can be either:

#let dict = (greet: "Hello")
#dict.greet \
#emoji.face

#let it = [= Heading]
#it.body \
#it.depth
Preview

Methods

A method call is a convenient way to call a function that is scoped to a value's type. For example, we can call the str.len function in the following two equivalent ways:

#str.len("abc") is the same as
#"abc".len()
Preview

The structure of a method call is value.method(..args) and its equivalent full function call is type(value).method(value, ..args). The documentation of each type lists it's scoped functions. You cannot currently define your own methods.

#let array = (1, 2, 3, 4)
#array.pop() \
#array.len() \

#("a, b, c"
    .split(", ")
    .join[ --- ])

#"abc".len() is the same as
#str.len("abc")
Preview

There are a few special functions that modify the value they are called on (e.g. array.push). These functions must be called in method form. In some cases, when the method is only called for its side effect, its return value should be ignored (and not participate in joining). The canonical way to discard a value is with a let binding: let _ = array.remove(1).

Modules

You can split up your Typst projects into multiple files called modules. A module can refer to the content and definitions of another module in multiple ways:

Instead of a path, you can also use a module value, as shown in the following example:

#import emoji: face
#face.grin
Preview

Packages

To reuse building blocks across projects, you can also create and import Typst packages. A package import is specified as a triple of a namespace, a name, and a version.

#import "@preview/example:0.1.0": add
#add(2, 7)
Preview

The preview namespace contains packages shared by the community. You can find all available community packages on Typst Universe.

If you are using Typst locally, you can also create your own system-local packages. For more details on this, see the package repository.

Operators

The following table lists all available unary and binary operators with effect, arity (unary, binary) and precedence level (higher binds stronger).

OperatorEffectArityPrecedence
-NegationUnary7
+No effect (exists for symmetry)Unary7
*MultiplicationBinary6
/DivisionBinary6
+AdditionBinary5
-SubtractionBinary5
==Check equalityBinary4
!=Check inequalityBinary4
<Check less-thanBinary4
<=Check less-than or equalBinary4
>Check greater-thanBinary4
>=Check greater-than or equalBinary4
inCheck if in collectionBinary4
not inCheck if not in collectionBinary4
notLogical "not"Unary3
andShort-circuiting logical "and"Binary3
orShort-circuiting logical "orBinary2
=AssignmentBinary1
+=Add-AssignmentBinary1
-=Subtraction-AssignmentBinary1
*=Multiplication-AssignmentBinary1
/=Division-AssignmentBinary1