soupslurpr / BeauTyXT

A beautiful, private, secure, and minimalistic Text, Markdown, and Typst editor.
https://beautyxt.app
ISC License
77 stars 6 forks source link

Typst doesn't show math #123

Closed vvsagar closed 6 months ago

vvsagar commented 7 months ago

Hello,

When I try to write add something like $alpha$ in a typst document I get the error current font does not support math. Am I doing something wrong? Is there a way to fix it?

soupslurpr commented 7 months ago

Hi, make sure to set the math font to Stix Two Math, which supports math.

#show math.equation: set text(font: "Stix Two Math")

You can also set text to Stix Two Text for consistency.

#set text(font: "Stix Two Text")

vvsagar commented 6 months ago

That works, thank you :)