Fonts & Character SetsFind "Real Names" for TeX fonts

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
Katy Mawhood
Posts: 1
Joined: Mon Oct 17, 2016 10:31 am

Find "Real Names" for TeX fonts

Post by Katy Mawhood »

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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Find "Real Names" for TeX fonts

Post by Stefan Kottwitz »

Hi Katy!

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
Aimee
Posts: 6
Joined: Fri Apr 10, 2015 7:10 am

Re: Find "Real Names" for TeX fonts

Post by Aimee »

Thanks Stefan Kottwitz! You guide in a good way as well.
Post Reply