/subpar

A typst package for creating sub figures.

Primary LanguageTypstMIT LicenseMIT

subpar

Subpar is a Typst package for creating sub figures.

#import "@preview/subpar:0.1.0"

#set page(height: auto)
#set par(justify: true)

#subpar.grid(
  figure(image("/assets/andromeda.jpg"), caption: [
    An image of the andromeda galaxy.
  ]), <a>,
  figure(image("/assets/mountains.jpg"), caption: [
    A sunset illuminating the sky above a mountain range.
  ]), <b>,
  columns: (1fr, 1fr),
  caption: [A figure composed of two sub figures.],
  label: <full>,
)

Above in @full, we see a figure which is composed of two other figures, namely @a and @b.

ex

Contributing

Contributions are most welcome, make sure to let others know you're working on something beforehand so no two people waste their time working on the same issue. It's recommended to have typst-test installed to run tests locally.

Documentation

A guide and API-reference for subpar can be found in it's manual.