first draft
This commit is contained in:
commit
f1abfbfa5b
15 changed files with 2893 additions and 0 deletions
8
template/abstract.typ
Normal file
8
template/abstract.typ
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
#let keywords-en = ("Lorem", "Ipsum", "Dolore", "Sit", "Amet")
|
||||
#let keywords-fr = ("Lorem", "Ipsum", "Dolore", "Sit", "Amet")
|
||||
|
||||
|
||||
#let abstract-en = lorem(200)
|
||||
|
||||
#let abstract-fr = lorem(200)
|
0
template/bibliography.bib
Normal file
0
template/bibliography.bib
Normal file
18
template/jury.typ
Normal file
18
template/jury.typ
Normal file
|
@ -0,0 +1,18 @@
|
|||
#let jury-content = [
|
||||
#text(size: 1.3em)[Composition du jury :]
|
||||
|
||||
#{
|
||||
set text(size: .92em)
|
||||
table(
|
||||
columns: 4,
|
||||
column-gutter: 2em,
|
||||
stroke: 0pt,
|
||||
inset: (x: 0pt, y: .5em),
|
||||
"Présidente :", "Alice", "Professeure des universités", "Université de Rennes",
|
||||
"Rapporteurs :", "Bob", "", "",
|
||||
"", "Eve", "", "",
|
||||
"Examinatrice :", "Mallory", "", "",
|
||||
"Dir. de thèse :", "Trent", "", "",
|
||||
)
|
||||
}
|
||||
]
|
26
template/main.typ
Normal file
26
template/main.typ
Normal file
|
@ -0,0 +1,26 @@
|
|||
#import "@local/template-thesis-matisse:0.0.1": *
|
||||
|
||||
#import "jury.typ": jury-content
|
||||
#import "abstract.typ": keywords-en, keywords-fr, abstract-en, abstract-fr
|
||||
|
||||
#show: matisse-thesis.with(
|
||||
title-fr: "Lorem Ipsum Fr",
|
||||
title-en: "Lorem Ipsum",
|
||||
author: "Anne Onyme",
|
||||
affiliation: "Inria",
|
||||
defense-place: "Rennes",
|
||||
defense-date: datetime.today().display(),
|
||||
jury-content: jury-content,
|
||||
university: [l'Université de Rennes],
|
||||
keywords-en: keywords-en,
|
||||
keywords-fr: keywords-fr,
|
||||
abstract-en: abstract-en,
|
||||
abstract-fr: abstract-fr,
|
||||
draft: true,
|
||||
)
|
||||
|
||||
#todo[Write the Thesis]
|
||||
|
||||
#bibliography("bibliography.bib")
|
||||
|
||||
#todos()
|
Loading…
Add table
Add a link
Reference in a new issue