对于我的论文标题,我想使用 Avant Garde (pag) 字体,字体形状紧凑,字体粗体。我记得几年前做过这件事,但那时的文档在我的系统上无法再编译,可能是因为缺少文件或软件包。
梅威瑟:
\documentclass{article}
% None of these seems to have any effect...
\usepackage[T1]{fontenc}
\fontencoding{T1}
\begin{document}
This should be the default serif font.
{\sffamily This should be the default sans-serif font.}
{\fontencoding{T1}\fontfamily{pag}\selectfont This should be Avant Garde.}
{\fontencoding{T1}\fontfamily{pag}\fontseries{b}\selectfont This should be Avant Garde bold.}
{\fontencoding{T1}\fontfamily{pag}\fontseries{c}\selectfont This should be Avant Garde condensed.}
{\fontencoding{T1}\fontfamily{pag}\fontseries{bc}\selectfont This should be Avant Garde condensed and bold.}
\end{document}
正常的 Avant Garde 及其粗体形状均能正确显示。但对于最后两个,我收到以下警告:
字体形状“T1/pag/c/n”未定义(字体)改用“T1/pag/m/n”
字体形状“T1/pag/bc/n”未定义(字体)改用“T1/pag/m/n”
...它们只是以 Avant Garde 的正常方式显示。
对于论文,我没有使用 article 类,而是使用 scrbook,但由于 article 存在同样的问题,我将 MWE 简化为 scrbook。我正在使用 xelatex 进行编译,但 latex、pdflatex 和 lualatex 也失败了。
操作系统:Manjaro Linux(基于 Arch)
我需要安装 Avant Garde 浓缩系列吗?如果需要,如何安装、在哪里安装?