答案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}