-
To achieve this:
It requires so many workarounds:
```typst
#let mod(n, m) = {
while n >= m {
n -= m
}
return n
}
#let hex(n) = {
let array = ()
while n > 0 {
…
-
The idea would be to do something like this:
```lisp
#import "../../canvas.typ": *
#box(stroke: 2pt + red, canvas({
import "../../draw.typ": *
content([ #content_node("lab1")[This] is …
-
Recently these were added https://github.com/typst/typst/commit/766d1be72b046c1ee0db2602d8573b206fa81fe5, and they do work with the accent() function, but they're not listed under https://typst.app/do…
-
I'm taking an example...
```
#let f(x) = {
for i in range(x) {
}
}
#f(3000000)
#f(3000000)
#f(3000000)
#f(3000000)
```
In incremental compilation mode, if a function call `f()` is added…
-
### Description
While using a `show "text": "replacement"` rule, I discovered that it is sometimes not applied in a footnote.
Adding / removing a pagebreak or unrelated text seems to influence whe…
-
### [Proposal 3, **Renderer**: Fine-granular Canvas Update][proposal-3-fine-granular-canvas-update]
Break the canvas into small pieces and update them individually to shorten E2E latency.
To…
-
Has anyone started a LaTeX math migration guide to help those of us familiar with LaTeX to typeset our math with typst instead? (e.g. showing LaTeX and typst equivalents)
I'd be willing to contribu…
-
I would like to suggest adding support for [Typst](https://github.com/typst/typst), a new markup-based typesetting system for the sciences. `Typst` is designed to be an alternative to advanced tools l…
-
https://github.com/Myriad-Dreamin/typst.ts/blob/fbb64c14b6a93bed869756f2b0461957c2013b04/compiler/src/vfs/mod.rs#L134-L138
-
This issue is a tracking issue for many different new features and improvements to Typst.
They are listed below in no particular order, however some do depend on other issues that need to be addresse…