
Does anybody know how I can get exactly that symbol for the set of real numbers in LaTeX?
Additional image:
In this picture you have the symbol for the set of integers, real numbers and complex numbers. I think this must be a package.
An exact font for the symbols does not exist, because the symbols are composed from letters. The image clearly shows, that especially the Z- and C-symbols are poor man's versions of the symbol. All the three symbols are generated by two shifted letters:
\documentclass{article}
\newcommand*{\CC}{%
\textsf{C\kern-1ex C}%
}
\newcommand*{\RR}{%
\textsf{I\kern-.3ex R}%
}
\newcommand*{\ZZ}{%
\textsf{Z\kern-1ex Z}%
}
\begin{document}
\textbf{a)} nad \ZZ,
\textbf{b)} nad \RR,
\textbf{c)} nad \CC
\end{document}
amssymb\documentclass{article}
\usepackage{amssymb}
\begin{document}
\textbf{a)} nad $\mathbb{Z}$,
\textbf{b)} nad $\mathbb{R}$,
\textbf{c)} nad $\mathbb{C}$
\end{document}
fourier\documentclass{article}
\usepackage{fourier}
\begin{document}
\textbf{a)} nad $\mathbb{Z}$,
\textbf{b)} nad $\mathbb{R}$,
\textbf{c)} nad $\mathbb{C}$
\end{document}
dsfont\documentclass{article}
\usepackage{dsfont}
\begin{document}
\textbf{a)} nad $\mathds{Z}$,
\textbf{b)} nad $\mathds{R}$,
\textbf{c)} nad $\mathds{C}$
\end{document}
dsfont\documentclass{article}
\usepackage[sans]{dsfont}
\begin{document}
\textbf{a)} nad $\mathds{Z}$,
\textbf{b)} nad $\mathds{R}$,
\textbf{c)} nad $\mathds{C}$
\end{document}
\documentclass{article}
\usepackage{fontspec}
\newfontface\SymbolFont{Segoe UI Symbol}
\begin{document}
\textbf{a)} nad {\SymbolFont\symbol{"2124}},
\textbf{b)} nad {\SymbolFont\symbol{"211D}},
\textbf{c)} nad {\SymbolFont\symbol{"2102}}
\end{document}
\documentclass{article}
\usepackage{fontspec}
\newfontfamily\SymbolFont{FreeSans}
\begin{document}
\textbf{a)} nad {\SymbolFont\symbol{"2124}},
\textbf{b)} nad {\SymbolFont\symbol{"211D}},
\textbf{c)} nad {\SymbolFont\symbol{"2102}}
\end{document}
dsfont, if I remember correctly you activate them with sans option.
– Manuel
Oct 31 '16 at 11:11
Yet one more to the collection:
Font "Bbold"
\documentclass{article}
\usepackage{bbold}
\begin{document}
\textbf{a)} nad $\mathbb{Z}$,
\textbf{b)} nad $\mathbb{R}$,
\textbf{c)} nad $\mathbb{C}$
\end{document}
Note: In text mode you can use also {\bbfamily Z}
\usepackage{amsfonts}or alternatively you can try\usepackage{amssymb}). If ℝ is\mathbb{R}, ℂ is\mathbb{C}and I'm sure you can work out the rest yourself. Sure the font is different in this work, in fact the ℂ is quite clearly crudely double struck by having a C and then another C shortly afterwards (which I suppose you could do by hand in LaTeX if you really wanted to), but are you then asking how to get that exact font? – Au101 Oct 30 '16 at 10:02Clooks just awful. Are you sure you want to replicate such a disaster? – Mico Oct 30 '16 at 10:17I\!\!\!RandZ\!\!Z. – CompuChip Oct 31 '16 at 07:44