[Tex/LaTex] \mathbb{0} and \mathbb{1} with mathdesign/Utopia

blackboard;fonts

In a related question, I asked about getting a blackboard bold 0 in addition to a 1. But now I'd like to do it along with \usepackage[utopia]{mathdesign}. If I try to \usepackage{bbold}, I get the error

Latex Error: /usr/local/texlive/2011/texmf-dist/tex/latex/bbold/bbold.sty:42 LaTeX Error: Command `\mathbb' already defined.

It seems that \usepackage{dsmath} works with \mathds{01}, but if possible I'd like to use them with the command \mathbb. Is there a way to make that work?

Best Answer

You can try:

\documentclass{article}

\usepackage[utopia]{mathdesign}
\let\mathbb\undefined  % delete the command definition 
\usepackage{bbold}     % let bbold define its own \mathbb command

\begin{document}

$\mathbb{0,1,2,3,4,5,6,7,8,9,10}$

\end{document}

This example works, but I haven't done any further tests.

Related Question