[Tex/LaTex] Looking for a specific lowercase mathbb font

fontsmathbb

I am trying to reproduce this lowercase k with some mathbb font

enter image description here

I have tried using the bbm font, bbold font and mathds without success. I either get

enter image description here

that is not what I am looking for.

I was able to reproduce the desired symbol with \Bbbk but I read that the package \Bbb is out of date and should be avoided.

Best Answer

The command \Bbb that used to be part of amsfonts has been deprecated in favor of \mathbb. However, \Bbbk is still the command for the blackboard bold lowercase k and is defined in amssymb.

\documentclass{article}
\usepackage{amsmath,amssymb}

\begin{document}

$\Bbb{A}$ % deprecated

$\Bbbk$

\end{document}

The command \Bbb{A} produces a warning

Package amsfonts Warning: Obsolete command \Bbb; \mathbb should be used instead
 on input line 6.

but the command \Bbbk is perfectly fine.

enter image description here

Related Question