%% Copyright 2025 Ben Steinhauer % % This work may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either version 1.3 % of this license or (at your option) any later version. % The latest version of this license is in % https://www.latex-project.org/lppl.txt % and version 1.3c or later is part of all distributions of LaTeX % version 2008 or later. % % This work has the LPPL maintenance status `maintained'. % % The Current Maintainer of this work is Ben Steinhauer. % % This work consists of the files isosigns.sty, all files % in the folders /doc, /iso7001 and /iso7010. \NeedsTeXFormat{LaTeX2e}[2005/12/01] \ProvidesPackage{isosigns} [2025/08/22 v2 ISO Safety Colors And Signs] \RequirePackage{graphicx} \RequirePackage{xcolor} \RequirePackage{ifthen} \RequirePackage{xkeyval} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \definecolor{Caution}{HTML}{F9A800} \definecolor{Warning}{HTML}{D05D29} \definecolor{Prohibition}{HTML}{9B2423} \definecolor{Mandatory}{HTML}{005387} \definecolor{Rescue}{HTML}{237F52} \definecolor{Backgrounds}{HTML}{ECECE7} \definecolor{Symbol}{HTML}{2B2B2C} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \newcommand{\isosignspath}{false} \DeclareOptionX{fullpath}{\renewcommand{\isosignspath}{#1}} \ProcessOptionsX\relax %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \ifthenelse{\equal{\isosignspath}{false}} {\newcommand{\Isosign}[1]{/iso7010/ISO_7010_#1.pdf}} {\newcommand{\Isosign}[1]{\isosignspath /iso7010/ISO_7010_#1.pdf}} \ifthenelse{\equal{\isosignspath}{false}} {\newcommand{\Isosignpi}[1]{/iso7001/ISO_7001_PI_#1.pdf}} {\newcommand{\Isosignpi}[1]{\isosignspath /iso7001/ISO_7001_PI_#1.pdf}} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \endinput %% %% End of file `isosigns.sty'.