[Tex/LaTex] latex thorn sans serif symbol in math mode

math-modesymbols

I am studying theory at university, and the lecturer uses this symbol for elementary probability:
elementary probability

I want to use it in math mode, but the best suggestions I got from http://detexify.kirelabs.org/classify.html was:

\usepackage[T1]{fontenc}
\TH
textmode

and

\usepackage{ tipa }
\textthorn
textmode

What i need is this symbol, sans serif, italic, in math mode.

How can i reach it?

Best Answer

The Comprehensive list shows a bundle of different \thorn symbols, depending on various packages.

The table below gives an example of some of the commands.

There might be some warnings, especially for the \itshape fontshape, since this shape is not available for all fonts/symbols

\documentclass{article}


\usepackage{mathtools}
\usepackage[T1]{fontenc}
\usepackage{tipa}
\usepackage{tipx}
\usepackage{wasysym}

\newcommand{\mythorntable}[1]{%
\begin{tabular}{ll}
\multicolumn{2}{c}{#1} \tabularnewline
fontenc & \TH~\th \tabularnewline
tipa & \textthorn \tabularnewline
tipx & \textthornvari~\textthornvarii~\textthornvariii~\textthornvariv \tabularnewline
wasysym & \thorn~\Thorn \tabularnewline
\end{tabular}
}

\begin{document}

\huge
\begin{tabular}{ll}
\mythorntable{Normal font}
 &
\slshape
\mythorntable{Slanted}
\tabularnewline
& \tabularnewline
\sffamily
\mythorntable{Sans serif}
 &
 \itshape
 \mythorntable{Italic}
 \tabularnewline
 & \tabularnewline
 \begin{tabular}{ll}
   \multicolumn{2}{c}{Math} \tabularnewline
   fontenc & $\text{\sffamily\itshape\TH~\th}$ \tabularnewline
   tipa & $\text{\sffamily\itshape\textthorn}$ \tabularnewline
   \tabularnewline
 \end{tabular} &

\end{tabular} 


\end{document}

enter image description here