[Tex/LaTex] Blackboard bold letters

blackboard;

This is a very short question : how do I produce the blackboard bold letters in the second column (the one that reads "Text") of this document? It seems to me that the package eulervm uses the same blackboard bold as the standard math font in Latex, and I would like to replace the standard blackboard bold with that of the linked document.

\documentclass[11pt]{scrartcl} 
\usepackage{amsmath, amsfonts, amssymb, amsthm}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\renewcommand{\rmdefault}{pplx}
\usepackage{eulervm}
\usepackage{dsfont}
\begin{document}
I want the blackboard bold letters from the \textit{second} column.
$\mathbb{ABCDEFG}\mathds{ABCDEFG}$
\end{document}

Best Answer

\documentclass[11pt]{scrartcl} 
\usepackage{amsmath,amsfonts,amssymb,amsthm}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\renewcommand*\rmdefault{pplx}
\usepackage{eulervm}
\usepackage[bb=boondox]{mathalfa}
\begin{document}
I want the blackboard bold letters from the \emph{second} column.
$\mathbb{ABCDEFG}$
\end{document}

Instead of boondox you could use fourier, or esstix.

enter image description here