Math & Science ⇒ How to make this particular capital B letter? Not \mathbb{}, \textbf{}, \beta (and \Beta does not work for me! why?)
How to make this particular capital B letter? Not \mathbb{}, \textbf{}, \beta (and \Beta does not work for me! why?)
Is it not $\mathbb{B}$, \textbf{B} or $\beta$.
(And $\Beta$ does not work for me! Why? I have these packages in my source: amssymb, amsmath, siunitx, gensymb, physics, [T1]{fontenc}, [utf8]{inputenc}, [portuguese]{babel}, hyphenat.)
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
How to make this particular capital B letter? Not \mathbb{}, \textbf{}, \beta (and \Beta does not work for me! why?)
it looks like
\mathcal
:Code: Select all
\documentclass{article}
\begin{document}
$\mathcal{B}$
\end{document}
Stefan
How to make this particular capital B letter? Not \mathbb{}, \textbf{}, \beta (and \Beta does not work for me! why?)
Hello, Stefan. "Math calligraphy" - so that was the secret. Exactly what i wanted.Stefan Kottwitz wrote:Hi,
it looks like\mathcal
:
No additional package needed.Code: Select all
\documentclass{article} \begin{document} $\mathcal{B}$ \end{document}
Most questions i may do in the next days, maybe one or two weeks, are for the same kind of thing: something with a mathematic detail - which i probably found in the same book i read that "B", or a detail needed to write the answer of an exercise (of that same book) using LaTeX.
Thank you very much (:
How to make this particular capital B letter? Not \mathbb{}, \textbf{}, \beta (and \Beta does not work for me! why?)
Just this little issue, that i found by accident, trying to find that "mathcal B", remains:dedec0 wrote: [...]
(And $\Beta$ does not work for me! Why? I have these packages in my source: amssymb, amsmath, siunitx, gensymb, physics, [T1]{fontenc}, [utf8]{inputenc}, [portuguese]{babel}, hyphenat.)
In a file with all the mentioned packages, $\beta$ works perfectly, but $\Beta$ does not. And it seems they should both always work together:
https://en.wikibooks.org/wiki/LaTeX/Mathematics#Greek_letters
A file with
Code: Select all
\subparagraph{(g)} $ \beta $
Code: Select all
\subparagraph{(g)} $ \Beta $
Code: Select all
! Undefined control sequence.
l.128 \subparagraph{(g)} $ \Beta $
?
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
How to make this particular capital B letter? Not \mathbb{}, \textbf{}, \beta (and \Beta does not work for me! why?)
Stefan
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
How to make this particular capital B letter? Not \mathbb{}, \textbf{}, \beta (and \Beta does not work for me! why?)
Semantically speaking, all greek letters should be provided as commands, since they are different entities.Note that some uppercase Greek letters look like Latin ones, so they are not provided by LaTeX (e.g. uppercase Alpha and Beta are just "A" and "B" respectively).
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
How to make this particular capital B letter? Not \mathbb{}, \textbf{}, \beta (and \Beta does not work for me! why?)
Feel free to post your questions! Just make a new topic for each new question, easier to see and to answer than in a long thread.dedec0 wrote:Most questions i may do in the next days, maybe one or two weeks, are for the same kind of thing: something with a mathematic detail
Stefan
How to make this particular capital B letter? Not \mathbb{}, \textbf{}, \beta (and \Beta does not work for me! why?)
Of course i will do new threads, Stefan. This one is (or seems) an exception just because '\Beta' is among the options i tried for that special B i was looking for. And since it did not work, i imagine that what i wanted could be found with it working. So \Beta does not work for that note i missed.Stefan Kottwitz wrote:Feel free to post your questions! Just make a new topic for each new question, easier to see and to answer than in a long thread.dedec0 wrote:Most questions i may do in the next days, maybe one or two weeks, are for the same kind of thing: something with a mathematic detail
Thank you again (:
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
How to make this particular capital B letter? Not \mathbb{}, \textbf{}, \beta (and \Beta does not work for me! why?)

Stefan