Kalcifer
All of this user’s content is licensed under CC BY 4.0.
- 46 Posts
- 457 Comments
Kalcifer@sh.itjust.worksOPto
Open Source@lemmy.ml•Typst: "as powerful as LaTeX while being much easier to learn and use"
3·2 months ago[…] I haven’t found many editors with typst support unfortunately
I’m not sure what you mean — I personally just write it in VS Code [1], and then compile it locally [2].
References
- Type: Website. Title: “Visual Studio Code”. Publisher: “Visual Studio Code”. Accessed: 2026-03-19T08:56Z. Location (URI): https://code.visualstudio.com/.
- Type: Webpage. Title: “typst/typst”. Publisher: “GitHub”. Published (Modified): 2026-03-18T10:04:07.000Z. Accessed: 2026-03-19T08:59Z. Location (URI): https://github.com/typst/typst.
Kalcifer@sh.itjust.worksOPto
Open Source@lemmy.ml•Typst: "as powerful as LaTeX while being much easier to learn and use"English
1·2 months ago[…] I’ve definitely had my fair share of experiences wrestling with Typst to do things that are trivial in LaTeX […]
Could you share some of these experiences? 🙂
Kalcifer@sh.itjust.worksOPto
Open Source@lemmy.ml•Typst: "as powerful as LaTeX while being much easier to learn and use"
1·2 months ago[…] [Typst] still has not reached feature parity with LaTeX […]
What, in your opinion, do you think it’s still lacking?
Kalcifer@sh.itjust.worksOPto
Open Source@lemmy.ml•Typst: "as powerful as LaTeX while being much easier to learn and use"
1·2 months ago[…] LaTeX ignores whitespace, so you can just use a formatter to space out your code and ensure the curly braces. This is not even an option in typst, which uses the space as an escape character.
I’m not sure I exactly follow what you mean. Could you elaborate?
Kalcifer@sh.itjust.worksOPto
Open Source@lemmy.ml•Typst: "as powerful as LaTeX while being much easier to learn and use"
2·2 months agoUpdate (2026-03-20T00:37Z): @Meron35@lemmy.world, it has since been found that Typst is aware of this inconsistency [7].
[…] You can see how this would start to struggle even with high school level maths, with bracketed terms and possibly fractional terms in exponents, integrals, etc.
For example, it is very difficult for me to work out the difference between the following three in typst. That is specifically not what you want from a typesetting language.
1/2(x + y) 1/x(x + y) 1/2^x(x + y)[…]
I think these are valid complaints. For clarity, this is the output that I found for each:
[1]
[2]
[3]
I was surprised by the second; I expected it to produce
[6]. I didn’t know what to expect for the third.I tried searching through the documentation [4], but I was unable to find any information that exactly defined expressions [5], and how they are grouped within the fraction when juxtaposed like in your examples.
References
- Type: Anecdote. Published: 2026-03-19T07:20Z.
-
echo "#set page(width: auto, height: auto, margin: 0pt); $ 1/2(x + y) $" | typst compile - o.png
-
- Type: Anecdote. Published: 2026-03-19T07:20Z.
-
echo "#set page(width: auto, height: auto, margin: 0pt); $ 1/x(x + y) $" | typst compile - o.png
-
- Type: Anecdote. Published: 2026-03-19T07:20Z.
-
echo "#set page(width: auto, height: auto, margin: 0pt); $ 1/2^x(x + y) $" | typst compile - o.png
-
- Type: Webpage. Title: “typst Documentation”. Publisher: “Typst”. Accessed: 2026-03-19T07:25Z. URI: https://typst.app/docs/.
- Type: Text. Publisher: [Type: Webpage. Publisher: “Typst”. Title: “frac”. URI: https://typst.app/docs/reference/math/frac/.]. Accessed: 2026-03-19T07:26Z. Location: §“Syntax”.
-
[…] Use a slash to turn neighbouring expressions into a fraction. […]
- The quote mentions that the components within the fraction are called expressions.
-
- Type: Anecdote. Published: 2026-03-19T07:39Z.
-
echo "#set page(width: auto, height: auto, margin: 0pt); $ 1/x (x + y) $" | typst compile - o.png
-
- Type: Comment. Author: “laurmaedje”. Publisher: [Type: Post. Title: “Inconsistencies/ambiguities with expression grouping with fractions.” (“#8002”). Author: “K4LCIFER”. Publisher: [“Github”>“typst/typst”]. Published: 2026-03-19T07:07:44.000Z. Location (URI): https://github.com/typst/typst/issues/8002#issue-4099792220.]. Published: 2026-03-19T14:41:47.000Z. Accessed: 2026-03-29T00:45Z. Location (URI): https://github.com/typst/typst/issues/8002#issuecomment-4090630691.
Kalcifer@sh.itjust.worksOPto
Open Source@lemmy.ml•Typst: "as powerful as LaTeX while being much easier to learn and use"
1·2 months ago[…]
\frac{n(n+1)}{2}in latex turns into(n(n + 1)) / 2in typst […]Note that one can also write that as
frac(n(n+1), 2)[1][4].References
- Type: Webpage. Title: “frac”. Publisher: “Typst”. Location: “Documentation”>“Reference”>“Math”>“Fraction”. Location (URI): https://typst.app/docs/reference/math/frac/. Accessed: 2026-03-18T05:34Z.
- Type: Anecdote. Published: 2026-03-19T07:51Z.
-
echo "#set page(width: auto, height: auto, margin: 0pt); $ (n(n + 1)) / 2 $" | typst compile - o.png
-
- Type: Anecdote. Published: 2026-03-19T07:51Z.
-
echo "#set page(width: auto, height: auto, margin: 0pt); $ frac(n(n+1), 2) $" | typst compile - o.png
-
- Type: Meta. Published: 2026-03-19T07:53Z.
- Both
(n(n + 1)) / 2, andfrac(n(n+1), 2)result in
in Typst [2][3]
- Both
Kalcifer@sh.itjust.worksOPto
Open Source@lemmy.ml•Typst: "as powerful as LaTeX while being much easier to learn and use"
1·2 months ago[…] For example,
\frac{n(n+1)}{2}in latex turns into(n(n + 1)) / 2in typst. The typst code is incredibly unclear - the first set of brackets with the slash together actually form the fraction operator, so neither end up visible. […]IMO, it’s only unclear if one isn’t familiar with the syntax — I think the documentation states the behaviour clearly:
[…] Multiple atoms can be grouped into a single expression using round grouping parentheses. Such parentheses are removed from the output, but you can nest multiple to force them. [1]
This isn’t in defense of Typist’s syntax, but I challenge you to show the uninitiated your example LaTeX expression,
\frac{n(n+1)}{2}, and see if they are able to accurately parse it.References
- Type: Text. Publisher: [Type: Webpage. Title: “frac”. Publisher: “Typst”. Location: “Documentation”>“Reference”>“Math”>“Fraction”. Location (URI): https://typst.app/docs/reference/math/frac/.]. Accessed: 2026-03-18T05:34Z. Location: §“Syntax”.
Kalcifer@sh.itjust.worksOPto
Open Source@lemmy.ml•Typst: "as powerful as LaTeX while being much easier to learn and use"
2·2 months ago[…] use markdown with a typst backend
How could one do that?
Kalcifer@sh.itjust.worksOPto
Open Source@lemmy.ml•Typst: "as powerful as LaTeX while being much easier to learn and use"
1·2 months agoI don’t know what Typst’s custom font support was like in the past, but, currently [1], Typst does allow the usage of custom fonts:
- The Typst CLI can use installed system fonts [1.2].
- The Typst CLI can be passed directories that should be scanned for fonts through the
--font-pathargument or theTYPST_FONT_PATHSenvironment variable [1.3]. - Fonts can also be uploaded directly to the web app [1.1].
References
- Type: Text. Publisher: [Type: Webpage. Title: “text”. URI: https://typst.app/docs/reference/text/text/#parameters-font. Publisher: “Typst”. Location: “Reference”>“Text”>“Text”]. Accessed: 2026-03-19T04:32Z. Location: §“Parameters”>§“font”>¶4.
-
In the web app, […] You can provide additional fonts by uploading
.ttfor.otffiles into your project. […] -
Locally, [in the CLI,] Typst uses your installed system fonts […]
-
Locally, […] in the CLI, […] you can use the
--font-pathargument orTYPST_FONT_PATHSenvironment variable to add directories that should be scanned for fonts.
-
Kalcifer@sh.itjust.worksOPto
Open Source@lemmy.ml•Typst: "as powerful as LaTeX while being much easier to learn and use"English
7·2 months agoI’d say it still have a long way to go, especially for advanced use cases […]
What do you think it’s still lacking?
Kalcifer@sh.itjust.worksto
Selfhosted@lemmy.world•Do you stick to the same linux distro across your devices?English
2·2 months agoMy main server runs Ubuntu Server (I’m thinking about switching it to Debian), and my laptop and desktop both run Arch Linux. Generally, I pick whatever I think is best for the given usecase — things like stability, package availability, documentation, security, etc. are considered.
Kalcifer@sh.itjust.worksOPto
linuxmemes@lemmy.world•United, Linux fights for freedom!English
1·5 months agoCould you elaborate on what you mean? 🙂
Do you have some examples?
Thank you for sharing! I have added your link to the body of my post.
Thank you! I have added your link to the body of my post.
Kalcifer@sh.itjust.worksto
Lemmy Shitpost@lemmy.world•Lemmy users who say that Lemmy users are smarter than Reddit users
2·5 months agoHow do you know?
Kalcifer@sh.itjust.worksto
Mildly Infuriating@lemmy.world•During their visit to the United States, President Trump showed President Zelensky and President Macron his collection of MAGA hatsEnglish
1·8 months ago[The hats] are all made in China…
Do you have a source for that? From what I’ve been able to find on the official [1] Trump store, they all stated that they are made in America [2].
References
-
Type: Webpage. Publisher: “Trump Store”. Accessed: 2025-09-23T23:33Z. URI: https://www.trumpstore.com/about-us/.
- Type: Text.
[…]Welcome to TrumpStore.com, the official retail website of The Trump Organization.[…]
- Type: Text.
-
Type: Meta. Accessed: 2025-09-23T23:34Z.
[3]
[4]
[5]
[6]
[7]
[8] -
Type: Online Product. Name: “Trump 2028 Hat”. Vendor: “Trump Store”. Accessed: 2025-09-23T23:41Z. URI: https://www.trumpstore.com/product/trump-2028-hat/.
-
Type: Online Product. Name: “45-47 MAGA Hat”. Vendor: “Trump Store”. Accessed: 2025-09-23T23:41Z. URI: https://www.trumpstore.com/product/45-47-maga-hat/.
-
Type: Online Product. Name: “45-47 MAGA hat – White/Gold”. Vendor: “Trump Store”. Accessed: 2025-09-23T23:41Z. URI: https://www.trumpstore.com/product/45-47-maga-hat-white-gold/.
-
Type: Online Product. Name: “Dark MAGA Hat”. Vendor: “Trump Store”. Accessed: 2025-09-23T23:41Z. URI: https://www.trumpstore.com/product/dark-maga-hat/.
-
Type: Online Product. Name: “45-47 Gulf of America Hat – Navy”. Vendor: “Trump Store”. Accessed: 2025-09-23T23:41Z. URI: https://www.trumpstore.com/product/45-47-gulf-of-america-hat-navy/.
-
Type: Online Product. Name: “USA 45-47 Hat”. Vendor: “Trump Store”. Accessed: 2025-09-23T23:41Z. URI: https://www.trumpstore.com/product/usa-45-47-hat.
-
Kalcifer@sh.itjust.worksto
Lemmy Shitpost@lemmy.world•Need a keyboard with a dedicated "slop" button
1·8 months ago[…]using someone’s preferred pronouns doesn’t harm anyone.[…]
Thank you for clarifying.







!trippinthroughtime@lemmy.ca