I am unable to install the Letter Gothic font. I downloaded the lettergothic.zip file from the ctan website. The readme file instructed me to copy some files to certain places, which I did. However, when I try to compile my document, I get the following error message: ulgothic.sty not found. I understand this because there was never any explicit .sty file that I downloaded. I am unable to find ulgothic.sty anywhere.
Asked
Active
Viewed 899 times
1 Answers
2
URW's LetterGothic can be installed using the getnonfreefonts scripts.
Download the scripts from here.
Follow the instructions to unzip the archive and install the script using
texlua.Use
sudo getnonfreefonts-systo install the fonts on your system.
Important: do NOT use getnonfreefonts. ONLY use getnonfreefonts-sys.
The installation provides both scripts. It is crucial to choose the -sys version in order to avoid later problems. For an explanation of this, see my question and answer on this topic.
Once the font is installed, you can load the ulgothic package. However, you must also switch to the T1 font encoding as the package neither supports the default encoding, OT1, nor activates the T1 encoding automatically.
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{ulgothic}
\begin{document}
\texttt{URW's Letter Gothic}
\end{document}
-
The command texlua install-getnonfreefonts is not able to create a new directory. I get the following error message: Julius:desktop julius$ texlua install-getnonfreefonts Detected System: x86_64-darwin Detected Installation: /usr/local/texlive/2015 mkdir /usr/local/texlive/2015/texmf-dist/scripts/getnonfreefonts ... [failed] Sorry, couldn't create directory /usr/local/texlive/2015/texmf-dist/scripts/getnonfreefonts Julius:desktop julius$ – Julius May 28 '16 at 10:07
-
-
Oops. My bad. Novice mistake. Sorry about that. :) I managed to install all the fonts. Thanks a lot. – Julius May 29 '16 at 05:18
-
No problem. My instructions here aren't very specific in part because it can depend on how you've set things up (and whether
sudoeven exists on your OS). – cfr May 29 '16 at 08:08

getnonfreefonts-systo install URW's LetterGothic. (You can install the other fonts available, too, if you wish, although you don't have to.) – cfr May 11 '16 at 21:33