Files
master-thesis-report/main.typ
2025-08-19 12:09:23 +02:00

57 lines
1.3 KiB
Typst

#import "template/template.typ": *
#import "@preview/muchpdf:0.1.1": muchpdf
// Patch the ETH logo to actually be white:
#let logo = "assets/eth-logo.svg"
#let original = read(logo)
#let changed = original.replace(
"#00000f",
white.to-hex(),
)
#let logos = (
image(bytes(changed)),
image("assets/uzh-logo.svg")
)
#show: tasteful-thesis.with(
title: "Refinements of BEoRN",
subtitle: "Self-consistent semi-numerical simulation of the epoch of reionization",
authors: ("Rémy Moll",),
affiliation: "ETH Zürich, Universität Zürich",
abstract: include("abstract.typ"),
background-color: color.rgb(32, 64, 123),
logos: logos,
background-image: image("assets/background.png"),
date: datetime.today().display("[day]. [month repr:long] [year]"),
font: "FreeSans",
pre_content: muchpdf(read("assets/declaration-originality.pdf", encoding: none)),
)
//
// Content
//
Stars form early #cite(<10.1093>, form: "normal") but @10.1093 state that they are bright.
#include "introduction.typ"
#include "procedure.typ"
#include "halo_mass_history.typ"
#include "implementation.typ"
#include "validation.typ"
// Maybe no validation?
#include "results.typ"
#include "outlook.typ"
#include "conclusion.typ"
#include "acknowledgements.typ"
#bibliography("references.bib", style: "assets/the-astrophysical-journal.csl")
#include "appendix.typ"