-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nuova versione che rispetta il nuovo regolamento
L'ho utilizzata nella mia tesi. Ve la rendo disponibile :)
- Loading branch information
Showing
6 changed files
with
249 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,207 @@ | ||
#import "@preview/big-todo:0.2.0": * | ||
#import "@preview/cetz:0.2.2" | ||
#import "@preview/codly:1.0.0": * | ||
#import "@preview/drafting:0.2.0": * | ||
#import "@preview/fletcher:0.4.2" as fletcher: node, edge | ||
#import "@preview/wrap-it:0.1.0": wrap-content | ||
#import "@preview/lovelace:0.2.0": * | ||
|
||
#let project(title: [], subtitle: [], author: [], professors: (), body) = { | ||
set document(author: author, title: title) | ||
set page(paper: "a4", margin: (inside: 3cm, outside: 2.5cm), numbering: none) | ||
set text(font: "New Computer Modern", lang: "it") | ||
set par(justify: true, leading: 0.75em) | ||
set text(size: 12pt) | ||
show par: set block(spacing: 1.6em) | ||
show link: underline | ||
show heading: it => block(it.body, below: 2em, above: 2em) | ||
align(center, [ | ||
#v(15em) | ||
#heading(level: 1, outlined: false, text(size: 30pt, title)) | ||
#v(2em) | ||
#heading(level: 2, outlined: false, text(size: 18pt, subtitle)) | ||
#align(bottom, [ | ||
#text(size: 18pt, emph(author)) | ||
#v(1em) | ||
#if type(professors) == "string" { | ||
text(size: 16pt, professors) | ||
} else { | ||
text(size: 16pt, professors.join(", ")) | ||
} | ||
#v(2em) | ||
#text(size: 16pt, datetime.today().display("[year]")) | ||
#v(2cm) | ||
]) | ||
]) + body | ||
#let algorithm = algorithm.with(supplement: "Algoritmo") | ||
|
||
|
||
#let project( | ||
title: [], | ||
subtitle: [], | ||
author: [], | ||
professors: (), | ||
school: [], | ||
department: [], | ||
course: [], | ||
session: [], | ||
aa: [], | ||
abstract: [], | ||
dedication: [], | ||
final: false, | ||
body, | ||
) = { | ||
set document(author: author, title: title) | ||
set page( | ||
paper: "a4", | ||
margin: (x: 2.5cm, y: 1.25cm), | ||
numbering: none, | ||
) | ||
|
||
set text( | ||
font: "Libertinus Serif", | ||
lang: "it", | ||
region: "it", | ||
size: 12pt, | ||
hyphenate: true, | ||
) | ||
|
||
// Bozza header | ||
set page(header: if not final { | ||
box( | ||
width: 100%, | ||
stroke: 1pt + red, | ||
inset: .5em, | ||
align( | ||
center + horizon, | ||
text(fill: red, size: 18pt, [Bozza del #datetime.today().display("[day]/[month]/[year]")]), | ||
), | ||
) | ||
} else { | ||
none | ||
}) | ||
for logo in ("assets/logo_bw.png", "assets/logo_colored.png") { | ||
align( | ||
center, | ||
[ | ||
#image(logo, width: 6.5cm) | ||
#v(2em, weak: true) | ||
#upper[Dipartimento di #text(department)] | ||
#v(2em, weak: true) | ||
#text(size: 14pt, strong([Corso di #text(course)])) | ||
#line(stroke: (dash: "dotted", thickness: 1pt), length: 100%) | ||
#v(5em) | ||
#heading(level: 1, outlined: false, text(size: 28pt, hyphenate: false, title)) | ||
#v(2em) | ||
#heading(level: 2, outlined: false, text(size: 18pt, weight: "regular", hyphenate: false, subtitle)) | ||
#align(bottom)[ | ||
#text(size: 14pt)[ | ||
#grid( | ||
columns: (auto, 1fr, auto), | ||
align: (top + left), | ||
rows: 1, | ||
row-gutter: 2em, | ||
[ | ||
*Relatore:* \ | ||
#text(professors.at(0), hyphenate: false) | ||
], | ||
{ }, | ||
[ | ||
*Presentata da:* \ | ||
#text(author) | ||
], | ||
{ | ||
if professors.len() > 0 { | ||
let title = if professors.len() > 1 { | ||
"Correlatori:" | ||
} else { | ||
"Correlatore:" | ||
} | ||
text(size: 14pt, weight: "bold", title) | ||
linebreak() | ||
for professor in professors.slice(1) { | ||
text(professor, hyphenate: false) | ||
linebreak() | ||
} | ||
} | ||
}, | ||
) | ||
#v(2em, weak: true) | ||
#line(stroke: (dash: "solid", thickness: 1pt), length: 100%) | ||
Sessione #text(session) \ | ||
Anno accademico #text(aa) | ||
] | ||
] | ||
], | ||
) | ||
pagebreak() | ||
} | ||
set page(margin: 2.5cm) | ||
show link: underline | ||
set par(justify: true, leading: 0.75em) | ||
show raw.where(block: false): box.with( | ||
stroke: (paint: gray, thickness: .5pt), | ||
outset: (y: .2em, x: -.2em), | ||
inset: (x: .5em), | ||
radius: .2em, | ||
) | ||
counter(page).update(1) // reset page counter | ||
show par: set block(spacing: 1.6em) | ||
show heading: set block(spacing: 1em) | ||
if abstract != [] { | ||
align( | ||
horizon, | ||
{ | ||
heading(level: 1, "Sommario") | ||
text(abstract) | ||
}, | ||
) | ||
pagebreak() | ||
} | ||
if dedication != [] and final { | ||
align(horizon + end, text(dedication)) | ||
pagebreak() | ||
} | ||
set page(numbering: "1") | ||
outline(title: [ Indice dei contenuti ], indent: 20pt, depth: 2) | ||
{ | ||
show heading.where(level: 1): it => { | ||
pagebreak() | ||
v(8cm) | ||
set par(justify: false) | ||
show par: set block(spacing: 0cm) | ||
let c = counter(heading).display("1") | ||
// text(size: 40pt, c) | ||
v(1cm) | ||
text(size: 40pt, it.body, hyphenate: false) | ||
v(1cm) | ||
} | ||
show heading.where(level: 2): it => { | ||
set text(size: 20pt) | ||
v(2cm) | ||
it | ||
} | ||
show heading.where(level: 3): it => { | ||
set text(size: 14pt) | ||
it | ||
} | ||
set heading(numbering: "1.1.") | ||
set-page-properties() | ||
show: codly-init.with() | ||
codly( | ||
number-format: none, | ||
zebra-fill: none, | ||
languages: ( | ||
python: (name: "Python", icon: "", color: rgb("#3572A5")), | ||
), | ||
) | ||
show: setup-lovelace | ||
body | ||
bibliography( | ||
"./bibliography.bib", | ||
// style: "association-for-computing-machinery", | ||
style: "institute-of-electrical-and-electronics-engineers" | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,49 @@ | ||
|
||
#import "template.typ": * | ||
#import "@preview/codly:1.0.0": * | ||
|
||
#show: project.with( | ||
title: "Titolo Tesi", | ||
subtitle: "Sottotitolo tesi", | ||
author: "Autore Tesi", | ||
professors: "Prof. Mario Rossi" | ||
title: [ | ||
#lorem(5) | ||
], | ||
author: "Pippo Baudo", | ||
professors: ( | ||
"Prof. Lupo Lucio", | ||
"Prof. Gatto Silvestro", | ||
"Dott. Paperino" | ||
), | ||
department: "Dipartimento della Televisione dei Ragazzi", | ||
course: "Laurea in Scienze dell'Albero Azzurro", | ||
session: "di Luglio", | ||
aa: "2000/2001", | ||
abstract: [ | ||
#lorem(100) | ||
], | ||
dedication: [ | ||
A quella puntata della Melevisione interrotta a metà. | ||
], | ||
final: true, | ||
) | ||
|
||
#counter(page).update(0) | ||
#set page(numbering: "1") | ||
|
||
= Abstract | ||
|
||
#lorem(100) | ||
|
||
#lorem(100) | ||
|
||
#lorem(100) | ||
|
||
#pagebreak() | ||
|
||
= Dedica | ||
= Introduzione | ||
|
||
#lorem(100) | ||
|
||
#pagebreak() | ||
== Sotto-paragrafo 1 | ||
|
||
#outline(title: [ Indice dei Contenuti ], indent: 20pt) | ||
#lorem(100) @miur | ||
|
||
#pagebreak() | ||
=== Sotto-sotto-paragrafo 1 | ||
|
||
= Contenuti | ||
```swift | ||
let x = 1 | ||
#lorem(100) | ||
if x == 1 { | ||
print("Hello, world!") | ||
} | ||
``` | ||
|
||
== Sottosezione 1 | ||
|
||
#lorem(100) | ||
|
||
#lorem(100) | ||
|
||
Esempio di bibliografia @miur. | ||
|
||
#pagebreak() | ||
|
||
// Bibliografia | ||
|
||
#bibliography("bibliography.bib", style: "chicago-author-date") |