我们如何在 latex overleaf 中使用小写的 `\mathcal` 或 `\mathscr`?

我们如何在 latex overleaf 中使用小写的 `\mathcal` 或 `\mathscr`?

\usepackage{bickham}试过乳胶背面但我得到:

LaTeX Error: File `bickham.sty' not found.

我们如何在 latex overleaf 中获得小写字母\mathcal?例如:

\documentclass[reqno]{amsart}
\usepackage{bickham} 

\begin{document}

    \mathcal{r}

\end{document}

我们怎样才能得到草书 r 而不是错误符号?

答案1

例如,您可以使用 stix2

在此处输入图片描述

\documentclass[reqno]{amsart}
\usepackage{stix2} 

\begin{document}

    HERE: $\mathscr{rstuvw}$

\end{document}

答案2

假设您的系统上安装了 Bickham 字体(它是一种商业字体,我的系统上无法访问它),则以下代码应该可以工作:

\documentclass[reqno]{amsart}
\usepackage[scr=bickham]{mathalfa}

\begin{document}
$\mathscr{abc}$
\end{document}

相关内容