Add Advanced/Fast Inverse Root #4

Merged
Mark merged 8 commits from quake into main 2025-02-13 16:07:07 -08:00
Showing only changes of commit 62ce3ddaa7 - Show all commits

View File

@ -44,6 +44,14 @@
by = text(size: 10pt, [Prepared by #by on #date]) by = text(size: 10pt, [Prepared by #by on #date])
} }
let sub = ()
if (by != none) {
sub.push(by)
}
if (subtitle != none) {
sub.push(subtitle)
}
// Main title // Main title
align( align(
center, center,
@ -61,8 +69,7 @@
// Title // Title
text(size: 20pt, title), text(size: 20pt, title),
// Subtitle // Subtitle
if (by != none) { text(size: 10pt, by) }, ..sub,
if (subtitle != none) { text(size: 10pt, subtitle) },
line(length: 100%, stroke: 0.2mm), line(length: 100%, stroke: 0.2mm),
), ),
), ),