How do I install the fonts from the Latex Font Catalogue that are not part of texlive? In this particular instance I would like to use Augie which is part of the emerald package (though in future I want to use other fonts too.)
The following code gives the error "emerald.sty not found" so I assume I only have the texlive packages and not the others.
I have read about getnonfreefonts but this Augie font says it is free so I'm not sure.
\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}
Thankyou.
augieis part of TeX Live. – cfr Feb 22 '15 at 14:16emeraldpackage is not part of TL, butaugieis. The font catalogue is wrong.emeraldis not supported bygetnonfreefonts(-sys). You can install it yourself or just write\newcommand\augie{\fontencoding{T1}\fontfamily{augie}\fontseries{m}\fontshape{n}\selectfont}in your preamble. – cfr Feb 22 '15 at 14:29augieor they may (for some reason) have decided not to include it at all. – cfr Feb 22 '15 at 21:54augie. It is part of TeX Live, after all. – cfr Feb 23 '15 at 00:32