Skip to content

Instantly share code, notes, and snippets.

@shellixa
Created September 21, 2025 11:00
Show Gist options
  • Select an option

  • Save shellixa/7672e1dd525e0f1aba1feae19005aad1 to your computer and use it in GitHub Desktop.

Select an option

Save shellixa/7672e1dd525e0f1aba1feae19005aad1 to your computer and use it in GitHub Desktop.
Comma separated footnotes in typst
#let footnotes(note, ..additional-notes, separator: [,~]) = {
footnote(note)
for note in additional-notes.pos() {
super(separator)
footnote(note)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment