Skip to content

Instantly share code, notes, and snippets.

View cyanolupus's full-sized avatar
🫨

cyanolupus cyanolupus

🫨
View GitHub Profile
@azrsh
azrsh / cv.typ
Last active February 10, 2024 01:39
Typst で履歴書を作るテンプレート
#set text(font: ("IPAexMincho"))
#let data = yaml("input/data.yaml")
= 履歴書
#let today = datetime.today()
#let birthday = datetime(year: data.birth_day.year, month: data.birth_day.month, day: data.birth_day.day)
#let age = {
let after-birthday = today.month() > birthday.month() or (
today.month() == birthday.month() and today.day() >= birthday.day()