Typst Compiler
Write and compile Typst documents in your browser. All processing happens locally via WebAssembly.
Ready
Loading Typst compiler (12MB WASM)...
What is Typst?
Typst is a modern typesetting language designed to be more intuitive than LaTeX. It compiles to high-quality PDFs and is great for academic papers, resumes, reports, and more.
Typst vs LaTeX
- Cleaner syntax — no more
\begin{...}everywhere - Faster compile times — Typst is written in Rust and compiles quickly
- Built-in math — just use
$..$for inline math,$$..$$for display - Modern features — color, layout, and automation built-in
Example
= My Document
#set page(margin: 2cm)
#set text(font: "Linux Libertine", size: 11pt)
== Introduction
This is a *Typst* document with _formatting_.
=== Math
The quadratic formula: $ x = (-b +- sqrt(b^2 - 4ac)) / (2a) $Tip: Try pasting your own Typst document above and click Compile.