Live data from Hacker News

I wrote my PhD Thesis in Typst

fransskarman.com

221–230 of 338 posts

Re: I wrote my PhD Thesis in Typst

#221

Tangential, do LLMs pick up new languages that have less internet discussion and which develop rapidly after knowledge cutoff dates? To naysayers, AIs are supposed to generate hands with 6 fingers and ossify language and framework versions.

I suppose it also depends on the specific LLM; the output of a free/low-cost model will likely be very different from a $200/month o1-pro.

Re: I wrote my PhD Thesis in Typst

#222
post #194

Earlier quoted context omitted.

Why does the premier word processing software (Microsoft Word) care so little about typesetting? I am biased however, as my thesis was written in LaTeX with all the plots regenerated at compile time from the raw data.

> Why does the premier word processing software (Microsoft Word) care so little about typesetting? Because its target userbase is people who don’t give a single shit about typography.

Yet every day all across the world the director is handing the document to their team telling them to work the weekend cleaning it up and make it look good.

Re: I wrote my PhD Thesis in Typst

#223
post #75

In thirty years LaTEX will still be open source and probably will be maintained. Typst appears to be a mix of open source and closed source; the general model here tends to be neglecting the open source part and implementing critical features in the closed source portion. Which is to say, it's unlikely to live beyond the company itself.

>In thirty years LaTEX will still be open source and probably will be maintained.

The latter is a genuine concern. Will it be maintained? I like LaTeX a lot, but would I want to maintain its internals? No. Could I? If I were paid handsomely, yes. Emphasis on handsomely.

Which leads to another worry: LaTeX itself may be OSS, but down the line it is possible that maintained forks will be controlled by big publishers paying maintainers to deal with the insanity of its internals. And we all know how lovely those publishers are (凸ಠ益ಠ)凸

Re: I wrote my PhD Thesis in Typst

#225
post #163

I'm sticking with LaTeX, not as a fetish, but because journal/conferences still do not accept e.g. typst. Will they ever do? I don't know, depends on their willingness to integrate it into their toolchains I guess?

I'm not familiar with how journal submissions work, but don't you simply submit a pdf at the end? Does it matter what engine you used to render it?

Not only do you need to use LaTeX, but you need to use the journal's class file. Anything else will get rejected.

Re: I wrote my PhD Thesis in Typst

#227
post #165
post #5

Earlier quoted context omitted.

The definition of insanity is doing the same thing twice and expecting different results. By coincidence, this is the basic way to compile latex.

Last time I checked, flipping a coin twice gave different results.

If you flip it an infinite number of times, you will get the same results anyway. Call when you're finished :P

Re: I wrote my PhD Thesis in Typst

#228
post #61
post #48

Earlier quoted context omitted.

What in microtype makes "a big difference"? I don't recall using it (my LaTeX years are long behind me), but all of the examples on https://www.khirevich.com/latex/microtype/ seem incredibly minor. I don't think I'd notice any of them as the reader.

It will tweak spacing, kerning, margin protrusion, and font size to improve readability avoid big word gaps and excessive end-of-line hyphenation. It is what sets professional typography apart. Only Adobe InDesign provides a comparable implementation, tweaking all those details. See https://en.wikipedia.org/wiki/Hz-program for a better explanation and an example. IMHO, the difference is obvious and not minor. Without…

> Only Adobe InDesign provides a comparable implementation, tweaking all those details.

TeXmacs claims to have implemented microtypography as well (https://www.texmacs.org/tmweb/home/news.en.html, as I am reading it, in the opening paragraph on version 2.1)

Re: I wrote my PhD Thesis in Typst

#229

Why not LyX or TeXmacs? Both seem to be better options than yet another markup language.

In addition to making it possible to write easily, TeXmacs is also based on a markup language. It demonstrates that a markup language and WYSIWYG writing can coexist efficiently.

Re: I wrote my PhD Thesis in Typst

#230
post #144

I have only two peeves with typst. 1. They should have carried forward the latex standard as-is for math, instead of getting rid of the backslash escape sequence, etc. 2. There is no way to share a variable across a file's scope - so can't have a setting that is shared across files - not even with state variables. Other than this, typst is solid, and with the neovim editor and tinymist lsp, is great to write with.

Regarding point 1: I'm so glad they didn't keep the math syntax, there's finally progress in math text input! E.g. we can now write

  $
    ZZ &= { ..., -1, 0, 1, ... } \
    QQ &= { p/q : p, q in ZZ }
  $

  $
    a = cases(
      0 & quad x  0
    )
  $
instead of

  \begin{align*}
    \mathbb{Z} &= \{ \dots, -1, 0, 1, \dots \}, \\
    \mathbb{Q} &= \left\{ \frac{p}{q} : p, q \in \mathbb{Z} \right\}
  \end{align*}

  \[
    a = \begin{cases}
      0 & \quad x \leq 0, \\
      \begin{pmatrix}1 & 2\\ 3 & 4\end{pmatrix}
      \begin{pmatrix}5\\6\end{pmatrix} & \quad x > 0
    \end{cases}
  \]
Regarding point 2: you can put your settings in a file `settings.typ` and import it from multiple files.
Post reply on HN