[Tex/LaTex] Real number symbol (UTF-8: ℝ) in XeTeX

amsmathmath-modeplain-texsymbolsxetex

How can I get the 'real number' sign (something like \mathbb{R} with the amssymb package in LaTeX) in XeTeX?

Best Answer

How about this?

\documentclass{article}
\usepackage{amssymb}
\begin{document}
\begin{tabular}{ll}
Plain-\TeX{}:   & ${\rm I\!R}$\\
amssymb:        & $\mathbb{R}$
\end{tabular}
\end{document}

enter image description here

Related Question