-
-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to not include Start Date in Education #10
Comments
Thanks, I see that could be a problem. I do not have much time around this time of the year since it's the holidays, but I'll take it a look at it once I'm free. For now, as a quick fix, you can override the function for - #start #sym.dash.en #end
+ #end So for example in your example.typ on lines 36 and 37, you can do: // Each section function can be overridden by re-declaring it here
#let cveducation(info, isbreakable: true) = {
if info.education != none {block[
== Education
#for edu in info.education {
// Parse ISO date strings into datetime objects
let start = utils.strpdate(edu.startDate)
let end = utils.strpdate(edu.endDate)
// Create a block layout for each education entry
block(width: 100%, breakable: isbreakable)[
// Line 1: Institution and Location
#if edu.url != none [
*#link(edu.url)[#edu.institution]* #h(1fr) *#edu.location* \
] else [
*#edu.institution* #h(1fr) *#edu.location* \
]
// Line 2: Degree and Date Range
#text(style: "italic")[#edu.studyType in #edu.area] #h(1fr)
#end
#if edu.honors != none [- *Honors*: #edu.honors.join(", ")]
#if edu.courses != none [- *Courses*: #edu.courses.join(", ")]
#if edu.highlights != none {for hi in edu.highlights [- #eval("[" + hi + "]")]}
]
}
]}
} |
See related PR #15 and implementation in line 177 of |
If I comment out the start date, it gives an error.
This feature is particularly useful if candidates would feel more comfortable not to display the amount of time it took them to graduate or simply thinks this is adding verbosity without additional value
The text was updated successfully, but these errors were encountered: