2023-03-18 16:14:15 +01:00
< h1 align = "center" >
< img alt = "Typst" src = "https://user-images.githubusercontent.com/17899797/226108480-722b770e-6313-40d7-84f2-26bebb55a281.png" >
< / h1 >
< p align = "center" >
< a href = "https://typst.app/docs/" >
< img alt = "Documentation" src = "https://img.shields.io/website?down_message=offline&label=docs&up_color=007aff&up_message=online&url=https%3A%2F%2Ftypst.app%2Fdocs" / >
< / a >
< a href = "https://typst.app/" >
< img alt = "Typst App" src = "https://img.shields.io/website?down_message=offline&label=typst.app&up_color=239dad&up_message=online&url=https%3A%2F%2Ftypst.app" / >
< / a >
< a href = "https://discord.gg/2uDybryKPe" >
< img alt = "Discord Server" src = "https://img.shields.io/discord/1054443721975922748?color=5865F2&label=discord&labelColor=555" / >
< / a >
< a href = "https://github.com/typst/typst/blob/main/LICENSE" >
< img alt = "Apache-2 License" src = "https://img.shields.io/badge/license-Apache%202-brightgreen" / >
< / a >
< / p >
2023-03-24 08:07:01 +00:00
Typst is a new markup-based typesetting system that is designed to be as powerful
2023-03-18 16:14:15 +01:00
as LaTeX while being much easier to learn and use. Typst has:
- Built-in markup for the most common formatting tasks
- Flexible functions for everything else
- A tightly integrated scripting system
- Math typesetting, bibliography management, and more
- Fast compile times thanks to incremental compilation
- Friendly error messages in case something goes wrong
This repository contains the Typst compiler and its CLI, which is everything you
need to compile Typst documents locally. For the best writing experience,
consider signing up to our [collaborative online editor][app] for free. It is
currently in public beta.
## Example
2023-03-20 12:23:06 +01:00
A [gentle introduction][tutorial] to Typst is available in our documentation.
However, if you want to see the power of Typst encapsulated in one image, here
it is:
2023-03-18 16:14:15 +01:00
< p align = "center" >
2023-03-27 20:23:37 +02:00
< img alt = "Example" width = "900" src = "https://user-images.githubusercontent.com/17899797/228031796-ced0e452-fcee-4ae9-92da-b9287764ff25.png" / >
2023-03-18 16:14:15 +01:00
< / p >
2023-03-22 09:04:26 +01:00
2023-03-21 20:23:53 +01:00
Let's dissect what's going on:
2023-03-18 16:14:15 +01:00
- We use _set rules_ to configure element properties like the size of pages or
the numbering of headings. By setting the page height to `auto` , it scales to
2023-03-21 21:45:42 +02:00
fit the content. Set rules accommodate the most common configurations. If you
2023-03-18 16:14:15 +01:00
need full control, you can also use [show rules][show] to completely redefine
the appearance of an element.
- We insert a heading with the `= Heading` syntax. One equals sign creates a top
2023-03-20 12:23:06 +01:00
level heading, two create a subheading and so on. Typst has more lightweight
markup like this, see the [syntax] reference for a full list.
2023-03-18 16:14:15 +01:00
2023-03-18 19:27:31 +01:00
- [Mathematical equations][math] are enclosed in dollar signs. By adding extra
spaces around the contents of a equation, we can put it into a separate block.
2023-03-18 16:14:15 +01:00
Multi-letter identifiers are interpreted as Typst definitions and functions
unless put into quotes. This way, we don't need backslashes for things like
`floor` and `sqrt` . And `phi.alt` applies the `alt` modifier to the `phi` to
select a particular symbol variant.
- Now, we get to some [scripting]. To input code into a Typst document, we can
write a hashtag followed by an expression. We define two variables and a
recursive function to compute the n-th fibonacci number. Then, we display the
results in a center-aligned table. The table function takes its cells
row-by-row. Therefore, we first pass the formulas `$F_1$` to `$F_10$` and then
the computed fibonacci numbers. We apply the spreading operator (`..` ) to both
because they are arrays and we want to pass the arrays' items as individual
arguments.
< details >
< summary > Text version of the code example.< / summary >
```text
#set page(width: 10cm, height: auto)
#set heading(numbering: "1.")
= Fibonacci sequence
The Fibonacci sequence is defined through the
2023-03-27 20:23:37 +02:00
recurrence relation $F_n = F_(n-1) + F_(n-2)$.
It can also be expressed in _closed form:_
2023-03-18 16:14:15 +01:00
2023-03-27 20:23:37 +02:00
$ F_n = round(1 / sqrt(5) phi.alt^n), quad
2023-03-18 16:14:15 +01:00
phi.alt = (1 + sqrt(5)) / 2 $
2023-03-27 20:23:37 +02:00
#let count = 8
2023-03-18 16:14:15 +01:00
#let nums = range(1, count + 1)
#let fib(n) = (
if n < = 2 { 1 }
else { fib(n - 1) + fib(n - 2) }
)
The first #count numbers of the sequence are:
#align (center, table(
columns: count,
..nums.map(n => $F_#n $),
..nums.map(n => str(fib(n))),
))
```
< / details >
2023-03-29 23:11:41 +02:00
## Installing
2023-03-18 16:14:15 +01:00
You can get sources and pre-built binaries for the latest release of Typst from
2023-03-29 23:11:41 +02:00
the [releases page][releases]. This will give you Typst's CLI which converts
Typst sources into PDFs.
2023-03-29 23:08:53 +02:00
Typst is also available through several package managers:
```sh
# macOS or Linux using Homebrew
brew install typst
# Arch Linux
pacman -S typst
```
2023-03-29 23:11:41 +02:00
Nix users can use the `typst` package with `nix-shell -p typst` or build and run
the bleeding edge version with `nix run github:typst/typst -- --version` .
2023-03-18 16:14:15 +01:00
2023-03-29 23:11:41 +02:00
## Usage
Once you have installed Typst, you can use it like this:
2023-03-18 16:14:15 +01:00
```sh
# Creates `file.pdf` in working directory.
2023-04-05 00:58:01 +02:00
typst compile file.typ
2023-03-18 16:14:15 +01:00
# Creates PDF file at the desired path.
2023-04-05 00:58:01 +02:00
typst compile path/to/source.typ path/to/output.pdf
2023-03-18 16:14:15 +01:00
```
You can also watch source files and automatically recompile on changes. This is
faster than compiling from scratch each time because Typst has incremental
compilation.
```sh
# Watches source files and recompiles on changes.
2023-04-05 00:58:01 +02:00
typst watch file.typ
```
You can also add custom font paths for your project and list all of the discovered fonts:
```sh
# Adds additional directories to search for fonts.
typst --font-path path/to/fonts compile file.typ
# Lists all of the discovered fonts.
typst --font-path path/to/fonts fonts
2023-03-18 16:14:15 +01:00
```
2023-03-19 10:19:24 +01:00
If you prefer an integrated IDE-like experience with autocompletion and instant
preview, you can also check out the [Typst web app][app], which is currently in
public beta.
2023-03-18 16:14:15 +01:00
## Build from source
To build Typst yourself, you need to have the [latest stable Rust][rust]
installed. Then, you can build the CLI with the following command:
```sh
cargo build -p typst-cli --release
```
The optimized binary will be stored in `target/release/` .
## Contributing
We would love to see contributions from the community. If you experience bugs,
feel free to open an issue or send a PR with a fix. For new features, we would
invite you to open an issue first so we can explore the design space together.
If you want to contribute and are wondering how everything works, also check out
the [`ARCHITECTURE.md` ][architecture] file. It explains how the compiler works.
2023-03-26 13:43:21 +02:00
## Pronunciation
2023-03-27 11:19:54 +03:00
**IPA**: /taɪ pst/
2023-03-26 13:43:21 +02:00
"Ty" like in **Ty**pesetting and "pst" like in Hi**pst**er.
2023-03-18 16:14:15 +01:00
## Design Principles
All of Typst has been designed with three key goals in mind: Power,
simplicity, and performance. We think it's time for a system that matches the
power of LaTeX, is easy to learn and use, all while being fast enough to realize
instant preview. To achieve these goals, we follow three core design principles:
- **Simplicity through Consistency:**
If you know how to do one thing in Typst, you should be able to transfer that
knowledge to other things. If there are multiple ways to do the same thing,
one of them should be at a different level of abstraction than the other. E.g.
it's okay that `= Introduction` and `#heading[Introduction]` do the same thing
because the former is just syntax sugar for the latter.
- **Power through Composability:**
There are two ways to make something flexible: Have a knob for everything or
have a few knobs that you can combine in many ways. Typst is designed with the
second way in mind. We provide systems that you can compose in ways we've
never even thought of. TeX is also in the second category, but it's a bit
low-level and therefore people use LaTeX instead. But there, we don't really
have that much composability. Instead, there's a package for everything
(`\usepackage{knob}` ).
- **Performance through Incrementality:**
2023-03-21 21:45:42 +02:00
All Typst language features must accommodate for incremental compilation.
2023-03-18 16:14:15 +01:00
Luckily we have [`comemo` ], a system for incremental compilation which does
most of the hard work in the background.
2023-03-18 18:19:13 +01:00
[docs]: https://typst.app/docs/
2023-03-18 16:14:15 +01:00
[app]: https://typst.app/
[discord]: https://discord.gg/2uDybryKPe
2023-03-20 12:23:06 +01:00
[tutorial]: https://typst.app/docs/tutorial/
2023-03-18 16:14:15 +01:00
[show]: https://typst.app/docs/reference/styling/#show -rules
[math]: https://typst.app/docs/reference/math/
2023-03-20 12:23:06 +01:00
[syntax]: https://typst.app/docs/reference/syntax/
2023-03-18 16:14:15 +01:00
[scripting]: https://typst.app/docs/reference/scripting/
2023-03-18 18:19:13 +01:00
[rust]: https://rustup.rs/
[releases]: https://github.com/typst/typst/releases/
2023-03-18 16:14:15 +01:00
[architecture]: https://github.com/typst/typst/blob/main/ARCHITECTURE.md
[`comemo` ]: https://github.com/typst/comemo/