typst
typst copied to clipboard
A new markup-based typesetting system that is powerful and easy to learn.
The same image, with the same orientation and resolution, it rendered in 3 different orientations depending on the file type. Only `jpg` is the right way. The images and generated...
It might be useful to provide a text.accent function to insert symbols like ö without having to look them up or memorize an alt code. This would be an exact...
HTML Export
This is all very much my draft notes currently but will be worked upon in the comming days, so take everything with a grain of salt. **tl;dr** This is looking...
This changes aims at simplifying the existing `Content` implementation by replacing the `attr: EcoVec` field and instead moving to a more specialized structure that keeps track of styling, ancestry (parent...
On the website there are a lot of cool examples. I'd think that it would be ideal to add a link to the source code of each example, so that...
As explained in the title. ``` $√2+3$ → $sqrt(2)+3$ $√2^3$ → $sqrt(2^3)$ $√(x+y)$ → $sqrt(x+y)$ ``` I think it's the only reasonable way to interpret it rather than an off-placed...
Consider having a file `literature.bib` ```bib @misc{key, author = "Author", year = "2023" } ``` Then this works: ```typ #cite("key") #bibliography("literature.bib") ``` and this doesn't work: ```typ #locate(loc => {...
Add support for outputting as SVG, by cli. It's useful for render typst formula in softwares ( such as Inkscape, it supports latex ) ``` typst compile --svg --source "$e^(i...
Text that does not have any spaces in it will just go off the page:  i.e. if we create a code block with a bunch of "a"'s: ```` ```...
I want to access the values of rules that I previously set/which are set in the current context. ### Workaround It can be worked around by putting the values into...