书法 E(不是 \mathcal)

书法 E(不是 \mathcal)

我使用 LaTeX 写统计笔记。讲师使用特殊的 E 作为样本空间,但我在 LaTeX 中找不到它。那么还有其他书法数学字体样式\mathcal\mathscr

该符号的手写形式如下:

符号图像

答案1

尝试做:

\documentclass[12pt]{article}
\usepackage{mathrsfs}
\pagestyle{empty}
\DeclareMathAlphabet{\mathpzc}{OT1}{pzc}{m}{it}
\begin{document}
  The sample space is $\mathpzc{E}$.
\end{document}

综合 LaTeX 符号,第 68 页,查看可用数学字体的完整列表以及如何排版它们。

您还可以查看(La)TeX 中的数学全面回顾,第 95 页起。

还有LaTeX 字体目录 - 书法和手写字体

答案2

您可以尝试 rsfs:代码

\documentclass[12pt]{article}
\usepackage{mathrsfs}
\pagestyle{empty}
\begin{document}

The sample space is $\mathscr E$.
\end{document}

生产

在此处输入图片描述

相关内容