[Tex/LaTex] Representing real part of a complex number and Fourier Transform symbol

symbols

I want to write in math mode the real part of a complex number and I used the command \mathcal{R}(i). The problem is that the R it produces is not the same as the R in most books that represent the real part. One reason is that it is small and it shouldn't be as it is not meant as a letter but as a symbol. Using the \mathcal{F} I had the same problem representing the Fourier Transform. What command do you use and you think is best and most beuatiful for there operations?

Best Answer

Please choose what you like. If you are not able to use Lua- or XeLaTeX, let me know.

% arara: lualatex

\documentclass{article}
\usepackage{relsize}
\usepackage{unicode-math}
\usepackage{booktabs}
\newcommand*{\enlarge}[1]{\mathlarger{\mathlarger #1}}

\begin{document}  
    \begin{tabular}{llll}\toprule
        Font & Normal & Bold & Big\\\midrule
        Latin Modern Math & $\Re(i)\mscrR(i) \mscrF$&$\mbffrakR(i)\mbfscrR(i)\mbfscrF$&$\enlarge{\Re}(i)\enlarge{\mscrR}(i) \enlarge{\mscrF}$\\
        XITS Math & \setmathfont{XITS Math}$\Re(i)\mscrR(i) \mscrF$&$\mbffrakR(i)\mbfscrR(i)\mbfscrF$&$\enlarge{\Re}(i)\enlarge{\mscrR}(i) \enlarge{\mscrF}$\\
        Asana Math & \setmathfont{Asana Math}$\Re(i)\mscrR(i) \mscrF$&$\mbffrakR(i)\mbfscrR(i)\mbfscrF$&$\enlarge{\Re}(i)\enlarge{\mscrR}(i) \enlarge{\mscrF}$\\
        TeX G. P. Math & \setmathfont{TeX Gyre Pagella Math}$\Re(i)\mscrR(i) \mscrF$&$\mbffrakR(i)\mbfscrR(i)\mbfscrF$&$\enlarge{\Re}(i)\enlarge{\mscrR}(i) \enlarge{\mscrF}$\\\bottomrule
    \end{tabular} 
\end{document}

enter image description here