[Tex/LaTex] \mathds{0} and \mathbbm{0} not working

fontsmath-modetypography

It seems \mathds and \mathbbm are only defined for number one to nine, are there some fonts in math mode that works for zero?

Best Answer

Here are all the fonts, I could find on my system. Just play around with those.

% arara: pdflatex

\documentclass{article}   
\usepackage{bbold} % all ten digits with \mathbb
%\usepackage{mathbbol} % all ten digits with \mathbb
%\usepackage{mbboard} % not working here, but should have your digits with \mathbb
%\usepackage{bbm} % just 1 and 2 with \mathbbm, \mathbbmss, and \mathbbmtt
%\usepackage[sans]{dsfont} % just 1 with \mathds with and without sans option

\begin{document}
$\mathbb{0123456789}$
\end{document}