如何在 Memoir 中将 Palatino 设置为字体?

如何在 Memoir 中将 Palatino 设置为字体?

首先,我不认为这是如何正确使用 palatino 字体(回忆录中)?,因为它看起来是一个非常特殊的用例。

在 中memoir,我想使用 Palatino 字体系列。它的文档为

字体系列名称是ppl

而且设置fontfamilymemoir看起来非常复杂。在1.2.1节中memman.pdf它显示如下:

\newcommand*{\memfontfamily}{<fontfamily>}

所以我这样提供它:

\newcommand*{\memfontfamily}{ppl}
\documentclass[a4paper,11pt,draft]{memoir}

但它不起作用并且默认字体系列仍然在 pdf 中生成。

我究竟做错了什么?

答案1

默认(旧)Palatino 包:

\documentclass[a4paper,11pt,draft]{memoir}
\usepackage[T1]{fontenc}
\usepackage{mathpazo}
\begin{document}

foo \textbf{bar} \textsf{baz} $y=\sqrt{x}$

\end{document}

或者使用新的 TeX Gyre Pagella(更好的选择),它默认使用 TeX Gyre Heros 来处理无衬线文本:

\documentclass[a4paper,11pt,draft]{memoir}
\usepackage[T1]{fontenc}
\usepackage{newpxtext,newpxmath}
\begin{document}

foo \textbf{bar} \textsf{baz} $y=\sqrt{x}$

\end{document}

相关内容