A Typst template for creating NASA Gemini (1966) style checklists. See comparison with original below:
Template | NASA Gemini |
---|---|
![]() |
![]() |
- Sequence with heading
- Time scale axis
- Crew identifier (Pilot, copilot, both etc.)
- Step
- Sub Step
- Numbered steps as seen in other Gemini checklists such as gemini-5
#import "../lib.typ": *
#show: checklist
See examples/
for help.
All sequence titles and steps have forced capitalisation.
Starts a new sequence, the title and time axis are optional.
#sequence(title: "Eva Sequence")[
#withCrew("P")[
//...steps
]
]
// With an optional time axis
#sequence(title: "Eva Sequence", withTime: true)[
// rest of sequence
]
// With optional numbered steps.
#sequence(title: "Eva Sequence", withNumbers: true)[
// rest of sequence
]
Specifies the crew letter in the left hand margin.
#withCrew("P")[
// ... steps
]
Specifies an individual step. Optional atTime
parameter if using time axis.
#step[Take Agena pictures - Hasselblad]
#step(atTime: "05:00")[Raise handrail]
A step with a left indentation. Optional atTime
parameter if using time axis.
#subStep[YAW 90#sym.degree L & R]
#subStep(atTime: "40:00")[Pitch 45]