-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.typ
78 lines (67 loc) · 1.71 KB
/
main.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
#import "header.typ": header
#import "section.typ": section
#set page("us-letter")
#header(
name: "First Last",
address: "6299 South St., Halifax, NS B3H 4R2",
phone: "9021234567",
email: "[email protected]",
social: (
("https://github.com/vonhyou", [GitHub]),
("#", [Linkedin]),
("#", [Twitter]),
("#", [Blog])
)
)
#linebreak()
#section(
title: "Education",
items: (
(text(weight: "bold", "Dalhousie University"),
[#text(style: "italic", "Jan. 2022 – Present")\ ]),
([Bachelor of Computer Science with Co-op Education], [GPA 4.21/4.30\ ]),
(lorem(24), [])
)
)
#section(
title: "Experience",
items: (
(text(weight: "bold", "XYZ Company"),
text(style: "italic", "May. 2021 – Aug. 2021")),
([- #lorem(12)
- #lorem(23)], [#v(0pt, weak: true)]),
(text(weight: "bold", "QWERTY Company"),
text(style: "italic", "May. 2021 – Aug. 2021")),
([- #lorem(12)
- #lorem(23)], [#v(0pt, weak: true)]),
(text(weight: "bold", "ABC Company"),
text(style: "italic", "May. 2019 – Aug. 2019")),
([- #lorem(12)
- #lorem(23)], [])
)
)
#section(
title: [Project],
items: (
(text(weight: "bold", "Some Interesting Stuff"),
link("#")[#text(font: "TeX Gyre Cursor", "ProjectHomePage")]),
([- #lorem(12)
- #lorem(23)
- #lorem(12)], [#v(0pt, weak: true)]),
(text(weight: "bold", "Some Interesting Stuff"),
link("#")[#text(font: "TeX Gyre Cursor", "ProjectHomePage")]),
([- #lorem(12)
- #lorem(23)
- #lorem(12)], [#v(0pt, weak: true)])
)
)
#section(
title: [Misc],
items: (
([- #lorem(12)
- #lorem(23)
- #lorem(12)
- #lorem(12)
- #lorem(23)], []),
)
)