是否有适合这种花体字母的 tex 字体集?

是否有适合这种花体字母的 tex 字体集?

符号来自于此邮政

在此处输入图片描述

是否有适合这种花体字母的 tex 字体集?

答案1

该字体是 Euler Virtual Fonts 中的书法字体(eulervm)。如果你加载该eulervm包,文本看起来与屏幕截图非常相似:

在此处输入图片描述

但是链接 PDF 中的下标n看起来不像欧拉的,而是 Computer Modern。您只能使用\mathcal以下方式加载欧拉字母表\usepackage[cal=euler]{mathalpha}(请注意下标的区别n):

在此处输入图片描述

代码:

\documentclass{article}
\usepackage[margin=4cm]{geometry}
% \usepackage{eulervm}
\usepackage[cal=euler]{mathalpha}
\begin{document}
\pagestyle{empty}
\begin{description}
  \item [Hypothesis Space] Term used in the machine learning literature.
    It denotes the space $\mathcal{F}_n$ of classifiers, or the space
    $\mathcal{G}_n$ of conditional probabilities, from which the learning
    algorithm selects a hypothesis.
\end{description}
\end{document}

相关内容