-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.typ
More file actions
44 lines (38 loc) · 1.42 KB
/
Copy pathmain.typ
File metadata and controls
44 lines (38 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Example usage of the academic-notes template
// This demonstrates how to use the template for academic notes
#import "template.typ": *
#show: academic-notes.with(
// Required parameters
title: "GPU Computing",
subtitle: "Unimi - Master's Degree in Computer Science",
authors: (
("Luca Corradini", "LucaCorra02"),
("Matteo Zagheno", "zgn"),
),
// Optional parameters (these have defaults if not specified)
repo-url: "https://github.com/LucaCorra02/GPU-Computing",
license: "CC-BY-4.0",
license-url: "https://creativecommons.org/licenses/by/4.0/",
last-modified-label: "Last modified", // Customize this (e.g., "Ultima modifica" for Italian)
// Custom introduction (optional - if omitted, a default one is generated)
introduction: [
#show link: underline
],
// Styling options (optional - these have sensible defaults)
heading-numbering: "1.1.",
figure-supplement: "Figure",
)
// ============================================================================
// YOUR CONTENT STARTS HERE
// ============================================================================
//
#part("Cuda Numba")
#include "chapters/Lezione1-Introduzione.typ"
#include "chapters/Lezione2-Gerarchia-Thread.typ"
#include "chapters/Lezione3-Warp.typ"
#include "chapters/Lezione4.typ"
#include "chapters/Lezione6.typ"
#part("PyTorch")
#include "chapters/Lezione-7.typ"
#include "chapters/Lezione10.typ"
#include "chapters/Lezione11.typ"