I would like to use emerald fonts in my Beamer presentation (http://www.tug.dk/FontCatalogue/augie/)
As far I have understood, I have to download the emerald folder and to move the fonts in some other folder related to latex. In particular, it seems that I have to copy the directories "fonts" and "tex" to "~/Library/texmf/"
It works on my Mac OSX with MacTex installed as well. First, download the emerald zip file from ctan and unzip it. Second, copy the two dirs: fonts and tex to ~/Library/texmf/. The I should some staff as updmap and texhash.
First of all, I would like if the above mention procedure is correct for linux\ubuntu. Secondly, I would like how to locate the folder texmf in ubuntu. Lastly, Do you have other suggestion to install emerald.
This is the solution that I have found so fare:
\documentclass[]{beamer}
\usepackage{tikz}
\usepackage[T1]{fontenc}
\DeclareRobustCommand{\augiefamily}{%
\fontfamily{augie}\fontseries{m}\fontshape{n}\selectfont}
\DeclareTextFontCommand{\textaugie}{\augiefamily}
\augiefamily
\begin{document}
\begin{frame}{\augiefamily Example}
hello
\end{frame}
\end{document}
As you can notice, I skip "emerald.sty". Unfortunately , I have to add "\augiefamily" everywhere.
updmap [ERROR]: The following map file(s) couldn't be found: updmap [ERROR]: emerald.map (in /etc/texmf/web2c/updmap.cfg) updmap [ERROR]: Did you run mktexlsr?
I think that I have to do something about map. What do you think?
– diedro Apr 16 '21 at 08:26sudo updmap-sys --enable-map=emerald.map. You might need to give the absolute path, which you should be able to find (after runningtexhash) withkpsewhich emerald.map. – Davislor Apr 16 '21 at 16:06sudo updmap-sys --enable Map=emerald.map. You might need the absolute path fromkpsewhich emerald.map. – Davislor Apr 16 '21 at 22:11find /usr/local/ -name "emerald.map" -printfind the absolute path to the file? – Davislor Apr 20 '21 at 00:43/usr/localshould work. (I would never put TeX packages in your user library unless you can’t avoid it, e.g. you are on a shared computer with no root access. TeX Live has a serious bug where user map files hide updates to the system maps, rather than adding to them.) – Davislor Apr 20 '21 at 15:47However, I have to use "\augiefamily" in each frame
– diedro Apr 22 '21 at 07:56beamertheme. Using theprofessionalfontsoption and theseriffont theme should work. – Davislor Apr 22 '21 at 13:21