Hi, I work for a publisher and we frequently receive author supplied content using TeX font naming conventions. Sometimes it is easy to find the original fonts, but not always.
Is there a central location that I can search by the TeX font name prefix? E.g. "TT24D" for "TT24DAo000"?
Thanks in advance.
Fonts & Character Sets ⇒ Find "Real Names" for TeX fonts
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Find "Real Names" for TeX fonts
Hi Katy!
Not so easy, since there's not a maintained list.
General list of font files - run at the command prompt:
On a Unix / Linux system, you can check the list of installed fonts with names by
(suggestion was by Will Robertson of the LaTeX project team) or see the system fonts with
Otherwise I would google, it may bring a result, or search on CTAN for file names.
Stefan
Not so easy, since there's not a maintained list.
General list of font files - run at the command prompt:
updmap-sys --listmaps
On a Unix / Linux system, you can check the list of installed fonts with names by
find /usr/local/texlive/2016/texmf-dist/tex/latex/ -name '*.fd' | xargs grep '\\DeclareFontFamily' | sed 's#.*\\DeclareFontFamily{\([a-zA-Z0-9]*\)}{\([a-zA-Z0-9]*\)}.*# \1 \2#'|less
(suggestion was by Will Robertson of the LaTeX project team) or see the system fonts with
fc-list
Otherwise I would google, it may bring a result, or search on CTAN for file names.
Stefan
LaTeX.org admin
Re: Find "Real Names" for TeX fonts
Thanks Stefan Kottwitz! You guide in a good way as well.