[Tex/LaTex] Swiss Franc Symbol

symbols

I am looking for the currency symbol for Swiss Franc? Similar to the euro symbol for the European currency.

\usepackage[right]{eurosym}
...
\EUR{13,95}

Best Answer

Even though Swiss francs are not an SI unit, the siunitx package is really convenient to typeset numbers with units. You simply declare CHF a new unit with

\DeclareSIUnit\CHF{CHF}

If you now want to change the representation from CHF to, say, Fr. throughout the whole document, all you have to do is adjust the definition to

\DeclareSIUnit\CHF{Fr.}

Here a full example:

\documentclass{article}
\usepackage{siunitx}
\DeclareSIUnit\CHF{CHF}
%\DeclareSIUnit\CHF{Fr.}
\begin{document}
\SI{100}{\CHF}
\end{document}

enter image description here