我想要这个符号
我的短信
\documentclass{article}
\usepackage{mathrsfs} % for \mathscr{S}
\usepackage{amsmath, amsfonts, amssymb, textcomp}
\usepackage[T4, OT1]{fontenc}
\usepackage{newunicodechar}
\usepackage{unicode-math}
\begin{document}
\mathscr{S}
\end{document}
我明白了
我的底层排版引擎是XeLaTeX。
如何才能得到 Schwartz 空间的脚本式符号?
答案1
您可以加载另一种字体\mathscr
,例如 Asana Math。
\documentclass{article}
\usepackage{amsmath}
\usepackage{unicode-math}
\setmathfont{Latin Modern Math} % you need to reload the default
\setmathfont[range=\mathscr,Scale=MatchUppercase]{Asana Math}
\begin{document}
$\mathcal{S}\ne\mathscr{S}$
\end{document}