如何在普通 LaTeX 中使用《纽约客》字体

如何在普通 LaTeX 中使用《纽约客》字体

如何使用 Allen R. Walden 的“纽约客”字体(请参阅字体空间) 在常规 LaTeX 中(而不是在 LuLaTeX 或 XeLaTeX 中)。

答案1

有两种方法可以做到这一点:

新学校

使用autoinstNEWYORKR.TTF它会创建使用 (pdf)LaTeX 字体所需的所有文件。您可以像这样调用它:

autoinst -encoding=T1      \
         -ts1              \
         -noupdmap         \
         -nooldstyle       \
         -noproportional   \
         -nosmallcaps      \
         -noswash          \
         -notitling        \
         -nosuperior       \
         -noinferiors      \
         -nofractions      \
         -noornaments      \
         -target=./Install \
         -verbose          \
         NEWYORKR.TTF

安装正确的话,可以得到以下效果:

\documentclass{article}
\usepackage{fonttable,textcomp}
\usepackage[T1]{fontenc}
\usepackage{NewYorker}

\begin{document}

\xfonttable{T1}{NewYorker-TLF}{m}{n}
\clearpage
\xfonttable{TS1}{NewYorker-TLF}{m}{n}

\end{document}

在此处输入图片描述

老套

从-file创建afm和文件并使用稍微复杂一些的文件。您必须编写如下文件:pfbttffontinstdrv

\input fontinst.sty
\needsfontinstversion{1.926}
\recordtransforms{fny-rec.tex}

\substitutesilent{bx}{m}
\substitutesilent{b}{m}

\transformfont{fnyr8r}{\reencodefont{8r}{\fromafm{NewYorker}}}

\installfonts
\installfamily{T1}{fny}{}
\installfont{fnyr8t}{fnyr8r,newlatin}{t1}{T1}{fny}{m}{n}{}
\endinstallfonts

\installfonts
\installfamily{TS1}{fny}{}
\installfont{fnyr8c}{fnyr8r,textcomp}{ts1}{TS1}{fny}{m}{n}{}
\endinstallfonts

\endrecordtransforms
\bye

以及map如下生成器文件:

\input finstmsc.sty
\resetstr{PSfontsuffix}{.pfb}
\adddriver{dvips}{fny.map}
\input fny-rec.tex
\donedrivers
\bye

然后你必须在和文件tex上运行:drvmap

for filename in *.pl; do pltotf $filename; done
for filename in *.vpl; do vptovf $filename; done

正确安装后,您将获得:

\documentclass{article}
\usepackage{fonttable,textcomp}
\usepackage[T1]{fontenc}

\renewcommand*{\rmdefault}{fny}
\renewcommand*{\familydefault}{\rmdefault}

\begin{document}
\xfonttable{T1}{fny}{m}{n}
\clearpage
\xfonttable{TS1}{fny}{m}{n}
\end{document}

在此处输入图片描述

接下来将教如何fontinst从名称与预期afm不符的字体中抓取书写字形fontinst

相关内容