如何安装不属于 texlive 的 Latex 字体目录中的字体?在这个特定情况下,我想使用奥吉它是 emerald 包的一部分(虽然将来我也想使用其他字体。)
以下代码出现错误“未找到 emerald.sty”,因此我认为我只有 texlive 包而没有其他包。
我读过关于 getnonfreefonts 的文章,但是 Augie 字体说它是免费的,所以我不确定。
\documentclass[14pt,a4paper,article]{memoir} % for a short document
\usepackage{emerald}
\usepackage[T1]{fontenc}
\pagestyle{empty}
\newcommand{\attrib}[1]{%
\nopagebreak{\raggedleft\footnotesize #1\par}}
\begin{document}
\ECFAugie
\renewcommand{\poemtitlefont}{\centering}
\poemtitle{Poem}
\settowidth{\versewidth}{Width}
line1\\
line2\\
line3
\end{verse}
\attrib{}
\end{document}
谢谢。