diff --git a/cv.typ b/cv.typ index 372c087..0045ace 100644 --- a/cv.typ +++ b/cv.typ @@ -92,42 +92,47 @@ Nix and NixOS, Docker, Linux, and NixOS based service deployment and system administration. ] -// = Papers -// -// == Preprints -// -// #cv-paper-item( -// name: "The DeepBozo Report", -// date: [1/2024], -// journal: [ -// #link("https://www.eexiv.org/document/view/deepbozo-report")[eeXiv:10j4yyvp4so9.] -// ], -// ) -// -// #cv-paper-item( -// name: "eeXiv Whitepaper", -// date: [3/2024], -// journal: [ -// #link("https://www.eexiv.org/document/view/eexiv-white-paper")[eeXiv:gc3lso8s9tyb] -// ], -// ) -// -// #cv-paper-item( -// name: "The LiDAR Whitepaper", -// date: [2/2024], -// journal: [ -// #link("https://www.eexiv.org/document/view/lidar-whitepaper")[eeXiv:my8nruhlzjsq] -// ], -// ) += Papers + +== Pre-prints + +#cv-paper-item( + name: "The DeepBozo Report", + date: [1/2024], + journal: [ + #link("https://www.eexiv.org/document/view/deepbozo-report")[eeXiv:10j4yyvp4so9] + ], +) + +#cv-paper-item( + name: "eeXiv Whitepaper", + date: [3/2024], + journal: [ + #link("https://www.eexiv.org/document/view/eexiv-white-paper")[eeXiv:gc3lso8s9tyb] + ], +) + +#cv-paper-item( + name: "The LiDAR Whitepaper", + date: [2/2024], + journal: [ + #link("https://www.eexiv.org/document/view/lidar-whitepaper")[eeXiv:my8nruhlzjsq] + ], +) = Awards -#cv-line( - [2/2024], - [*National Merit Semifinalist* - #linebreak() - #text( - size: 0.85em, - )[Issued by #link("https://www.nationalmerit.org/s/1758/start.aspx?gid=2&pgid=61")[National Merit Scholarship Corporation].] - ], -) +#let award = (name, description) => { + cv-line( + [2/2024], + [*#name* + #linebreak() + #text( + size: 0.85em, + description, + ) + ], + ) +} + +#award[National Merit Semifinalist][Issued by #link("https://www.nationalmerit.org/s/1758/start.aspx?gid=2&pgid=61")[National Merit Scholarship Corporation].] diff --git a/template.typ b/template.typ index 15d7396..86c7551 100644 --- a/template.typ +++ b/template.typ @@ -141,7 +141,11 @@ #show heading.where(level: 2): it => { set text(weight: "regular", size: 13pt) - pad(left: 6.9em, [#it.body]) + _cv-line( + align: horizon, + [#box(fill: gray, width: 20mm, height: 0.2em)], + [#it.body], + ) } #_header(title: name, subtitle: subtitle, socials: social) @@ -150,9 +154,15 @@ #if show-footer [ #v(1fr, weak: false) - #datetime.today().display("[month repr:long] [day], [year]") + #align( + bottom, + stack( + dir: ltr, + datetime.today().display("[month repr:long] [day], [year]"), + align(right, text(size: 8pt)[Built from Git revision #git_rev]), + ), + ) - #text(size: 8pt)[Built from Git revision #git_rev] ] ]