33 lines
885 B
Text
33 lines
885 B
Text
// Imports
|
|
#import "@preview/brilliant-cv:2.0.5": cvSection, cvEntry, hBar
|
|
#let metadata = toml("../metadata.toml")
|
|
#let cvSection = cvSection.with(metadata: metadata)
|
|
#let cvEntry = cvEntry.with(metadata: metadata)
|
|
|
|
|
|
#cvSection("Education", letters: 0)
|
|
|
|
#cvEntry(
|
|
title: [Academic Exchange, Computer Science],
|
|
society: [Juniata College],
|
|
date: [2016 - 2017],
|
|
location: [Huntingdon, PA, USA],
|
|
// logo: image("../src/logos/ucla.png"),
|
|
description: list(
|
|
[Software Engineering and IT Security,
|
|
Project Management],
|
|
),
|
|
)
|
|
|
|
#cvEntry(
|
|
title: [Master in Computer and Electronics Engineering (M.E)],
|
|
society: [ISEN Lille],
|
|
date: [2012 - 2017],
|
|
location: [Lille, France],
|
|
// logo: image("../src/logos/ucla.png"),
|
|
description: list(
|
|
[Mathematics, Physics, Engineering, Image/Signal Processing],
|
|
[Computing, Electronics (Microcontrollers, DSP)],
|
|
|
|
),
|
|
)
|