如何使用 Johnston Sans 或等效替代品?

如何使用 Johnston Sans 或等效替代品?

我想使用約翰遜·桑斯字体。显然,其许可证受到严格控制

LaTeX 字体目录我没有找到任何免费的替代品。

是否有可能以任何方式让它在 {pdf,Xe,Lua}LaTeX 中工作?

答案1

fontspec使用您感兴趣的字体的最简单、最有效的方法是使用luatex(或xetex,尽管在这种情况下您会错过的可能性\directlua{...})。

以下是使用 P22 Underground Pro 的示例:

\documentclass[14pt]{beamer}
\usepackage{fontspec}
\setsansfont{P22 Underground Pro Book}[
  Numbers=OldStyle]
\newfontface\engraved{P22 Underground Engraved}
\linespread{1.104}
\begin{document}
\begin{frame}
  \frametitle{\engraved P22 Underground Pro}

  P22 Underground Pro supports Latin (with all characters needed for
  transliteration of Semitic languages), Greek (including polytonic
  Greek), and Cyrillic. There are arrows, circled numbers, and useful
  dingbats.

  \bigskip

  \addfontfeatures{StylisticSet={3,7}}
  I’m fond of the humanistic alternates (Q W g) and the diamond
  points (:).
\end{frame}
\end{document}

输出

我在评论中提到的这种字体的免费版本没有风格设置、上下文替代或其他特殊功能,所以简单的\setsansfont{Underground NF}\setsansfont{Railway}应该就可以了。

相关内容