使用 \mathscr 的小写粗体书法字母

使用 \mathscr 的小写粗体书法字母

在页面上https://calligraphycalligraphy.blogspot.com/2020/11/50-calligraphy-font-latex.html?m=1,我找到了一种小写书法字体样式,我想在我的 LaTeX 文档中实现它。我附上了所需字符的图像:

在此处输入图片描述

你能帮我用 LaTeX 写出这样的字母吗?我对普通版和粗体版都很感兴趣。

更新:

其中一位用户提请我注意以下解决方案(如何使用“unicode-math”来提供书法数字?):

\documentclass{article}
\usepackage[math-style=TeX, bold-style=TeX]{unicode-math}
\setmathfont{XITS Math}
\setmathfont[range={\mathscr,\mathbfscr,\mathcal,\mathbfcal}]{Cambria Math}
\def\Lcs#1{\texttt{\textbackslash#1}}

\begin{document}\noindent
\Lcs{mathscr}: $\mathscr{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
\Lcs{mathscr}: $\mathscr{abcdefghijklmnopqrstuvwxyz}$\\
\Lcs{mathbfscr}: $\mathbfscr{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
\Lcs{mathbfscr}: $\mathbfscr{abcdefghijklmnopqrstuvwxyz}$

\noindent
\Lcs{mathcal}: $\mathcal{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
\Lcs{mathcal}: $\mathcal{abcdefghijklmnopqrstuvwxyz}$\\
\Lcs{mathbfcal}: $\mathbfcal{ABCDEFGHIJKLMNOPQRSTUVWXYZ}$\\
\Lcs{mathbfcal}: $\mathbfcal{abcdefghijklmnopqrstuvwxyz}$

\end{document}

尽管如此,该代码无法在 Overleaf 下编译。

相关内容