Skip to content

Commit

Permalink
restructuring the repo arch
Browse files Browse the repository at this point in the history
  • Loading branch information
a-mhamdi committed Mar 1, 2024
1 parent dbdc0a8 commit 03f4790
Show file tree
Hide file tree
Showing 12 changed files with 64 additions and 13 deletions.
Binary file modified Typst/en-Report/CP-Report.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions Typst/en-Report/CP-Report.typ
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
17 changes: 17 additions & 0 deletions Typst/en-Report/chaps/chpt1.typ
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,22 @@
=== Subsection 2.2
#lorem(64)

#figure(
image("images/typst.svg", width: 40%),
caption: "Typst logo",
) <fig: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>

@tab:some-table displays some table.

== Conclusion
#lorem(32)
9 changes: 9 additions & 0 deletions Typst/en-Report/chaps/images/typst.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file modified Typst/fr-Rapport/Rapport-PFE.pdf
Binary file not shown.
15 changes: 7 additions & 8 deletions Typst/fr-Rapport/Rapport-PFE.typ
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
17 changes: 17 additions & 0 deletions Typst/fr-Rapport/chaps/chpt1.typ
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,22 @@
=== Sous-section 2.2
#lorem(64)

#figure(
image("images/typst.svg", width: 40%),
caption: "Typst logo",
) <fig: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>

@tab:une-table montre un tableau.

== Conclusion
#lorem(32)
9 changes: 9 additions & 0 deletions Typst/fr-Rapport/chaps/images/typst.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 03f4790

Please sign in to comment.