Adobe Garamond Pro (otf) 和 mathdesign

Adobe Garamond Pro (otf) 和 mathdesign

我想使用 Adob​​e Garamond Pro (otf) 字体mathdesign。该包的自述文件显示:

还支持以下商业系列:

  • mdpga 系列对应于 Adob​​e Garamond Pro 文本字体
  • mdpus 系列对应于 Adob​​e Utopia Std 文本字体
  • mdici 系列对应于 ITC Charter 文本字体

<...>

您必须从您最喜欢的经销商处获取商业文本字体。只有 opentype 版本支持这些字体。您将需要以下文件:

  • 对于 Adob​​e Garamond Pro

    AGaramondPro-常规.otf

    AGaramondPro-Italic.otf

    AGaramondPro-Semibold.otf

    AGaramondPro-SemiboldItalic.otf

<...>

  Put them in your TEXMF tree in the directory

${TEXMF}/fonts/opentype/<supplier>/<fontname>

(供应商是 garamond 或 itc。字体名称基本上就是您想要的。)您不需要重命名文件。“专家”选项毫无用处,因为此字体提供小写字母和旧式数字!

我将字体放在目录中.../fonts/opentype/garamond/Adobe Garamond Pro/,但是当我在以下代码上运行 XeLaTeX 时,出现此警告并且没有 pdf:

LaTeX Font Info:    Try loading font information for EU1+mdpgd on input line 185.
LaTeX Font Info:    No file EU1mdpgd.fd. on input line 185.

LaTeX Font Warning: Font shape `EU1/mdpgd/m/n' undefined
(Font)              using `EU1/lmr/m/n' instead on input line 185.

梅威瑟:

\documentclass{article}
\usepackage{fontspec}
\setmainfont[Ligatures=TeX]{Adobe Garamond Pro}
\usepackage[adobe-garamond]{mathdesign}% thanks to Ulrike Fisher
\usepackage{polyglossia}
\setmainlanguage{english}
\usepackage{lipsum}

\begin{document}
\lipsum[1]
\[f(x)=\int g(x)\,dx\]
\end{document}

答案1

由于未知原因,CTAN 中的文档已过期。我已上传最新版本。

使用 Adob​​e Garamond Pro 与 pdfLaTeX 没有问题。

\documentclass{article}
\usepackage[Adobe Garamond]{mathdesign}

\begin{document}
    This is a test: $x+y=2$
\end{document}

但目前,mathdesign 不提供 Unicode 字体。

答案2

这对我有用:

\documentclass{article}
\usepackage[garamond]{mathdesign}
\usepackage[no-math]{fontspec}
\setmainfont[Ligatures=TeX]{Adobe Garamond Pro}
\usepackage{polyglossia}
\setmainlanguage{english}
\usepackage{lipsum}

\begin{document}
\lipsum[1]
\[f(x)=\int g(x)\,dx\]
\end{document}

本例中列出的字体:

voss@shania:~> pdffonts Test/demo.pdf
name                                 type           encoding    emb sub uni object ID
------------------------------------ ------------- ------------ --- --- --- ---------
VAQEVQ+AGaramondPro-Regular-Identity-H CID Type 0C  Identity-H  yes yes yes 5  0
MEBUGK+GaramondNo8-Ita               Type 1C        WinAnsi     yes yes no  6  0
TRHMIW+MathDesign-GM-Regular-OT1-10  Type 1C        Builtin     yes yes no  7  0
VNMJHG+MathDesign-GM-Regular-Extension-10 Type 1C   Builtin     yes yes yes 8  0

我已经将 OTF-Garamond 保存在$HOME/.fonts/GaramondPro/

相关内容