Releases: typst/typst
Version 0.14.0 (October 24, 2025)
Read the announcement blog post
View changelog with links into the documentation on typst.app/docs
Highlights
- Typst now produces accessible PDFs out of the box, with opt-in support for stricter checks and conformance to PDF/UA-1
- Typst now supports all PDF/A standards
- PDFs can now be used as images (thanks to @LaurenzV)
- Added support for character-level justification (can significantly improve the appearance of justified text)
- Added support for many more built-in elements in HTML export
- Added typed HTML API (e.g.Β
html.div) with individually typed attributes - Added support for multiple headers and subheaders in tables
- Added
titleelement for displaying the document title - Added
frac.styleproperty for producing skewed and inline fractions
PDF export
PDF export was fully rewritten to use the new krilla library, fixing various bugs and enabling many improvements. Known fixes are listed below, but there will likely be other changes in how the output behaves. If you spot any regressions, please report them on GitHub. (Thanks to @LaurenzV for creating krilla!)
- Typst now produces accessible PDFs out of the box. Such documents are suitable for consumption in a wide range of circumstances. That not only includes consumption by people with permanent or temporary disabilities, but also by those with different devices or preferences.
- Typst PDFs are now tagged by default. Tags are rich metadata that PDF viewers can use to make the document consumable in other ways than visually (e.g., through a screen reader).
- In addition, Typst can now emit documents conforming to the PDF/UA-1 standard. (PDF/UA-2 is not yet supported, but planned.)
- There is an increasing amount of existing and upcoming legislation requiring documents to be accessible, for instance, the European Accessibility Act and the Americans with Disabilities Act.
- For more details on all of this, read the new Accessibility Guide.
- Typst now supports all PDF/A standards: PDF/A-1b, PDF/A-1a, PDF/A-2b, PDF/A-2u, PDF/A-2a, PDF/A-3b, PDF/A-3u, PDF/A-3a, PDF/A-4, PDF/A-4f, and PDF/A-4e. See the expanded PDF/A documentation for guidance on how to select a suitable standard.
- Typst now supports the PDF versions 1.4, 1.5, 1.6, and 2.0 in addition to PDF 1.7. See the relevant section of the PDF documentation for details.
- Added
pdf.artifactfunction for marking content as not semantically meaningful - Added experimental
pdf.header-cell,pdf.data-cell, andpdf.table-summaryfunctions for enhancing accessibility of documents with complex tables. These functions are guarded by thea11y-extrasfeature. They do not have a final interface and will be removed in the future, either through integration into table functions or through full removal. - PDF heading bookmarks now contain the heading's numbering
- Attachments
- Renamed
pdf.embedtopdf.attach(the old name will remain as a deprecated alias until Typst 0.15) - The
mimeproperty ofpdf.attachis now checked for syntactical correctness (Minor breaking change) - Fixed parsing of the
dataargument ofpdf.attach - Attachments now smartly determine whether they should be compressed
- Renamed
- Text extraction (i.e.Β copy paste)
- Now works correctly even when multiple different characters result in the same glyph
- Spaces between words at which a natural line break occurred are now correctly retained for text extraction
- Fixed mapping of hyphenation artifacts to Unicode text
- Images
- CMYK images now work properly in PDF export
- Improved export of text in SVG images with a filter
- Improved compatibility of SVG images with Quartz rendering engine (the engine used in Apple Preview)
- Improved handling of SVG images with high group nesting depth
- Fixed a bug with text in patterns
- Fixed gradients with transparency
HTML export
- Added support for many more built-in elements (the Model category is now fully covered)
- The
imageelement - The
footnoteandfootnote.entryelement - The
outlineandoutline.entryelement - The
bibliographyelement - The
smartquoteelement - The
subandsuperelements - The
underline,overline,strike, andhighlightelements - The
smallcapselement - The
lowerandupperfunctions
- The
- Added typed HTML API (e.g.Β
html.div) with individually typed attributes- For example, to generate a
videoelement you can now write#html.video(width: 400, src: "sunrise.mp4")instead of#html.elem("video", attrs: (width: "400", src: "sunrise.mp4")). Note how thewidthattribute takes an integer instead of a string.
- For example, to generate a
- Added support for intra-doc
linktargets - The
rawelement- Added syntax highlighting support
- Block-level
rawelements now emit both a<code>and a<pre>tag - The language tag of
rawelements is now preserved as adata-langattribute on the<code>tag
- The
authorsandkeywordsproperties of thedocumentfunction now yield corresponding HTML<meta>tags - The
html.elemfunction now supports custom HTML element names - Improved encoding of
html.frame - Empty attributes are now encoded with shorthand syntax (e.g.Β
<div hidden></div>) - Zero-sized horizontal weak spacing (
h(0pt, weak: true)) does not cause a "was ignored during HTML export" warning anymore, so it can be used to destruct surrounding spaces without producing any output, as in paged export - Fixed encoding of
<pre>and<textarea>elements that start with a newline - Fixed encoding of raw text elements
- Fixed sizing of
html.frame - Fixed
measurein HTML export - Fixed nested
html.frames - Fixed that a
boxwithout a body was ignored in HTML export - Fixed encoding of whitespace in HTML
SVG export
- Added support for COLR-flavored color glyphs
- Reduced amount of
<g>grouping elements that are generated
PNG export
- Fixed crash when text size is negative
Visualize
- Added support for using PDFs as images using the new
hayrolibrary. PDFs will be embedded directly in PDF export, rasterized in PNG export, and turned into SVGs in SVG and HTML export. (Thanks to @LaurenzV for creating hayro!) - Added support for WebP images
- Various minor improvements for SVG images (see the resvg 0.44 and 0.45 changelogs)
- SVG images can now refer to external image files
- Clip paths are now properly anti-aliased
- Fixed gradients on curves where the last segment is
curve.line - Fixed stroke cap handling of shapes with partial strokes
- Fixed corner radius handling of shapes with partial strokes
- Fixed crash when sampling across two coinciding gradient stops
Layout
- Added opt-in support for character-level justification in addition to word-level justification, configured via the new
par.justification-limitsproperty. This is an impactful microtypographical technique that can significantly improve the appearance of justified text. - Fixed wrong linebreak opportunities related to object replacement characters
- Fixed an issue where a breakable block would still produce an empty segment even if nothing fit into the first segment, leading to various undesirable behaviors in combination with fills, strokes, and stickiness
- Fixed crash with set rule for column or rowspan on a grid cell
- Fixed CJK-Latin-spacing at manual line breaks and at sub- and superscript boundaries
Math
- Added
frac.styleproperty with new options for skewed and inline fractions - Added
math.equation.altproperty for setting an alternative description for an equation - Text handling
- A single equation can now use multiple fonts
- Glyph layout in math now uses proper text shaping, leading to better handling of more complex Unicode features
- Generated characters in an equation (e.g.Β the
βproduced bysqrt) can now be targeted by text show rules - Added
scrfunction for roundhand script font style - Added
dotlessparameter toaccent(typically for rendering a dotless accented i or j) - Script-style glyphs are now preferred at reduced math sizes
- Fixed
text.strokein math - Broken glyph assemblies are now prevented even when font data is incorrect
- Layout
- Fixed a bug with vertical accent positioning
- Fixed positioning of bottom accents
- Fixed a bug with layout of roots
- Improved layout of
vecandcases, making it consistent withmat - Removed linebreak opportunity before closing bracket in inline math
- An
augmentline can now exist at the start and end of a matrix, not only in between columns and rows - Shorthands and multi-character numbers do not bind more tightly than fractions anymore in cases like
$x>=(y)/z$(Minor breaking change) - Named arguments passed to symbols used as function now raise an error instead of being silently ignored (Minor breaking change)
- The
midelement does not force the"large"math class upon its contents anymore and instead defaults to"relation" - Fixed error in math parsing when
..isn't followed by anything - Fixed the default math class of β , β°, β , β±, β, β, and Ψ
Thanks to @mkorje for his work on math!
Model
- Tables
- Added support for multiple headers and subheaders in tables
- Table headers now force a rowbreak, i.e.Β an incomplete row before a header will not be filled with cells after the header
- Fixed a bug where headers and footers could accidentally expand to contain non-header cells
- Added
titleelement for displaying the document title - Added
figure.altproperty for setting an alternative description for a figure - Link hit boxes for text are now vertically a bit larger to avoid issues with automatic link detection in PDF viewers
- The
linkfunction will now produce an erro...
Version 0.14.0, Release Candidate 2 (October 17, 2025)
Changes since Release Candidate 1:
-
PDF export
- Avoided bugs of some PDF viewers (e.g. Apple Preview) with links when possible (#7146)
- Fixed encoding of text attributes in PDF tagging in some circumstances (#7092)
- Fixed that Tagged PDF output could emit empty paragraphs (#7130)
- Fixed crash in PDF export on empty table (#7126)
- Fixed crash in PDF export when multiple captions appear inside a figure (#7177)
- Improved the hint for setting the document title (#7149)
- Improved the error message for empty heading titles in PDF/UA export (#7171)
-
HTML export
- The HTML export error about footnotes in combination with a custom
<head>or<body>can now be silenced with a custom footnote show rule (#7145) - Fixed crash with footnote references in HTML export (#7158)
- Fixed encoding of CSS relative values in HTML export (#7096)
- Fixed encoding of the placeholder HTML for
typst watch(#7108)
- The HTML export error about footnotes in combination with a custom
-
Text & Layout
-
Math
-
Introspection
- Fixed regression related to introspection of elements in grids that span multiple pages (#7124)
-
Development
- Fixed warning in cargo release builds due to a yanked package (#7141)
-
Various docs fixes and improvements
Version 0.14.0, Release Candidate 1 (October 10, 2025)
For a preliminary 0.14 changelog, see https://staging.typst.app/docs/changelog/0.14.0
Version 0.13.1 (March 7, 2025)
View changelog with links into the documentation on typst.app/docs
Command Line Interface
- Fixed high CPU usage for
typst watchon Linux. Depending on the project size, CPU usage would spike for varying amounts of time. This bug appeared with 0.13.0 due to a behavioral change in the inotify file watching backend.
HTML export
- Fixed export of tables with gutters
- Fixed usage of
<html>and<body>element within context - Fixed querying of metadata next to
<html>and<body>element
Visualization
- Fixed curves with multiple non-closed components
Introspection
- Fixed a regression where labelled symbols could not be queried by label
Deprecations
- Fixed false positives in deprecation warnings for type/str comparisons
Contributors
Thanks to everyone who contributed to this release: @7ijme, @Andrew15-5, @Emm54321, @F2011, @MDLC01, @PgBiel, @SharzyL, @aodenis.
Version 0.13.0 (February 19, 2025)
Read the announcement blog post
View changelog with links into the documentation on typst.app/docs
Highlights
- There is now a distinction between proper paragraphs and just inline-level content. This is important for future work on accessibility and means that first line indent can now be enabled for all paragraphs instead of just consecutive ones.
- The
outlinehas a better out-of-the-box look and is more customizable - The new
curvefunction (that supersedes thepathfunction) provides a simpler and more flexible interface for creating BΓ©zier curves - The
imagefunction now supports raw pixel raster formats for generating images from within Typst - Functions that accept file paths now also accept raw bytes, for full flexibility
- WebAssembly plugins are more flexible and automatically run multi-threaded
- Fixed a long-standing bug where single-letter strings in math (
$"a"$) would be displayed in italics - You can now specify which charset should be covered by which font family
- The
pdf.embedfunction lets you embed arbitrary files in the exported PDF - HTML export is currently under active development. The feature is still very incomplete, but already available for experimentation behind a feature flag.
Model
- There is now a distinction between proper paragraphs and just inline-level content (Breaking change)
- All text at the root of a document is wrapped in paragraphs. Meanwhile, text in a container (like a block) is only wrapped in a paragraph if the container holds any block-level content. If all of the content is inline-level, no paragraph is created.
- In the laid-out document, it's not immediately visible whether text became part of a paragraph. However, it is still important for accessibility, HTML export, and for properties like
first-line-indent. - Show rules on
parnow only affect proper paragraphs - The
first-line-indentandhanging-indentproperties also only affect proper paragraphs - Creating a
par[..]with body content that is not fully inline-level will result in a warning - The default show rules of various built-in elements like lists, quotes, etc. were adjusted to ensure they produce/don't produce paragraphs as appropriate
- Removed support for booleans and content in
outline.indent
- The
outlinefunction was fully reworked to improve its out-of-the-box behavior (Breaking change)- Outline entries are now blocks and are thus affected by block spacing
- The
autoindentation mode now aligns numberings and titles outline-wide for a grid-like look - Automatic indentation now also indents entries without a numbering
- Titles wrapping over multiple lines now have hanging indent
- The page number won't appear alone on its own line anymore
- The link now spans the full entry instead of just the title and page number
- The default spacing between outline leader dots was increased
- The
fillparameter was moved fromoutlinetooutline.entryand can thus be configured through show-set rules - Removed
bodyandpagefields from outline entry - Added
indented,prefix,inner,body, andpagemethods on outline entries to simplify writing of show rules
- Added configuration to
par.first-line-indentfor indenting all paragraphs instead of just consecutive ones - Added
formparameter toreffunction. Setting the form to"page"will produce a page reference instead of a textual one. - Added
document.descriptionfield, which results in corresponding PDF and HTML metadata - Added
enum.reversedparameter - Added support for Greek numbering
- When the
linkfunction wraps around a container like a block, it will now generate only one link for the whole block instead of individual links for all the visible leaf elements. This significantly reduces PDF file sizes when combininglinkandrepeat. - The
linkfunction will now only strip one prefix (likemailto:ortel:) instead of multiple - The link function now suppresses hyphenation via a built-in show-set rule rather than through its default show rule
- Displaying the page counter without a specified numbering will now take the page numbering into account
Visualization
- Added new
curvefunction that supersedes thepathfunction and provides a simpler and more flexible interface. Thepathfunction is now deprecated. - The
imagefunction now supports raw pixel raster formats. This can be used to generate images from within Typst without the need for encoding in an image exchange format. - Added
image.scalingparameter for configuring how an image is scaled by PNG export and PDF viewers (smooth or pixelated) - Added
image.iccparameter for providing or overriding the ICC profile of an image - Renamed
patterntotiling. The namepatternremains as a deprecated alias. - Added
gradient.center,gradient.radius,gradient.focal-center, andgradient.focal-radiusmethods - Fixed interaction of clipping and outset on
boxandblock - Fixed panic with
pathof infinite length - Fixed non-solid (e.g. tiling) text fills in clipped blocks
- Fixed a crash for images with a DPI value of zero
- Fixed floating-point error in
gradient.repeat - Auto-detection of image formats from a raw buffer now has support for SVGs
Scripting
- Functions that accept file paths now also accept raw bytes
image,cbor,csv,json,toml,xml, andyamlnow support a path string or bytes and their.decodevariants are deprecatedplugin,bibliography,bibliography.style,cite.style,raw.theme, andraw.syntaxesnow accept bytes in addition to path strings. These did not have.decodevariants, so this adds new flexibility.- The
pathargument/field ofimageandbibliographywas renamed tosourceandsources, respectively (Minor breaking change)
- Improved WebAssembly plugins
- The
plugintype is replaced by apluginfunction that returns a module containing normal Typst functions. This module can be used with import syntax. (Breaking change) - Plugins now automatically run in multiple threads without any changes by plugin authors
- A new
plugin.transitionAPI is introduced which allows plugins to run impure initialization in a way that doesn't break Typst's purity guarantees
- The
- The variable name bound by a bare import (no renaming, no import list) is now determined statically and dynamic imports without
asrenaming (e.g.import "ot" + "her.typ") are a hard error (Breaking change) - Values of the
argumentstype can now be added with+and joined in curly-braced code blocks - Functions in an element function's scope can now be called with method syntax, bringing elements and types closer (in anticipation of a future full unification of the two). Currently, this is only useful for
outline.entryas no other element function defines methods. - Added
calc.normfunction - Added support for 32-bit floats in
float.from-bytesandfloat.to-bytes - The
decimalconstructor now also accepts decimal values - Improved
reprof symbols, arguments, and types - Duplicate symbol variants and modifiers are now a hard error (Breaking change)
Math
- Fixed a bug where single letter strings in math (
$"a"$) would be displayed in italics - Math function calls can now have hyphenated named arguments and support argument spreading
- Better looking accents thanks to support for the
flac(Flattened Accent Forms) anddtls(Dotless Forms) OpenType features - Added
lcmtext operator - The
boldfunction now works with Ο and Ο - The
italicfunction now works with Δ§ - Fixed a bug where the extent of a math equation was wrongly affected by internal metadata
- Fixed interaction of
lrand context expressions - Fixed weak spacing being unconditionally ignored in
lr - Fixed sub/superscripts sometimes being in the wrong position with
lr - Fixed multi-line annotations (e.g. overbrace) changing the math baseline
- Fixed merging of attachments when the base is a nested equation
- Fixed resolving of contextual (em-based) text sizes within math
- Fixed spacing around up tacks (β₯)
Bibliography
- Prose and author-only citations now use editor names if the author names are unavailable
- Some non-standard but widely used BibLaTeX
editortypes likeproducer,writer,scriptwriter, andnone(defined by widespread stylebiblatex-chicagoto mean performers withinmusicandvideoentries) are now recognized - CSL styles can now render affixes around the bibliography
- For BibTeX entries with
eprinttype = {pubmed}, the PubMed ID will now be correctly processed - Whitespace handling for strings delimiting initialized names has been improved
- Uppercase spelling after apostrophes used as quotation marks is now possible
- Fixed bugs around the handling of CSL delimiting characters
- Fixed a problem with parsing multibyte characters in page ranges that could prevent Hayagriva from parsing some BibTeX page ranges
- Updated CSL APA style
- Updated CSL locales for Finnish, Swiss German, Austrian German, German, and Arabic
Text
- Added support for specifying which charset should be covered by which font family
- Added
allparameter tosmallcapsfunction that also enables small capitals on uppercase letters - Added basic i18n for Basque and Bulgarian
- Justification does not affect raw blocks anymore
- CJK-Latin-spacing does not affect raw text anymore
- Fixed wrong language codes being used for Greek and Ukrainian
- Fixed default quotes for Croatian and Bulgarian
- Fixed crash in RTL text handling
- Added support for
rawsyntax highlighting for a few new languages: CFML, NSIS, and WGSL - New font metadata exception for New Computer Modern Sans Math
- Updated bu...
Version 0.13.0, Release Candidate 1 (February 5, 2025)
For a preliminary 0.13 changelog, see https://staging.typst.app/docs/changelog/0.13.0
Version 0.12.0 (October 18, 2024)
View changelog with links into the documentation on typst.app/docs
Highlights
- Added support for multi-column floating placement and figures
- Added support for automatic line numbering (often used in academic papers)
- Typst's layout engine is now multithreaded. Typical speedups are 2-3x for larger documents. The multithreading operates on page break boundaries, so explicit page breaks are necessary for it to kick in.
- Paragraph justification was optimized with a new two-pass algorithm. Speedups are larger for shorter paragraphs and go up to 6x.
- Highly reduced PDF file sizes due to better font subsetting (thanks to @LaurenzV)
- Emoji are now exported properly in PDF
- Added initial support for PDF/A. For now, only the PDF/A-2b profile is supported, but more is planned for the future.
- Added various options for configuring the CLI's environment (fonts, package paths, etc.)
- Text show rules now match across multiple text elements
- Block-level equations can now optionally break over multiple pages
- Fixed a bug where some fonts would not print correctly on professional printers
- Fixed a long-standing bug which could cause headings to be orphaned at the bottom of the page
Layout
- Added support for multi-column floating placement and figures via
place.scopeandfigure.scope. Two-column documents should now preferset page(columns: 2)overshow: column.with(2)(see the page setup guide). - Added support for automatic line numbering (often used in academic papers)
- Added
par.spacingproperty for configuring paragraph spacing. This should now be used instead ofshow par: set block(spacing: ..)(Breaking change) - Block-level elements like lists, grids, and stacks now show themselves as blocks and are thus affected by all block properties (e.g.
stroke) rather than justspacing(Breaking change) - Added
block.stickyproperty which prevents a page break after a block - Added
place.flushfunction which forces all floating figures to be placed before any further content - Added
skewfunction - Added
autooption forpage.headerandpage.footerwhich results in an automatic header/footer based on the numbering (which was previously inaccessible after a change) - Added
gapandjustifyparameters torepeatfunction - Added
widthandheightparameters to themeasurefunction to define the space in which the content should be measured. Especially useful in combination withlayout. - The height of a
block,image,rect,square,ellipse, orcirclecan now be specified in fractional units - The
scalefunction now supports absolute lengths forx,y,factor. This way an element of unknown size can be scaled to a fixed size. - The values of
block.aboveandblock.belowcan now be retrieved in context expressions. - Increased accuracy of conversions between absolute units (pt, mm, cm, in)
- Fixed a bug which could cause headings to be orphaned at the bottom of the page
- Fixed footnotes within breakable blocks appearing on the page where the breakable block ends instead of at the page where the footnote marker is
- Fixed numbering of nested footnotes and footnotes in floats
- Fixed empty pages appearing when a context expression wraps whole pages
- Fixed
set block(spacing: x)behaving differently fromset block(above: x, below: x) - Fixed behavior of
rotateandscalewithreflow: true - Fixed interaction of
align(horizon)andv(1fr) - Fixed various bugs where floating placement would yield overlapping results
- Fixed a bug where widow/orphan prevention would unnecessarily move text into the next column
- Fixed weak spacing not being trimmed at the start and end of lines in a paragraph (only at the start and end of paragraphs)
- Fixed interaction of weak page break and
pagebreak.to - Fixed compilation output of a single weak page break
- Fixed crash when padding by
100%
Text
- Tuned hyphenation: It is less eager by default and hyphenations close to the edges of words are now discouraged more strongly (May lead to larger layout reflows)
- New default font: Libertinus Serif. This is the maintained successor to the old default font Linux Libertine. (May lead to smaller reflows)
- Setting the font to an unavailable family will now result in a warning
- Implemented a new smart quote algorithm, fixing various bugs where smart quotes weren't all that smart
- Added
text.costsparameter for tweaking various parameters that affect the choices of the layout engine during text layout - Added
typmhighlighting mode for math in raw blocks - Added basic i18n for Galician, Catalan, Latin, Icelandic, Hebrew
- Implemented hyphenation duplication for Czech, Croatian, Lower Sorbian, Polish, Portuguese, Slovak, and Spanish.
- The
smallcapsfunction is now an element function and can thereby be used in show(-set) rules. - The
raw.themeparameter can now be set tononeto disable highlighting even in the presence of a language tag, and toautoto reset to the default - Multiple stylistic sets can now be enabled at once
- Fixed the Chinese translation for "Equation"
- Fixed that hyphenation could occur outside of words
- Fixed incorrect layout of bidirectional text in edge cases
- Fixed layout of paragraphs with explicit trailing whitespace
- Fixed bugs related to empty paragraphs created via
#"" - Fixed accidental trailing spaces for line breaks immediately preceding an inline equation
- Fixed
text.historical-ligaturesnot working correctly - Fixed accidental repetition of Thai characters around line breaks in some circumstances
- Fixed smart quotes for Swiss French
- New font metadata exceptions for Archivo, Kaiti SC, and Kaiti TC
- Updated bundled New Computer Modern fonts to version 6.0
Math
- Block-level equations can now break over multiple pages if enabled via
show math.equation: set block(breakable: true). - Matrix and vector sizing is now more consistent across different cell contents
- Added
stretchfunction for manually or automatically stretching characters like arrows or parentheses horizontally or vertically - Improved layout of attachments on parenthesized as well as under- or overlined expressions
- Improved layout of nested attachments resulting from code like
#let a0 = $a_0$; $a0^1$ - Improved layout of primes close to superscripts
- Improved layout of fractions
- Typst now makes use of math-specific height-dependent kerning information in some fonts for better attachment layout
- The
floorandceilfunctions in math are now callable symbols, such that$ floor(x) = lr(floor.l x floor.r) $ - The
mat.delim,vec.delim, andcases.delimparameters now allow any character that is considered a delimiter or "fence" (e.g. |) by Unicode. Thedelim: "||"notation is not supported anymore and should be replaced bydelim: bar.double(Minor breaking change) - Added
vec.alignandmat.alignparameters - Added
underparen,overparen,undershell, andovershell - Added
~shorthand fortilde.opin math mode (Minor breaking change) - Fixed baseline alignment of equation numbers
- Fixed positioning of corner brackets (β, β, β, β)
- Fixed baseline of large roots
- Fixed multiple minor layout bugs with attachments
- Fixed that alignment points could affect line height in math
- Fixed that spaces could show up between text and invisible elements like
metadatain math - Fixed a crash with recursive show rules in math
- Fixed
lr.sizenot affecting characters enclosed inmidin some cases - Fixed resolving of em units in sub- and superscripts
- Fixed bounding box of inline equations when a text edge is set to
"bounds"
Introspection
- Implemented a new system by which Typst tracks where elements end up on the pages. This may lead to subtly different behavior in introspections. (Breaking change)
- Fixed various bugs with wrong counter behavior in complex layout situations, through a new, more principled implementation
- Counter updates can now be before the first, in between, and after the last page when isolated by weak page breaks. This allows, for instance, updating a counter before the first page header and background.
- Fixed logical ordering of introspections within footnotes and figures
- Fixed incorrect
here().position()whenplacewas used in a context expression - Fixed resolved positions of elements (in particular, headings) whose show rule emits an invisible element (like a state update) before a page break
- Fixed behavior of stepping a counter at a deeper level than its current state has
- Fixed citation formatting not working in table headers and a few other places
- Displaying the footnote counter will now respect the footnote numbering style
Model
- Document set rules do not need to be at the very start of the document anymore. The only restriction is that they must not occur inside of layout containers.
- The
spacingproperty of lists, enumerations, and term lists is now also respected for tight lists - Tight lists now only attach (with tighter spacing) to preceding paragraphs, not arbitrary blocks
- The
quoteelement is now locatable (can be used in queries) - The bibliography heading now uses
depthinstead oflevelso that its level can still be configured via a show-set rule - Added support for more numbering formats: Devanagari, Eastern Arabic, Bengali, and circled numbers
- Added
hanging-indentparameter to heading function to tweak the appearance of multi-line headings and improved default appearance of multi-line headings - Improved handling of bidirectional text in outline entry
- Fixed document set rules being ignored in an otherwise empty document
- Fixed document set rules not being usable in context expressions
- Fixed bad interactio...
Version 0.12.0, Release Candidate 2 (October 15, 2024)
View changes since RC1.
Version 0.12.0, Release Candidate 1 (October 3, 2024)
For a preliminary 0.12 changelog, see https://staging.typst.app/docs/changelog
Version 0.11.1 (May 17, 2024)
-
Security
- Fixed a vulnerability where image files at known paths could be embedded into the PDF even if they were outside of the project directory
-
Bibliography
- Fixed et-al handling in subsequent citations
- Fixed suppression of title for citations and bibliography references with no author
- Fixed handling of initials in citation styles without a delimiter
- Fixed bug with citations in footnotes
-
Text and Layout
- Fixed interaction of
first-line-indentandoutline - Fixed compression of CJK punctuation marks at line start and end
- Fixed handling of rectangles with negative dimensions
- Fixed layout of
pathin explicitly sized container - Fixed broken
rawtext in right-to-left paragraphs - Fixed tab rendering in
rawtext with languagetyportypc - Fixed highlighting of multi-line
rawtext enclosed by single backticks - Fixed indentation of overflowing lines in
rawblocks - Fixed extra space when
rawtext ends with a backtick
- Fixed interaction of
-
Math
- Fixed broken equations in right-to-left paragraphs
- Fixed missing blackboard bold letters
- Fixed error on empty arguments in 2D math argument list
- Fixed stretching via
midfor various characters - Fixed that alignment points in equations were affected by
set align(..)
-
Export
- Fixed smart quotes in PDF outline
- Fixed patterns with spacing in PDF
- Fixed wrong PDF page labels when page numbering was disabled after being previously enabled
-
Scripting
- Fixed overflow for large numbers in external data files (by converting to floats instead)
- Fixed
str.trim(regex, at: end)when the whole string is matched
-
Miscellaneous
- Fixed deformed strokes for specific shapes and thicknesses
- Fixed newline handling in code mode: There can now be comments within chained method calls and between an
ifbranch and theelsekeyword - Fixed inefficiency with incremental reparsing
- Fixed autocompletions for relative file imports
- Fixed crash in autocompletion handler
- Fixed a bug where the path and entrypoint printed by
typst initwere not properly escaped - Fixed various documentation errors
Thanks to everyone who contributed to this release: @Leedehai, @elegaanz, @frozolotl, @A-Walrus, @MDLC01, @Myriad-Dreamin, @3w36zj6, @Enter-tainer, @EpicEricEE, @Jocs, @PgBiel, @QuarticCat, @Tom4sCruz, @bluebear94, @etiennecollin, @gabriel-araujjo, @joserlopes, @rikhuijzer, @wrzian.