Skip to content

Commit

Permalink
cv: update
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Dec 27, 2024
1 parent 51cbccf commit 4de9078
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/cv/cv-theme.typ
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@
lastname: "",
body,
) = {
// --- Typography ---
set text(
font: body-font,
size: font.normal,
lang: "en",
hyphenate: true,
)

// --- Paragraphs ---
// Source: https://typst.app/docs/guides/guide-for-latex-users/
set par(justify: true, spacing: .75em)

// --- Links ---
show link: it => {
underline(it, stroke: .2pt + rgb("#000000").lighten(65%))
}

// --- Page configuration ---
set page(
margin: page-margin,
Expand All @@ -25,23 +42,6 @@
],
)

// --- Typography ---
set text(
font: body-font,
size: font.normal,
lang: "en",
hyphenate: true,
)

// --- Paragraphs ---
// Source: https://typst.app/docs/guides/guide-for-latex-users/
set par(justify: true, spacing: .75em)

// --- Links ---
show link: it => {
underline(it, stroke: .2pt + rgb("#000000").lighten(65%))
}

{
grid(
columns: (auto, 1fr),
Expand Down

0 comments on commit 4de9078

Please sign in to comment.