From 12ad483674e5447bb4258017385263f42fe457de Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 3 Jan 2026 11:32:22 -0500 Subject: Typst template: disable hyphenation for title, subtitle. Closes #11375. --- data/templates/template.typst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'data') diff --git a/data/templates/template.typst b/data/templates/template.typst index 648476620..40f208166 100644 --- a/data/templates/template.typst +++ b/data/templates/template.typst @@ -76,14 +76,14 @@ block(below: 1em, width: 100%)[ #if title != none { align(center, block[ - #text(weight: "bold", size: 1.5em)[#title #if thanks != none { + #text(weight: "bold", size: 1.5em, hyphenate: false)[#title #if thanks != none { footnote(thanks, numbering: "*") counter(footnote).update(n => n - 1) }] #( if subtitle != none { parbreak() - text(weight: "bold", size: 1.25em)[#subtitle] + text(weight: "bold", size: 1.25em, hyphenate: false)[#subtitle] } )]) } -- cgit v1.2.3