diff --git a/Typst/en-Report/CP-Report.pdf b/Typst/en-Report/CP-Report.pdf index 44c90d3..2e97e7b 100644 Binary files a/Typst/en-Report/CP-Report.pdf and b/Typst/en-Report/CP-Report.pdf differ diff --git a/Typst/en-Report/CP-Report.typ b/Typst/en-Report/CP-Report.typ index 24c84cb..c82d3c6 100644 --- a/Typst/en-Report/CP-Report.typ +++ b/Typst/en-Report/CP-Report.typ @@ -1,11 +1,11 @@ // CAPSTONE PROJECT #import "Class.typ": * -#import "common/metadata.typ": * -#import "common/titlepage.typ": * - #import "@preview/colorful-boxes:1.2.0": outlinebox +#import "common/metadata.typ": * +#import "Title-page.typ": * + #set document(author: author, title: title, keywords: "report, capstone, project, typst", date: auto) // The project function is called with the content of the document. diff --git a/Typst/en-Report/images/logo-isetbz.png b/Typst/en-Report/Logo-ISETBZ.png similarity index 100% rename from Typst/en-Report/images/logo-isetbz.png rename to Typst/en-Report/Logo-ISETBZ.png diff --git a/Typst/en-Report/common/titlepage.typ b/Typst/en-Report/Title-page.typ similarity index 94% rename from Typst/en-Report/common/titlepage.typ rename to Typst/en-Report/Title-page.typ index b4c08b6..a96d5ec 100644 --- a/Typst/en-Report/common/titlepage.typ +++ b/Typst/en-Report/Title-page.typ @@ -36,7 +36,7 @@ align(center, text(font: sans-font, 1.25em, weight: 100, "Institute of Technological Studies of Bizerte")) v(5mm) - align(center, image("../images/logo-isetbz.png", width: 25%)) + align(center, image("Logo-ISETBZ.png", width: 25%)) v(15mm) align(center, text(font: sans-font, 1.3em, weight: 100, diploma + " in " + program)) diff --git a/Typst/en-Report/chaps/chpt1.typ b/Typst/en-Report/chaps/chpt1.typ index 22db057..1845163 100644 --- a/Typst/en-Report/chaps/chpt1.typ +++ b/Typst/en-Report/chaps/chpt1.typ @@ -21,5 +21,22 @@ === Subsection 2.2 #lorem(64) +#figure( + image("images/typst.svg", width: 40%), + caption: "Typst logo", +) + +@fig:typst-logo shows the `Typst` logo. + +#figure( + table( + columns: (auto, auto, auto), + [a], [b], [c], [$a$], [$b$], [$c$], + ), + caption: "Some table", +) + +@tab:some-table displays some table. + == Conclusion #lorem(32) diff --git a/Typst/en-Report/chaps/images/typst.svg b/Typst/en-Report/chaps/images/typst.svg new file mode 100644 index 0000000..478d16c --- /dev/null +++ b/Typst/en-Report/chaps/images/typst.svg @@ -0,0 +1,9 @@ + + + diff --git a/Typst/fr-Rapport/images/logo-isetbz.png b/Typst/fr-Rapport/Logo-ISETBZ.png similarity index 100% rename from Typst/fr-Rapport/images/logo-isetbz.png rename to Typst/fr-Rapport/Logo-ISETBZ.png diff --git a/Typst/fr-Rapport/Rapport-PFE.pdf b/Typst/fr-Rapport/Rapport-PFE.pdf index 457f3c5..1b27f97 100644 Binary files a/Typst/fr-Rapport/Rapport-PFE.pdf and b/Typst/fr-Rapport/Rapport-PFE.pdf differ diff --git a/Typst/fr-Rapport/Rapport-PFE.typ b/Typst/fr-Rapport/Rapport-PFE.typ index 91a8ce6..41d4b83 100644 --- a/Typst/fr-Rapport/Rapport-PFE.typ +++ b/Typst/fr-Rapport/Rapport-PFE.typ @@ -2,13 +2,12 @@ #import "Class.typ": * #import "common/metadata.typ": * -#import "common/titlepage.typ": * +#import "Title-page.typ": * #import "@preview/colorful-boxes:1.2.0": outlinebox #set document(author: author, title: title, keywords: "rapport, pfe, projet, typst", date: auto) -// The project function is called with the content of the document. #show: report.with( title: title, diploma: diploma, @@ -58,20 +57,20 @@ #set page(numbering: "1") #counter(page).update(1) -#chap("Introduction générale") // GI +#chap("Introduction générale") // IG #include "chaps/intro.typ" #set heading(numbering: "1.", supplement: [Chapter]) -#chap(chap1) // Chapter 1 +#chap(chap1) // Chapitre 1 #include "chaps/chpt1.typ" -#chap(chap2) // Chapter 2 +#chap(chap2) // Chapitre 2 #include "chaps/chpt2.typ" -#chap(chap3) // Chapter 3 +#chap(chap3) // Chapitre 3 #include "chaps/chpt3.typ" #set heading(numbering: none) -#chap("Conclusion générale") // GC +#chap("Conclusion générale") // CG #include "chaps/outro.typ" -// --- References --- +// --- Références --- #chap("Bibliographie") #set page(header: smallcaps(title) + h(1fr) + emph("Bibliographie") + line(length: 100%)) #text(white)[#heading(bookmarked: true)[Bibliographie]]#v(-1cm) diff --git a/Typst/fr-Rapport/common/titlepage.typ b/Typst/fr-Rapport/Title-page.typ similarity index 94% rename from Typst/fr-Rapport/common/titlepage.typ rename to Typst/fr-Rapport/Title-page.typ index 1b08015..161e07c 100644 --- a/Typst/fr-Rapport/common/titlepage.typ +++ b/Typst/fr-Rapport/Title-page.typ @@ -36,7 +36,7 @@ align(center, text(font: sans-font, 1em, weight: 100, "Institut Supérieur des Etudes Technologiques de Bizerte")) v(5mm) - align(center, image("../images/logo-isetbz.png", width: 25%)) + align(center, image("Logo-ISETBZ.png", width: 25%)) v(15mm) align(center, text(font: sans-font, 1.3em, weight: 100, diploma + " in " + program)) diff --git a/Typst/fr-Rapport/chaps/chpt1.typ b/Typst/fr-Rapport/chaps/chpt1.typ index c129ac5..f8cc40d 100644 --- a/Typst/fr-Rapport/chaps/chpt1.typ +++ b/Typst/fr-Rapport/chaps/chpt1.typ @@ -21,5 +21,22 @@ === Sous-section 2.2 #lorem(64) +#figure( + image("images/typst.svg", width: 40%), + caption: "Typst logo", +) + +@fig:typst-logo affiche le logo de `Typst`. + +#figure( + table( + columns: (auto, auto, auto), + [a], [b], [c], [$a$], [$b$], [$c$], + ), + caption: "Une table", +) + +@tab:une-table montre un tableau. + == Conclusion #lorem(32) diff --git a/Typst/fr-Rapport/chaps/images/typst.svg b/Typst/fr-Rapport/chaps/images/typst.svg new file mode 100644 index 0000000..478d16c --- /dev/null +++ b/Typst/fr-Rapport/chaps/images/typst.svg @@ -0,0 +1,9 @@ + + +