s

simple-ve-thesis

@preview

Unofficial thesis template for Ca' Foscari University of Venice

v0.1.0
MIT
Template

Package Information

Last Updated
Minimum Typst Version
0.13.0
Categories
thesis

Preview

Template preview

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/simple-ve-thesis:0.1.0

2. Initialize from template

Create a new project from this template:

typst init @preview/simple-ve-thesis:0.1.0

Version History

0.1.00.13.0
fbcea00f7a2b...

Unive 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)

...