typst / typst

A new markup-based typesetting system that is powerful and easy to learn.
https://typst.app
Apache License 2.0
35.09k stars 936 forks source link

Document title can't be set by variable #759

Closed nightingale-m closed 1 year ago

nightingale-m commented 1 year ago

Title of the document doesn't change if it contains variables

laurmaedje commented 1 year ago

You cannot use hashtag expressions in strings, try title: "Doc №" + num instead.

astrale-sharp commented 1 year ago

More like "Doc №" + str(num)

laurmaedje commented 1 year ago

More like "Doc №" + str(num)

In general yes, although here num was a string already. :)