我想在数学模式下写入复数的实部,我使用了命令\mathcal{R}(i)
。问题是它产生的 R 与大多数书中表示实部的 R 不同。一个原因是它很小,它不应该很小,因为它不是字母而是符号。使用我在\mathcal{F}
表示傅立叶变换时遇到了同样的问题。您使用什么命令,您认为哪个命令对这些操作最好、最漂亮?
答案1
请选择你喜欢的。如果你不能使用 Lua 或 XeLaTeX,请告诉我。
% 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}