Closed nightingale-m closed 1 year ago
Title of the document doesn't change if it contains variables
Example of document:
#let num = "4" #set document(title: "Doc №#num") = Test
pdfinfo output:
pdfinfo
Title: Doc №#num
Expected:
Title: Doc №4
You cannot use hashtag expressions in strings, try title: "Doc №" + num instead.
title: "Doc №" + num
More like "Doc №" + str(num)
"Doc №" + str(num)
In general yes, although here num was a string already. :)
num
Title of the document doesn't change if it contains variables
Example of document:
pdfinfo
output:Expected: