如何在数学模式下更改字母“s”的字体?

如何在数学模式下更改字母“s”的字体?

我有一个包含字母“s”的公式。它显示为s。我想将此字体更改为像手写的“s”(仅限此公式)。请参阅图片以了解说明。

在此处输入图片描述

我的代码是这样的:

\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage[mathlf,footnotefigures,minionint,textlf]{MinionPro}
%\renewcommand{\rmdefault}{ptm}
%\usepackage[lite,subscriptcorrection,slantedGreek,nofontinfo]{mtpro2}

\begin{document}

My formula is \[f(s) = s^2+s+1.\]

But I would like the ``$s$'' to be like ...

\end{document}

附言:由于我没有包含“s”的图形,因此我在代码中使用了三个点。

答案1

您可以尝试以下方法之一可用的脚本字体。我真的不知道这是否是一个很好的解决方案。

\documentclass[12pt]{article}
\usepackage{graphicx}
%\usepackage[mathlf,footnotefigures,minionint,textlf]{MinionPro}
%\renewcommand{\rmdefault}{ptm}
%\usepackage[lite,subscriptcorrection,slantedGreek,nofontinfo]{mtpro2}
\usepackage{calligra}
\newcommand{\s}{\mbox{\calligra{s}}}

\usepackage{wedn}
\newcommand{\salt}{\mbox{\wedn{s}}}

\begin{document}

My formula is \[f(\salt) = \s^2+\s+1.\]

But I would like the ``$s$'' to be like $\s$ or like $\salt$

\end{document}

在此处输入图片描述

相关内容