I'm using the mathbbol package so I can use \mathbb with Greek and lower-case letters. The package documentation states
Without options, the following commands are defined:
- \mathbb{A} to produce blackbord bold A. All upper and lowercase latin letters are accessible this way. It overwrites AMS-LaTeX's \mathbb (and can be overwritten if you load amsfonts after mathbbol)
I am not seeing this functionality
\documentclass{article}
%\usepackage[bbgreekl]{mathbbol}
\usepackage{amsfonts}
\begin{document}
%$\mu = \bbnu(a,b,c)$
$\mathbb{K}$
\end{document}
Specifically:
- With the
mathbbolpackage commented out,\mathbb{K}prints theamsfontsverion (with serifs) - With
mathbbol,\mathbb{K}prints themathbbolverion (without serifs), even thoughamsfontsis loaded afterwards
How can I keep the normal amsfonts versions for upper-case \mathbb{} but also add the lower-case and Greek letters from mathbbol?
