I would like to draw a blackboard bold capital delta, but I would like to draw this while using the Euler package to get the Euler fonts.
I have tried both solutions mentioned in the first answer to this question but either they don't seem to work with capital delta or it is overwritten by the Euler package.
I also took a look at this question but I am not satisfied with the solution -- the symbol has two peaks.
\documentclass{article}
\usepackage{euler}
\usepackage{bbm}
\usepackage{mathbbol}
\newcommand{\DD}{\Delta\!\!\!\Delta}
\begin{document}
$\mathbbm{\Delta}$
%Using mathbbm -- isn't math bold
$\mathbb{\Delta}$
%Using mathbbol -- still isn't math bold
$\DD$
%Hacky, and I dislike the two peaks
\end{document}


\newcommand{\Dd}{\Delta\!\!\!{\scalebox{0.7}{$\Delta$}}}works okay, but it's kind of hacky and I find it hard to believe that nobody has wanted to do this before. – David Mehrle Mar 24 '17 at 19:29