@@ -33,9 +33,10 @@ collaborative editor and run Typst in your browser, no installation required.
3333
3434If you choose to use Typst on your computer instead, you can download the
3535compiler as a single, small binary which any user can run, no root privileges
36- required. Unlike LaTeX, packages are downloaded when you first use them and
37- then cached locally, keeping your Typst installation lean. You can use your own
38- editor and decide where to store your files with the local compiler.
36+ required. Unlike popular LaTeX distributions such as TeX Live, packages are
37+ downloaded when you first use them and then cached locally, keeping your Typst
38+ installation lean. You can use your own editor and decide where to store your
39+ files with the local compiler.
3940
4041## How do I create a new, empty document? { #getting-started }
4142That's easy. You just create a new, empty text file (the file extension is
@@ -459,7 +460,7 @@ and their corresponding Typst functions.
459460| LaTeX Package | Typst Alternative |
460461| :--------------------------------| :-------------------------------------------|
461462| graphicx, svg | [ ` image ` ] function |
462- | tabularx | [ ` table ` ] , [ ` grid ` ] functions |
463+ | tabularx, tabularray | [ ` table ` ] , [ ` grid ` ] functions |
463464| fontenc, inputenc, unicode-math | Just start writing! |
464465| babel, polyglossia | [ ` text ` ] ( $text.lang ) function: ` [#set text(lang: "zh")] ` |
465466| amsmath | [ Math mode] ( $category/math ) |
@@ -550,8 +551,8 @@ $ f(x) = (x + 1) / x $
550551to include more than one value in a sub- or superscript, enclose their contents
551552in parentheses: ` {$x_(a -> epsilon)$} ` .
552553
553- Since variables in math mode do not need to be prepended with a ` # ` or a ` / ` ,
554- you can also call functions without these special characters:
554+ Since variables in math mode do not need to be prepended with a ` # ` ( or a ` \ `
555+ like in LaTeX), you can also call functions without these special characters:
555556
556557``` example
557558$ f(x, y) := cases(
@@ -580,8 +581,8 @@ their call with a `#`. Nobody can stop you from using rectangles or emoji as
580581your variables anymore:
581582
582583``` example
583- $ sum^10_(🥸 =1)
584- #rect(width: 4mm, height: 2mm)/🥸
584+ $ sum^10_(🤓 =1)
585+ #rect(width: 4mm, height: 2mm)/🤓
585586 = 🧠 maltese $
586587```
587588
0 commit comments