Package Information
- Last Updated
- Authors
- <@VanessB>
- Categories
- componentsmodel
- Disciplines
- mathematicscomputer-sciencephysicsengineeringphilosophyeducation
1. Get the package
Download the package using the TPIX CLI:
tpix get @preview/stash:0.1.02. Import in your Typst file
Add this to your .typ file:
#import "@preview/stash:0.1.0": *This is a Typst package. Click here to find it in the Typst Universe.
stash
Version 0.1.0
This package allows you to stash blocks of content and display them later.
Inspired by $\LaTeX$ proof-at-the-end.
Getting Started
The following example illustrates how to import the package, create a stash and print it out:
#import "@preview/stash:0.1.0": *
#create-stash("proofs")
*Theorem 1:* $A = B$
#add-to-stash("proofs", [*Proof of Theorem 1*: $B = A$])
#lorem(30)
#context print-stash("proofs")
Plain and simple, no additional settings!