From 8ef9bfb7ef1295a599a0903c5089051190c43f0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Mekina?= Date: Fri, 26 Sep 2025 09:09:23 +0200 Subject: [PATCH] classic: improve abbreviation spacing --- template/template_classic.typ | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/template/template_classic.typ b/template/template_classic.typ index 8733c3a..f8fce14 100644 --- a/template/template_classic.typ +++ b/template/template_classic.typ @@ -110,8 +110,12 @@ heading(("Seznam zkratek", "List of abbreviations").at(language), numbering: none); align(center, grid( columns: 2, - ..abbrs.pairs().map((v) => { - (block(text(v.at(0), weight: "bold"), width: max_abbr_width + 1em), text(v.at(1))) + gutter: 1em, + ..abbrs.pairs().map((a) => { + ( + align(left, block(text(a.at(0), weight: "bold"), width: max_abbr_width + 1em)), + text(a.at(1)) + ) }).flatten() )); }