Math & Science ⇒ Can't find math font
Can't find math font
Edit: uploaded a larger fragment for context.
- Attachments
-
- math-letters.png (10.53 KiB) Viewed 2722 times
-
- The letter B
- B.png (2.83 KiB) Viewed 2730 times
Reason: Preferably no external links (see Board Rules). Attachments go onto the forum server where possible.
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
Can't find math font
welcome to the board!
You could use the calligra font:
Code: Select all
\documentclass{article}
\usepackage{calligra}
\usepackage[T1]{fontenc}
\begin{document}
A calligraphic letter:
{\calligra B}
\end{document}
Re: Can't find math font
I tried calligra, while it does look close to the font I'm looking for, it's still slightly different. And it doesn't seem to work in formulas - which is what I need it for. The image I posted is from a math publication, and as I'm doing a related work I want to use the same notations.
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Can't find math font
\mathscr{B}
of mathrsfs or \mathcal{B}
of calrsfs.Stefan