Erewhon 字体和 mathfrak 符号

Erewhon 字体和 mathfrak 符号

我正在尝试erewhon字体可以工作,但我mathfrak在使用它时会错过一些特定的字体。例如,\mathfrak{h}只显示常规的 h,而 while\mathfrak{g}可以工作。以下示例是我的文档:

\documentclass{article}
\usepackage[proportional,scaled=1.064]{erewhon}
\usepackage[erewhon,vvarbb,bigdelims]{newtxmath}
\usepackage[T1]{fontenc}
\renewcommand*\oldstylenums[1]{\textosf{#1}}

\begin{document}

\(\mathfrak{g}\) \(\mathfrak{h}\)

\end{document}

传递给和的选项erewhonnextxmath代码片段中的一样这里

我使用 LuaTeX 将所有字体编译为 Erewhon,因为 PDFTeX 显然在这方面存在问题。在这种情况下,所有 AMS 包(amsfontsamsmathamssymb)实际上都不起作用。那么,我遗漏了什么?

答案1

LuaLaTeX 和 XeLaTeX 的替代方案是使用 OpenTypeErewhon-Math.otf字体。建议通过包来加载此字体fourier-otf,该包设置了一些合适的选项。

\documentclass{article}
\usepackage{fourier-otf}

\begin{document}

\(\mathfrak{g}\) \(\mathfrak{h}\)

\end{document}

结果:

在此处输入图片描述

答案2

更新答案

字体中的错误已在 1.121 版本中修复。

\documentclass{article}
\usepackage[proportional,scaled=1.064]{erewhon}
\usepackage[erewhon,vvarbb,bigdelims]{newtxmath}
\renewcommand*\oldstylenums[1]{\textosf{#1}}

\begin{document}

\(\mathfrak{g}+\mathfrak{h}\)

\end{document}

在此处输入图片描述

原始答案

这是字体中的一个错误zutmia,LaTeX 应该从中获取 Fraktur 数学字母。

这是字体表中的相关部分

在此处输入图片描述

您会发现“h”完全不合适。

如何修复此问题?您可以从其他字体中取出 Fraktur 字母。以下是使用 AMS 字体的方法。

\documentclass{article}
\usepackage[proportional,scaled=1.064]{erewhon}
\usepackage[erewhon,vvarbb,bigdelims]{newtxmath}
\renewcommand*\oldstylenums[1]{\textosf{#1}}

\DeclareMathAlphabet{\mathfrak}{U}{euf}{m}{n}
\SetMathAlphabet{\mathfrak}{bold}{U}{euf}{b}{n}

\begin{document}

\(\mathfrak{g}+\mathfrak{h}\)

\end{document}

在此处输入图片描述

答案3

另一种解决方案。

\documentclass{article}
\usepackage[proportional,scaled=1.064]{erewhon}
\usepackage[no-math]{fontspec} % For font loading
\usepackage{unicode-math} % For math font setup
\setmainfont{Erewhon}[
  Extension=.otf,
  UprightFont=*-Regular,
  ItalicFont=*-Italic,
  BoldFont=*-Bold,
  BoldItalicFont=*-BoldItalic,
]
\setmathfont{Erewhon-Math.otf}
\setmathfont[range={\mathfrak}]{latinmodern-math.otf} % Fallback fraktur font
\usepackage{amsmath} % For math environments and commands

\begin{document}

$\mathfrak{g}$ $\mathfrak{h}$

\end{document}

在此处输入图片描述

相关内容