Help whith "classic-tud-math-thesis" template

Hello, I want to use the classic-tud-math-thesis template, because it should fit my needs perfectly. But sadly, it doesn`t seem to work.

The preview is empty, but there are no compiler errors.

I have already added the required fonts to my project, that are described in the documentation, so that`s not causing the issue.

I am pretty new to typst and don`t know what causes the problem, and I would appreciate any help with this, as the functioning template would be very helpful.
If this is not the right place for this request, because the topic is too specific, please let me know where I could ask. Thank you!

I did some debugging and it seems that the template is slightly broken. These lines make it so no content is visible: classic-tud-math-thesis/0.1.0/src/thesis-style.typ at 3c971c5c66a66c1c5d8f47f643ab518ea6748516 · tibirius24/classic-tud-math-thesis · GitHub

Replacing them with something like this fixes the issue

show: it => if (use-default-math-env) {
  import "@preview/great-theorems:0.1.2": great-theorems-init
  it
} else {it}

(Although now the show rule seemingly does nothing, but even in the original I am not sure what the intention was)

The best way to fix this would be to contact the author of the package on github. If you can’t afford to wait that long a temporary fix is to copy the files locally and fix the issue there, then import the local files

1 Like

Thank you! I am going to contact the author, but now I can start working in the meantime.