t

typsium-iso-7010

@preview

Display Warning signs, Fire signs, Emergency signs, Mandatory signs, Prohibited signs following the ISO 7010 standard.

v0.1.2
MIT

Package Information

Last Updated
Categories
componentsreportoffice
Disciplines
engineeringchemistrytransportation

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/typsium-iso-7010:0.1.2

2. Import in your Typst file

Add this to your .typ file:

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

Version History

0.1.2
adac795a3dec...
0.1.1
e75ff1de1a83...
0.1.0
afa7dbfa53c0...

Typst Package
MIT License

ISO 7010 Warning, Fire, Emergency and Safety Pictograms in Typst

A package for displaying commonly used warning signs in typst.

Usage

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

#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.