How can I generate this font style in Math mode? See attachment for font. 
Asked
Active
Viewed 166 times
2
Henri Menke
- 109,596
macpee
- 291
-
3Have you tried on Detexify? – manooooh Feb 26 '20 at 04:42
-
Thanks. I have gotten it. – macpee Feb 27 '20 at 18:17
3 Answers
5
I think it's the pxtx fraktur font.
\documentclass{article}
\usepackage[frak=pxtx]{mathalpha}
\begin{document}
\(\mathfrak{R}\)
\end{document}
Vincent
- 20,157
3
What about the below?
\documentclass{book}
\usepackage{amssymb}
\begin{document}
$\Re$
\end{document}
MadyYuvi
- 13,693
2
Is this close enough?
\documentclass{article}
\usepackage{amsfonts}
\begin{document}
$\mathfrak{R}$
\end{document}


