Text Formatting ⇒ MATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS
-
- Posts: 3
- Joined: Sat Dec 01, 2018 3:42 pm
MATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS
I have a problem and need your help.
I use your template Latex: Masters/Doctoral Thesis.
https://www.overleaf.com/latex/template ... zrzktcbzfl
It work almost perfect with me, but today I found an error and don't know how to fix.
I want to type some Mathematical double-struck digits and letters, such as 1, 2, 3... a, b, c... A, B, C...
in the following link: http://milde.users.sourceforge.net/LUCR ... ymbols.pdf
I try to use package \bbold but it doesn't really work well.
If you try with $\mathbb{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$, it absolutely works.
But I want to use with the numbers and other letter but it doesn't work.
Please check.
$\mathbb{1234567890qwertyuiopasdfghjklzxcvbnm}$
Could you please help me to handle this?
Thank you in advance.
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
MATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS
-
- Posts: 3
- Joined: Sat Dec 01, 2018 3:42 pm
MATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS
Thank for your response but this doesn't work.Johannes_B wrote:Please see if https://latex.org/forum/viewtopic.php?t=17427 helps
If I create a new script, it works. However, there is a issue in the above template and I want to fix that. Because many documents of mine depend on it. I don't know why it doesn't work, I've tried many ways like \usepackage{bbm,dsfont}.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
MATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS

Code: Select all
\documentclass{article}
%\usepackage{mathpazo}
\usepackage{bbold}
\begin{document}
$\mathbb{123456789}$
$\mathbb{abcdef}$
\end{document}
-
- Posts: 3
- Joined: Sat Dec 01, 2018 3:42 pm
MATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS
I understand