Create project in app
An unofficial template for internship reports at ENS de Lyon.
Usage
#show: ensl-internship.with(
title: "A simple report template created with Typst",
subtitle: "Master's degree final-year internship",
keywords: ("Kerlyon", "Lorem", "Ipsum"),
abstract: lorem(25),
lang: "en",
authors: ("Author 1", "Author 2"),
mentors: ("Mentors 1", "Mentors 2"),
logo: image("../assets/Logo_CNRS.png", height: 50pt),
place: "Place of the intership",
date: "Beginning date",
table-of-contents: true,
bibliography: bibliography("refs.yaml"),
)
Options
| Argument | Type | Description |
|---|---|---|
| title | string | The title of the internship report |
| subtitle | string | The subtitle of the internship report |
| lang | string | French (“fr”) or English (“en”) |
| keywords | array | List of keywords |
| abstract | string | Abstract |
| authors | string or array | A string if there is one author and an array if there are many authors |
| mentors | string or array | A string if there is one mentors and an array if there are many mentors |
| logo | content or none | The logo, it is recommand to use a height of 50pt |
| place | string | The place of the internship |
| date | string | The date of the internship |
| table-of-contents | bool | True to display the table of contents |
| bibliography | content or none | The result of a call to the bibliography function or none |