-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.typ
82 lines (61 loc) · 1.93 KB
/
example.typ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#import "vantage-typst.typ": vantage, term, skill, styled-link
#let configuration = yaml("configuration.yaml")
#vantage(
name: configuration.contacts.name,
position: configuration.position,
links: (
(name: "email", link: "mailto:"+ configuration.contacts.email),
(name: "website", link: configuration.contacts.website.url, display: configuration.contacts.website.displayText),
(name: "github", link: configuration.contacts.github.url, display: configuration.contacts.github.displayText),
(name: "linkedin", link: configuration.contacts.linkedin.url, display: configuration.contacts.linkedin.displayText),
(name: "location", link: "", display: configuration.contacts.address)
),
tagline: (configuration.tagline),
[
== Experience
#for job in configuration.jobs [
=== #job.position \
_#link(job.company.link)[#job.company.name]_ - #styled-link(job.product.link)[#job.product.name] \
#term[#job.from --- #job.to][#job.location]
#for point in job.description [
- #point
]
]
],
[
== Objective
#configuration.objective
== Education
#for edu in configuration.education [
=== #if edu.place.link != "" [
#link(edu.place.link)[#edu.place.name]\
] else [
#edu.place.name\
]
#edu.from - #edu.to #h(1fr) #edu.location
#edu.degree in #edu.major
]
== Technical Expertise
#for expertise in configuration.technical_expertise [
#skill(expertise.name, expertise.level)
]
== Skills/Exposure
#for skill in configuration.skills [
• #skill
]
== Methodology/Approach
#for method in configuration.methodology [
• #method
]
== Tools
#for tool in configuration.tools [
• #tool
]
== Achievements/Certifications
#for achievement in configuration.achievements [
=== #achievement.name
\
#achievement.description
]
]
)