[Tex/LaTex] kpfonts with eufrak

fonts

Is there a way to use kpfonts but with the standard mathfrak?
At first I thought it was nice to have a more readable font, but now I feel like the original one was actually better!

Best Answer

If you refer to Euler Fraktur as the "standard mathfrak", it should be as easy as loading the eufrak package after the kpfonts package and undefining \mathfrak inbetween.

\usepackage{kpfonts}
\let\mathfrak\undefined
\usepackage{eufrak}

Edit: Corrected solution.