cv.typ icon indicating copy to clipboard operation
cv.typ copied to clipboard

feat: allow omitting of dates from date ranges

Open Aparaxium opened this issue 5 months ago • 4 comments

Allows the user to omit dates in date ranges using the logic:

#let daterange(start, end) = {
    if start != none and end != none [
        #start #sym.dash.en #end
    ]
    if start == none and end != none [
        #end
    ]
    if start != none and end == none [
        #start #sym.dash.en Present
    ]
}

Aparaxium avatar Jan 07 '24 13:01 Aparaxium