Package Information
- Last Updated
- Minimum Typst Version
- 0.13.0
- Authors
- Filippo Zangrossi
- Categories
- thesis
- Dependencies
- @preview/grayness:0.3.0
Preview
1. Get the package
Download the package using the TPIX CLI:
tpix get @preview/simple-ve-thesis:0.1.02. Initialize from template
Create a new project from this template:
typst init @preview/simple-ve-thesis:0.1.0Unive thesis template
This is a basic template that follows the format recommended for the thesis at Ca' Foscari University.
Preview
Usage
Inside the template folder, there is the following example...
#import "@preview/simple-ve-thesis:0.1.0": template
#let bib = bibliography("./refs.bib")
#show: template.with(
title: "Title",
candidate: (
name: "Nome Cognome",
number: "123456",
),
date: "202x/202x",
course: "Course name",
logo: image("images/Unive.svg", width: 20%),
is-master: false, // Change the title if it is a bachelor's or master's thesis
supervisor: "Prof. Nome Cognome",
co-supervisor: "Prof. Nome Cognome",
abstract: include "abstract.typ",
lang: "it",
bib: bib, // Pass the bibliography object instead of a file path
)
= Introduzione
#lorem(100)
== Parte uno
#lorem(100)
...