59 lines
1.6 KiB
Typst
59 lines
1.6 KiB
Typst
// ___ ____ ____ _ _ _____ ___
|
|
// |_ _/ ___| / ___| | | | | ____|_ _| Informatique et
|
|
// | |\___ \| | ___ | |_| | _| | | systèmes de communication
|
|
// | | ___) | |__|___| | _ | |___ | | HEI Sion · HES-SO Valais / mui 24-26
|
|
// |___|____/ \____| |_| |_|_____|___|
|
|
//
|
|
// 52 65 61 64 69 6e 67 20 68 65 78 20 66 6f 72 20 66 75 6e 3f 20 49 53 43 20 66 6f 72 65 76 65 72
|
|
//
|
|
// Adapted from the BFH year book idea at https://www.bfh.ch/dam/jcr:e512ae31-a3ed-4b65-b589-870383d794b0/abschlussarbeiten-bsc-informatik.pdf
|
|
|
|
#import "@preview/isc-hei-exec-summary:0.8.1" : *
|
|
#import "../meta.typ"
|
|
|
|
// Must be <= 365 characters long.
|
|
#let summary = "Midas is cool!" // TODO
|
|
|
|
#assert(
|
|
summary.len() <= 365,
|
|
message: "Summary too long: len() > 365"
|
|
)
|
|
|
|
#let content = [
|
|
#todo[]
|
|
|
|
#lorem-pars(500)
|
|
#colbreak()
|
|
#lorem-pars(500)
|
|
]
|
|
|
|
#show: exec-summary.with(
|
|
title: meta.title,
|
|
subtitle: meta.subtitle,
|
|
language: "en",
|
|
authors: meta.authors,
|
|
student-picture: image("figs/me.jpg"), // TODO: replace
|
|
permanent-email: meta.permanent-email,
|
|
video-url: meta.video-url,
|
|
|
|
picture-web-opt-out: meta.picture-web-opt-out,
|
|
email-web-opt-out: meta.email-web-opt-out,
|
|
|
|
summary: summary,
|
|
content: content,
|
|
|
|
thesis-supervisor: meta.thesis-supervisor,
|
|
thesis-co-supervisor: meta.thesis-co-supervisor,
|
|
thesis-expert: meta.thesis-expert,
|
|
academic-year: meta.academic-year,
|
|
|
|
school: meta.school,
|
|
programme: meta.programme,
|
|
|
|
keywords: meta.keywords,
|
|
major : meta.major,
|
|
|
|
bind: right, // Bind the left side of the page
|
|
footer: none, //align(right, text(0.9em)[This is some content for the footer])
|
|
)
|