-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Déplacer la customisation du template typst
- Loading branch information
1 parent
331d50a
commit d396032
Showing
3 changed files
with
28 additions
and
28 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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// #import "@preview/mitex:0.2.4": * | ||
#set math.equation( | ||
numbering: "(1)", | ||
supplement: none | ||
) | ||
|
||
#set page("a4") | ||
|
||
#set text(font: "IBM Plex Sans") | ||
|
||
// Bold titles. | ||
#show table.cell.where(y: 0): set text(weight: "bold") | ||
|
||
// Tableaux alignés à gauche, sauf première ligne centrée | ||
#show table.cell: set align(left+horizon) | ||
#show table.cell.where(y: 0): set align(center+horizon) | ||
|
||
#show figure.where( | ||
kind: table | ||
): set figure.caption(position: top) | ||
|
||
// Tableau zébré | ||
#set table( | ||
fill: (_, y) => if calc.odd(y) { rgb("EAF2F5") }, | ||
stroke: 0.5pt + rgb("666675"), | ||
) |
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