Fonts & Character SetsBlackboard bold numbers; trouble with \mathbb

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
299792458
Posts: 2
Joined: Thu Jan 19, 2012 11:55 pm

Blackboard bold numbers; trouble with \mathbb

Post by 299792458 »

Hello everyone,

I just started using LaTeX and I have an issue with the \mathbb command. Letters work just fine, but when I am trying to use double-struck numbers, e.g. with \mathbb{1}, this character
character.jpg
character.jpg (631 Bytes) Viewed 34435 times
shows up instead of the blackboard bold number 1. I did find out I can circumvent this by creating combining the characters "1" and "I" to make somewhat of a double-struck "1", but I would still like to know what is going wrong when I use \mathbb.

Any help would be appreciated.
Last edited by Stefan Kottwitz on Fri Jan 20, 2012 12:58 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Blackboard bold numbers; trouble with \mathbb

Post by Stefan Kottwitz »

Welcome to the board!

\mathbb (of amsfonts) supports only letters, not digits. You could use bbm:

Code: Select all

\documentclass{article}
\usepackage{bbm}
\begin{document}
\[
  \mathbbm{1}
\]
\end{document}
identity-bbm.png
identity-bbm.png (433 Bytes) Viewed 34435 times
Or dsfont:

Code: Select all

\documentclass{article}
\usepackage{dsfont}
\begin{document}
\[
  \mathds{1}
\]
\end{document}
identity-ds.png
identity-ds.png (876 Bytes) Viewed 34435 times
Stefan
LaTeX.org admin
299792458
Posts: 2
Joined: Thu Jan 19, 2012 11:55 pm

Re: Blackboard bold numbers; trouble with \mathbb

Post by 299792458 »

Thanks for the quick response.

I have a follow-up beginner's question right away: Is there an easier way of installing dsfont in MiKTeX than figuring out by myself where to put the individual files, as the documentation suggests? As it appears to me the dsfont package cannot be installed via the package manager in MiKTeX.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Blackboard bold numbers; trouble with \mathbb

Post by localghost »

299792458 wrote:[…] I have a follow-up beginner's question right away: Is there an easier way of installing dsfont in MiKTeX than figuring out by myself where to put the individual files, as the documentation suggests? As it appears to me the dsfont package cannot be installed via the package manager in MiKTeX.
Search the package list in the MiKTeX Package Manager (MPM) for the doublestroke package and install it.


Thorsten
Post Reply