Universe

Typst Package MIT License

A package for displaying commonly used warning signs in typst.

Usage

#import "@preview/typsium-iso-7010:0.1.1": *

#grid(
  columns: 2,
  emergency-sign(2, height: 10em, inset:0%),
  emergency-arrow(direction:0, height: 10em, inset:0%),
)
Combined pictogram of emergency exit and arrow pointing to the right.

You can use <fire/warning/emergency>-sign methods or the more general iso-7010 method:

    #grid(
    columns: 2,
    fire-arrow(direction:"up", height: 10em, inset:0%),
    iso-7010("F001", height: 10em, inset:0%),
    )
Combined pictogram of arrow pointing up and a fire extinguisher.

Get the localised names of each sign using the get-name method:

context{
  #get-name("E002")
}

For a full list of pictograms, please visit the Wikipedia page.

#grid(
  columns: 10,
  mandatory-actions-sign(1, height: 2em),
  mandatory-actions-sign(3, height: 2em),
  mandatory-actions-sign(8, height: 2em),
  mandatory-actions-sign(14, height: 2em),
  mandatory-actions-sign(61, height: 2em),
  prohibited-actions-sign(3, height: 2em),
  prohibited-actions-sign(10, height: 2em),
  prohibited-actions-sign(45, height: 2em),
  prohibited-actions-sign(49, height: 2em),
  prohibited-actions-sign(75, height: 2em),
)
Various example pictograms
#grid(
  columns: 4,
  iso-7010("W002", height: 2em),
  iso-7010("W003", height: 2em),
  iso-7010("w16", height: 2em),
  iso-7010("w071", height: 2em), 
)
More example pictograms.