hackens-epi/epi.typ

59 lines
1.5 KiB
Text
Raw Normal View History

2024-09-15 14:45:24 +02:00
#import "lib/libepi.typ"
2024-09-15 19:57:15 +02:00
// Update version after each meaningful change
#let version = "0.3"
2024-09-15 15:27:23 +02:00
#set document(title: "Fiche EPI de HackENS", author: "cst1")
2024-09-15 19:33:31 +02:00
#set text(font: "Liberation Sans")
2024-09-15 15:27:23 +02:00
2024-09-15 14:45:24 +02:00
#let fiches = (
2024-09-15 19:57:15 +02:00
libepi.card(name: "Défonceuse",
protection_items: (libepi.Hearing, libepi.Shield),
forbidden_items: (),
referent: ("cst1",),
2024-09-15 19:57:15 +02:00
instructions: "truc truc truc",
min_help: 1
),
2024-09-15 15:27:23 +02:00
2024-09-15 19:57:15 +02:00
libepi.card(name: "Ponceuse à bande",
protection_items: (libepi.Hearing, libepi.Glasses, libepi.Mask),
forbidden_items: (),
instructions: [
- Vérifier l'état de la bande. Si elle est trop usée, la changer.
- Allumer la ponceuse
- Toujours caler la pièce à poncer contre le bloqueur métallique pour la maintenir en place
],
min_help: 0,
),
2024-09-15 15:27:23 +02:00
2024-09-15 19:57:15 +02:00
libepi.card(name: "Perceuse à colonne",
protection_items: (libepi.Glasses,),
forbidden_items: (libepi.NoGloves,),
instructions: [],
warning: [Ne surtout pas mettre de gants, ils risqueraient d'être emportés
avec les mains dans la mêche.]
),
libepi.card(name: "CNC",
protection_items: (libepi.Hearing, libepi.Glasses,),
forbidden_items: (),
referent: ("Sel", "Rémy"),
instructions: [],
warning: []
),
libepi.card(name: "Imprimante 3D",
protection_items: (),
forbidden_items: (),
referent: ("Sel", "Rémy"),
instructions: [
- Allumer la hotte de l'imprimante
],
//warning: []
2024-09-15 19:57:15 +02:00
),
2024-09-15 14:45:24 +02:00
)
#show: doc => [
2024-09-15 19:57:15 +02:00
#libepi.generate_cards(version, fiches)
2024-09-15 14:45:24 +02:00
]