Text FormattingMATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
usamlntcong
Posts: 3
Joined: Sat Dec 01, 2018 3:42 pm

MATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS

Post by usamlntcong »

Hello friends,
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.

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

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

MATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS

Post by Johannes_B »

The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
usamlntcong
Posts: 3
Joined: Sat Dec 01, 2018 3:42 pm

MATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS

Post by usamlntcong »

Johannes_B wrote:Please see if https://latex.org/forum/viewtopic.php?t=17427 helps
Thank for your response but this doesn't work.
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}.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

MATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS

Post by Johannes_B »

The default math font the template uses is palatino. Remove package mathpazo, which does not support blackboard fonts in that way.

Code: Select all

\documentclass{article}
%\usepackage{mathpazo}
\usepackage{bbold}
\begin{document}
$\mathbb{123456789}$
$\mathbb{abcdef}$
\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
usamlntcong
Posts: 3
Joined: Sat Dec 01, 2018 3:42 pm

MATHEMATICAL DOUBLE-STRUCK DIGITS & LETTERS

Post by usamlntcong »

Thank you Johannes
I understand
Post Reply