Update education and improve accessibility
parent
c175bdb709
commit
c90ef8fa72
25
src/main.typ
25
src/main.typ
|
@ -28,7 +28,7 @@
|
||||||
"Java",
|
"Java",
|
||||||
"C",
|
"C",
|
||||||
"C++",
|
"C++",
|
||||||
"Guile",
|
"Guile/Scheme",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
|
@ -49,14 +49,23 @@
|
||||||
title: "The University of Texas at Dallas",
|
title: "The University of Texas at Dallas",
|
||||||
degree: "Bachelor of Science in Computer Science",
|
degree: "Bachelor of Science in Computer Science",
|
||||||
graduation: "May 2026",
|
graduation: "May 2026",
|
||||||
gpa: "Current GPA: 3.764",
|
gpa: "Current GPA: 3.749",
|
||||||
coursework: (
|
coursework: (
|
||||||
"Probability and Statistics for CS",
|
completed: (
|
||||||
"Data Structures and Algorithms",
|
"Programming Language Paradigms",
|
||||||
"Software Engineering",
|
"Digital Logic & Computer Design",
|
||||||
"C/C++ Programming in UNIX",
|
"Operating Systems Concepts",
|
||||||
"Computer Architecture",
|
"Probability and Statistics for CS",
|
||||||
"Discrete Mathematics II",
|
"Data Structures and Algorithms",
|
||||||
|
"Software Engineering",
|
||||||
|
"C/C++ Programming in UNIX",
|
||||||
|
"Computer Architecture",
|
||||||
|
"Discrete Mathematics II",
|
||||||
|
),
|
||||||
|
current: (
|
||||||
|
"Database Systems",
|
||||||
|
"Advanced Algorithm Design & Analysis",
|
||||||
|
),
|
||||||
),
|
),
|
||||||
highlights: (
|
highlights: (
|
||||||
"Collegium V Honors Program",
|
"Collegium V Honors Program",
|
||||||
|
|
|
@ -89,25 +89,23 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
let _heading(title: "") = _text(
|
|
||||||
size: 13pt,
|
|
||||||
block: (below: .95em),
|
|
||||||
heading(
|
|
||||||
_text(
|
|
||||||
size: 13pt,
|
|
||||||
weight: "bold",
|
|
||||||
title
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
let section_base(
|
let section_base(
|
||||||
title: "",
|
title: "",
|
||||||
body
|
body
|
||||||
) = _text(
|
) = _text(
|
||||||
block: (below: 2.5em),
|
block: (below: 2.5em),
|
||||||
{
|
{
|
||||||
_heading(title: title)
|
_text(
|
||||||
|
size: 13pt,
|
||||||
|
block: (below: .95em),
|
||||||
|
heading(
|
||||||
|
_text(
|
||||||
|
size: 13pt,
|
||||||
|
weight: "bold",
|
||||||
|
title
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
_text(
|
_text(
|
||||||
block: (
|
block: (
|
||||||
padding: (left: 1em),
|
padding: (left: 1em),
|
||||||
|
@ -141,9 +139,13 @@
|
||||||
columns: 2,
|
columns: 2,
|
||||||
gutter: 1.5em,
|
gutter: 1.5em,
|
||||||
align: bottom,
|
align: bottom,
|
||||||
text(
|
heading(
|
||||||
weight: "semibold",
|
level: 2,
|
||||||
title
|
_text(
|
||||||
|
weight: "semibold",
|
||||||
|
block: (width: auto),
|
||||||
|
title
|
||||||
|
),
|
||||||
),
|
),
|
||||||
text(
|
text(
|
||||||
size: 9pt,
|
size: 9pt,
|
||||||
|
@ -247,13 +249,17 @@
|
||||||
title: "Skills",
|
title: "Skills",
|
||||||
_text(
|
_text(
|
||||||
grid(
|
grid(
|
||||||
columns: (33%, 67%),
|
columns: 2,
|
||||||
gutter: 1em,
|
gutter: 1em,
|
||||||
..for skill in skills {
|
..for skill in skills {
|
||||||
(
|
(
|
||||||
_text(
|
heading(
|
||||||
weight: "semibold",
|
level: 2,
|
||||||
skill.title
|
_text(
|
||||||
|
weight: "semibold",
|
||||||
|
block: (width: auto),
|
||||||
|
skill.title
|
||||||
|
)
|
||||||
),
|
),
|
||||||
skill.items.join(", "),
|
skill.items.join(", "),
|
||||||
)
|
)
|
||||||
|
@ -269,7 +275,10 @@
|
||||||
degree: "",
|
degree: "",
|
||||||
graduation: "",
|
graduation: "",
|
||||||
gpa: "",
|
gpa: "",
|
||||||
coursework: (""),
|
coursework: (
|
||||||
|
completed: (""),
|
||||||
|
current: (""),
|
||||||
|
),
|
||||||
highlights: (""),
|
highlights: (""),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -288,7 +297,7 @@
|
||||||
_text(
|
_text(
|
||||||
weight: "medium",
|
weight: "medium",
|
||||||
block: (
|
block: (
|
||||||
below: 0.75em,
|
below: .95em,
|
||||||
),
|
),
|
||||||
"Relevant Coursework"
|
"Relevant Coursework"
|
||||||
)
|
)
|
||||||
|
@ -296,10 +305,30 @@
|
||||||
size: 9.5pt,
|
size: 9.5pt,
|
||||||
block: (
|
block: (
|
||||||
padding: (
|
padding: (
|
||||||
left: 2em,
|
left: 1.5em,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
school.coursework.join(", ")
|
grid(
|
||||||
|
columns: 2,
|
||||||
|
rows: 2,
|
||||||
|
gutter: 1em,
|
||||||
|
text(
|
||||||
|
weight: "regular",
|
||||||
|
"Completed",
|
||||||
|
),
|
||||||
|
text(
|
||||||
|
weight: "light",
|
||||||
|
school.coursework.completed.join(", "),
|
||||||
|
),
|
||||||
|
text(
|
||||||
|
weight: "regular",
|
||||||
|
"Current",
|
||||||
|
),
|
||||||
|
text(
|
||||||
|
weight: "light",
|
||||||
|
school.coursework.current.join(", "),
|
||||||
|
),
|
||||||
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
|
@ -354,7 +383,7 @@
|
||||||
paper: "us-letter",
|
paper: "us-letter",
|
||||||
margin: (
|
margin: (
|
||||||
x: 0.5in,
|
x: 0.5in,
|
||||||
y: 0.4in,
|
y: 0.3in,
|
||||||
),
|
),
|
||||||
{
|
{
|
||||||
title_block(title: identity.name)
|
title_block(title: identity.name)
|
||||||
|
|
Loading…
Reference in New Issue