This is a Typst package. Click here to find it in the Typst Universe.
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!