Expand footer to more details and full name

This commit is contained in:
Marty Oehme 2024-09-15 11:22:02 +02:00
parent a345d36611
commit 372dee59cc
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

35
cv.typ
View file

@ -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)