From 372dee59cc73d58f14aeeaff808e71c79a407300 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sun, 15 Sep 2024 11:22:02 +0200 Subject: [PATCH] Expand footer to more details and full name --- cv.typ | 37 +++++++++++++++++++++++++++++++------ 1 file changed, 31 insertions(+), 6 deletions(-) diff --git a/cv.typ b/cv.typ index 133fbce..3730a71 100644 --- a/cv.typ +++ b/cv.typ @@ -19,16 +19,41 @@ } } +#let _columns_3(left_body, center_body, right_body) = { + block[ + #box(width: 1fr)[ + #align(left)[#left_body] + ] + #box(width: 1fr)[ + #align(center)[#center_body] + ] + #box(width: 1fr)[ + #align(right)[#right_body] + ] + ] +} + // Feel free to change the margin below to best fit your own CV #set page( paper: "a4", margin: (x: 0.9cm, y: 1.3cm), - footer: context [ - #set text(8pt) - #text(fill:luma(230))[Marty Oehme] - #set align(right) - #text(fill:luma(230))[#counter(page).display("1",both:false)] - ] + footer: [ + #set text( + fill: luma(200), + size: 8pt, + ) + #_columns_3[ + #smallcaps[#datetime.today().display("[month repr:long] [day], [year]")] + ][ + #smallcaps[ + Marty Oehme +// #sym.dot.c +// CV + ] + ][ + #counter(page).display() + ] + ], ) #set par(justify: true)