Compare commits
4 commits
resiliatio
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c256a21fb3 | ||
|
|
ed7a5c68b8 | ||
|
|
c76e358cc5 | ||
|
|
7c67a67591 |
2 changed files with 27 additions and 2 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
*.pdf
|
||||||
|
|
@ -5,7 +5,13 @@
|
||||||
grid(
|
grid(
|
||||||
columns: (1fr, ) * calc.min(signataires.pos().len(), 4),
|
columns: (1fr, ) * calc.min(signataires.pos().len(), 4),
|
||||||
align: center,
|
align: center,
|
||||||
..signataires.pos().map(a => [#a \ #box(height: 100pt, fill: red)])
|
..signataires.pos().map(a => {
|
||||||
|
if type(a) == array {
|
||||||
|
[#a.at(0) \ #box(height: 100pt, inset: (right: 10pt, left: 10pt), a.at(1))]
|
||||||
|
} else {
|
||||||
|
[#a \ #box(height: 100pt, fill: red)]
|
||||||
|
}
|
||||||
|
})
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -17,6 +23,8 @@
|
||||||
margin: 2.1cm,
|
margin: 2.1cm,
|
||||||
vertical-center-level: 2,
|
vertical-center-level: 2,
|
||||||
numbering: "1 / 1",
|
numbering: "1 / 1",
|
||||||
|
conclusion_pv: false,
|
||||||
|
datelieu: "",
|
||||||
signataires: (),
|
signataires: (),
|
||||||
body
|
body
|
||||||
) = {
|
) = {
|
||||||
|
|
@ -51,7 +59,7 @@
|
||||||
|
|
||||||
let body = [
|
let body = [
|
||||||
#set text(size: 11pt, weight: "regular")
|
#set text(size: 11pt, weight: "regular")
|
||||||
#set par(spacing: 2em, justify: true)
|
#set par(spacing: 1.5em, justify: true)
|
||||||
#body
|
#body
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
@ -59,6 +67,22 @@
|
||||||
v(30pt)
|
v(30pt)
|
||||||
body
|
body
|
||||||
|
|
||||||
|
if conclusion_pv [
|
||||||
|
#line(length: 100%)
|
||||||
|
|
||||||
|
L’ordre du jour étant épuisé et personne ne demandant plus la parole, le
|
||||||
|
Président déclare la séance levée.
|
||||||
|
|
||||||
|
De tout ce qui précède, il a été dressé le présent procès-verbal signé par le
|
||||||
|
Président et les associé·e·s.
|
||||||
|
|
||||||
|
#v(30pt)
|
||||||
|
|
||||||
|
Fait en #signataires.len() originaux, #datelieu.
|
||||||
|
]
|
||||||
|
|
||||||
|
v(30pt)
|
||||||
|
|
||||||
if signataires.len() > 0 {
|
if signataires.len() > 0 {
|
||||||
signatures(..signataires)
|
signatures(..signataires)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue